{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/1X8CMnzEBb4aUxmANWz5/Q2qpDdNWAGdhnwHyTvyU/butyjAj0v.js", "ssg:https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/yANN3U3yzAmmKZ4zTu90/k8A7PQGz0zplfigJY29J/bOTWouTXz.js", "ssg:https://framerusercontent.com/modules/aPbK7FMNLMnn7W0ztPa1/TWoQ27w8ZO25J6xtxmp5/biqC9ri1i-0.js", "ssg:https://framerusercontent.com/modules/aPbK7FMNLMnn7W0ztPa1/TWoQ27w8ZO25J6xtxmp5/biqC9ri1i.js"],
  "sourcesContent": ["// Generated by Framer (552ec80)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-01pAS .framer-styles-preset-12o7zj0:not(.rich-text-wrapper), .framer-01pAS .framer-styles-preset-12o7zj0.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, #1a3e5e) /* {\"name\":\"AGEN Dark Blue\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-f0dbfc1f-5549-46ee-828b-d5c18913e12d, #298fe3); --framer-link-text-decoration: none; }'];export const className=\"framer-01pAS\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,motion}from\"framer\";import{containerStyles,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useMemo}from\"react\";const coordinatesRegex=/^((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?),\\s*((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?)$/;/**\n * GOOGLE MAPS\n *\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function GoogleMaps({coordinates,zoom,style,...props}){const borderRadius=useRadius(props);const[latitude1,longitude1]=useMemo(()=>{var ref;const[,latitude,longitude]=(ref=coordinates.match(coordinatesRegex))!==null&&ref!==void 0?ref:[null,\"\",\"\",];return[latitude,longitude];},[coordinates]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,overflow:\"hidden\",borderRadius},...props,children:/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\",border:0},src:`https://maps.google.com/maps?q=${latitude1},${longitude1}&z=${zoom}&output=embed`})}));};addPropertyControls(GoogleMaps,{coordinates:{type:ControlType.String,title:\"Coordinates\",placeholder:\"52.37588, 4.891295\",defaultValue:\"52.37588, 4.891295\",description:\"GPS coordinates can be found directly in [Google Maps](https://maps.google.com).\"},zoom:{type:ControlType.Number,step:1,min:0,max:25,title:\"Zoom\",defaultValue:15},...borderRadiusControl});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"GoogleMaps\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GoogleMaps.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import*as localizedValues from\"./bOTWouTXz-0.js\";const MaterialFonts=getFonts(Material);const GoogleMapsFonts=getFonts(GoogleMaps);const ClipboardFonts=getFonts(Clipboard);const MotionDivWithFX=withFX(motion.div);const enabledGestures={l125QJ2m6:{hover:true},pMeAVdWq9:{hover:true},vE9PuYn1C:{hover:true}};const cycleOrder=[\"l125QJ2m6\",\"pMeAVdWq9\",\"zkDNDLjjz\",\"SjdSoqj4D\",\"exxY20Poq\",\"vE9PuYn1C\",\"ABgYMIRT1\",\"QgBZZLH0X\"];const serializationHash=\"framer-Kw2Iq\";const variantClassNames={ABgYMIRT1:\"framer-v-106868z\",exxY20Poq:\"framer-v-1tz4npt\",l125QJ2m6:\"framer-v-1jr53qv\",pMeAVdWq9:\"framer-v-1ujcr9o\",QgBZZLH0X:\"framer-v-apwrim\",SjdSoqj4D:\"framer-v-bcpfhe\",vE9PuYn1C:\"framer-v-10vekd5\",zkDNDLjjz:\"framer-v-1k0eie1\"};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={YR07XygfI: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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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={\"mail-mobil-tap\":\"exxY20Poq\",\"mail-mobil\":\"zkDNDLjjz\",\"maps mobil - tap\":\"QgBZZLH0X\",\"maps mobil\":\"ABgYMIRT1\",\"phone-mobil\":\"SjdSoqj4D\",Mail:\"l125QJ2m6\",Maps:\"vE9PuYn1C\",Phone:\"pMeAVdWq9\"};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:\"l125QJ2m6\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"l125QJ2m6\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1waw77l=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"exxY20Poq\");});const onTap1hm9pas=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"QgBZZLH0X\");});const onMouseEnter1gx595p=overlay=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"vE9PuYn1C-hover\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"l125QJ2m6-hover\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"pMeAVdWq9-hover\")return true;return false;};const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed3=()=>{if(baseVariant===\"SjdSoqj4D\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"exxY20Poq\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"QgBZZLH0X\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jr53qv\",className,classNames),\"data-framer-name\":\"Mail\",layoutDependency:layoutDependency,layoutId:\"l125QJ2m6\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"l125QJ2m6-hover\":{\"data-framer-name\":undefined},\"pMeAVdWq9-hover\":{\"data-framer-name\":undefined},\"vE9PuYn1C-hover\":{\"data-framer-name\":undefined},ABgYMIRT1:{\"data-framer-name\":\"maps mobil\",\"data-highlight\":true,onTap:onTap1hm9pas},exxY20Poq:{\"data-framer-name\":\"mail-mobil-tap\"},pMeAVdWq9:{\"data-framer-name\":\"Phone\"},QgBZZLH0X:{\"data-framer-name\":\"maps mobil - tap\"},SjdSoqj4D:{\"data-framer-name\":\"phone-mobil\"},vE9PuYn1C:{\"data-framer-name\":\"Maps\"},zkDNDLjjz:{\"data-framer-name\":\"mail-mobil\",\"data-highlight\":true,onTap:onTap1waw77l}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-26zowy\",layoutDependency:layoutDependency,layoutId:\"A9b6PHCZE\",style:{backgroundColor:\"rgba(255, 255, 255, 0.2)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,opacity:1},variants:{\"l125QJ2m6-hover\":{opacity:.5},\"pMeAVdWq9-hover\":{opacity:.5},\"vE9PuYn1C-hover\":{opacity:.5},exxY20Poq:{opacity:.5},QgBZZLH0X:{opacity:.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rb2ye3-container\",layoutDependency:layoutDependency,layoutId:\"hH8x1P8ii-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"mail\",iconSelection:\"Mail\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"hH8x1P8ii\",layoutId:\"hH8x1P8ii\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({pMeAVdWq9:{iconSearch:\"phone\",selectByList:false},SjdSoqj4D:{iconSearch:\"phone\",selectByList:false}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b4tawf-container\",layoutDependency:layoutDependency,layoutId:\"KVbH4DrUt-container\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,coordinates:\"40.21101522319799, 28.92302263558391\",height:\"100%\",id:\"KVbH4DrUt\",isMixedBorderRadius:false,layoutId:\"KVbH4DrUt\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,width:\"100%\",zoom:15})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"satis@agentedarik.com\"})}),className:\"framer-m56fd6\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"rpI2VPFLn\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{\"l125QJ2m6-hover\":{opacity:.5},\"pMeAVdWq9-hover\":{opacity:.5},\"vE9PuYn1C-hover\":{opacity:.5},exxY20Poq:{opacity:.5},QgBZZLH0X:{opacity:.5}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ABgYMIRT1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Adres: Alaaddinbey, 616. Sk. SAM3 Plaza D:1B/D, 16120 Nil\\xfcfer/Bursa\"})}),fonts:[\"GF;Work Sans-regular\"]},pMeAVdWq9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Telefon : 0(535) 864 92 21\"})}),fonts:[\"GF;Work Sans-regular\"]},QgBZZLH0X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Adres: Alaaddinbey, 616. Sk. SAM3 Plaza D:1B/D, 16120 Nil\\xfcfer/Bursa\"})}),fonts:[\"GF;Work Sans-regular\"]},SjdSoqj4D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Telefon : 0(535) 864 92 21\"})}),fonts:[\"GF;Work Sans-regular\"]},vE9PuYn1C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Adres: Alaaddinbey, 616. Sk. SAM3 Plaza D:1B/D, 16120 Nil\\xfcfer/Bursa\"})}),fonts:[\"GF;Work Sans-regular\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vqagmz\",layoutDependency:layoutDependency,layoutId:\"oMoEKPQTS\",transformTemplate:transformTemplate1,children:[isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"mailto:satis@agentedarik.com\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-uj875p framer-h7fkuv\",layoutDependency:layoutDependency,layoutId:\"d4Jx_xJJr\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171)))\"},children:\"Mail at\"})}),className:\"framer-kbdp8g\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"kvxiyAimC\",style:{\"--extracted-r6o4lv\":\"var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171))\"},verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ne3n0-container\",layoutDependency:layoutDependency,layoutId:\"OkOuDylb2-container\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,color:\"rgb(255, 255, 255)\",content:\"satis@agentedarik.com\",fill:\"var(--token-f0dbfc1f-5549-46ee-828b-d5c18913e12d, rgb(41, 143, 227))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"var(--token-f0dbfc1f-5549-46ee-828b-d5c18913e12d, rgb(41, 143, 227))\",scale:1.1,transition:{damping:30,stiffness:400,type:\"spring\"}},id:\"OkOuDylb2\",isMixedBorderRadius:false,label:\"Kopyala\",layoutId:\"OkOuDylb2\",padding:8,paddingBottom:8,paddingLeft:16,paddingPerSide:true,paddingRight:16,paddingTop:8,topLeftRadius:14,topRightRadius:14,width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1buk5a7\",layoutDependency:layoutDependency,layoutId:\"vOtglJU4J\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(Link,{href:\"callto:905358649221\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-x6kuon framer-h7fkuv\",layoutDependency:layoutDependency,layoutId:\"dNZaW4I8P\",style:{backgroundColor:\"var(--token-f0dbfc1f-5549-46ee-828b-d5c18913e12d, rgb(41, 143, 227))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Ara\"})}),className:\"framer-1v2uo3i\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"GWKWvT4pQ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yenmxw\",\"data-highlight\":true,id:`${layoutId}-yenmxw`,layoutDependency:layoutDependency,layoutId:\"TG6lAJ7xi\",onMouseEnter:onMouseEnter1gx595p(overlay),ref:ref2,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171)))\"},children:\"QR Kod G\\xf6ster\"})}),className:\"framer-b28wov\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"RsdZnFL34\",style:{\"--extracted-r6o4lv\":\"var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-yenmxw`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,...addPropertyOverrides({\"pMeAVdWq9-hover\":{offsetY:-10,placement:\"top\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-ducqt\",exit:animation1,initial:animation3,layoutDependency:layoutDependency,layoutId:\"x82985kAk\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:[isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:809.6,intrinsicWidth:809.6,pixelHeight:1012,pixelWidth:1012,src:\"https://framerusercontent.com/images/lk1yWbTtFgPFzQScRyCqonAWQis.png\",srcSet:\"https://framerusercontent.com/images/lk1yWbTtFgPFzQScRyCqonAWQis.png?scale-down-to=512 512w,https://framerusercontent.com/images/lk1yWbTtFgPFzQScRyCqonAWQis.png 1012w\"},className:\"framer-jvvk0g\",\"data-framer-name\":\"Untitled_1_5_\",layoutDependency:layoutDependency,layoutId:\"CVfhKPUQt\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"pMeAVdWq9-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:809.6,intrinsicWidth:809.6,pixelHeight:1012,pixelWidth:1012,sizes:\"116px\",src:\"https://framerusercontent.com/images/lk1yWbTtFgPFzQScRyCqonAWQis.png\",srcSet:\"https://framerusercontent.com/images/lk1yWbTtFgPFzQScRyCqonAWQis.png?scale-down-to=512 512w,https://framerusercontent.com/images/lk1yWbTtFgPFzQScRyCqonAWQis.png 1012w\"},transformTemplate:undefined}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\",\"--framer-letter-spacing\":\"0em\",\"--framer-line-height\":\"1.2em\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})}),className:\"framer-1mpgqgp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MX5iCi1Em\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"pMeAVdWq9-hover\":{\"--extracted-r6o4lv\":\"var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"pMeAVdWq9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171)))\"},children:\"Bu kodu telefonunuzun kameras\u0131na g\\xf6steriniz.\"})})}},baseVariant,gestureVariant)})]})})})]})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:\"callto:905358649221\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1e0ryhq framer-h7fkuv\",layoutDependency:layoutDependency,layoutId:\"v8BiDfSFh\"})}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16gmt5k\",layoutDependency:layoutDependency,layoutId:\"QEKohDp3Y\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(Link,{href:\"mailto:satis@agentedarik.com\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9n2ms3 framer-h7fkuv\",layoutDependency:layoutDependency,layoutId:\"AVbLxqnVL\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171)))\"},children:\"Mail at\"})}),className:\"framer-vk9bex\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"mWzFD55OT\",style:{\"--extracted-r6o4lv\":\"var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171))\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eou1yp-container\",layoutDependency:layoutDependency,layoutId:\"ZF6x4R1YO-container\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,color:\"rgb(255, 255, 255)\",content:\"satis@agentedarik.com\",fill:\"var(--token-f0dbfc1f-5549-46ee-828b-d5c18913e12d, rgb(41, 143, 227))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"var(--token-f0dbfc1f-5549-46ee-828b-d5c18913e12d, rgb(41, 143, 227))\",scale:1.1,transition:{damping:30,stiffness:400,type:\"spring\"}},id:\"ZF6x4R1YO\",isMixedBorderRadius:false,label:\"Kopyala\",layoutId:\"ZF6x4R1YO\",padding:8,paddingBottom:8,paddingLeft:16,paddingPerSide:true,paddingRight:16,paddingTop:8,topLeftRadius:14,topRightRadius:14,width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rud3mw\",layoutDependency:layoutDependency,layoutId:\"plFl9rnoL\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.google.com/maps?client=opera&oe=UTF-8&um=1&ie=UTF-8&fb=1&gl=tr&sa=X&geocode=KRNCbTo0EcoUMR1m7U7lD813&daddr=Alaaddinbey,+616.+Sk.+SAM3+Plaza+D:1B/D,+16120+Nil\\xfcfer/Bursa\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r6xumy framer-h7fkuv\",layoutDependency:layoutDependency,layoutId:\"SMe0n9tNu\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171)))\"},children:\"Google Maps'i a\\xe7 >\"})}),className:\"framer-1hj6uvv\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"aFZm449tz\",style:{\"--extracted-r6o4lv\":\"var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171))\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fsa9im\",layoutDependency:layoutDependency,layoutId:\"ukoXpkoWi\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.google.com/maps?client=opera&oe=UTF-8&um=1&ie=UTF-8&fb=1&gl=tr&sa=X&geocode=KRNCbTo0EcoUMR1m7U7lD813&daddr=Alaaddinbey,+616.+Sk.+SAM3+Plaza+D:1B/D,+16120+Nil\\xfcfer/Bursa\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1m09imq framer-h7fkuv\",layoutDependency:layoutDependency,layoutId:\"FTVeh0eI8\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171)))\"},children:\"Google Maps'i a\\xe7 >\"})}),className:\"framer-1if8syp\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"jFfDXPr1x\",style:{\"--extracted-r6o4lv\":\"var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171))\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Kw2Iq.framer-h7fkuv, .framer-Kw2Iq .framer-h7fkuv { display: block; }\",\".framer-Kw2Iq.framer-1jr53qv { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Kw2Iq .framer-26zowy { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; min-height: 39px; overflow: visible; padding: 10px; position: relative; width: min-content; }\",\".framer-Kw2Iq .framer-rb2ye3-container { flex: none; height: 19px; position: relative; width: 19px; }\",\".framer-Kw2Iq .framer-1b4tawf-container { bottom: 63px; flex: none; height: 203px; left: 20px; position: absolute; right: 20px; z-index: 1; }\",\".framer-Kw2Iq .framer-m56fd6 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Kw2Iq .framer-vqagmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 50%; min-height: 33px; min-width: 146px; overflow: visible; padding: 0px; position: absolute; top: 49%; width: min-content; z-index: 1; }\",\".framer-Kw2Iq .framer-uj875p, .framer-Kw2Iq .framer-x6kuon, .framer-Kw2Iq .framer-9n2ms3, .framer-Kw2Iq .framer-r6xumy, .framer-Kw2Iq .framer-1m09imq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: auto; z-index: 1; }\",\".framer-Kw2Iq .framer-kbdp8g, .framer-Kw2Iq .framer-1v2uo3i, .framer-Kw2Iq .framer-b28wov, .framer-Kw2Iq .framer-vk9bex, .framer-Kw2Iq .framer-1hj6uvv, .framer-Kw2Iq .framer-1if8syp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Kw2Iq .framer-14ne3n0-container, .framer-Kw2Iq .framer-eou1yp-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-Kw2Iq .framer-1buk5a7, .framer-Kw2Iq .framer-16gmt5k, .framer-Kw2Iq .framer-rud3mw, .framer-Kw2Iq .framer-fsa9im { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 49%; width: min-content; z-index: 1; }\",\".framer-Kw2Iq .framer-yenmxw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: auto; z-index: 1; }\",\".framer-Kw2Iq .framer-ducqt { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Kw2Iq .framer-jvvk0g { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 810px); left: 71%; overflow: visible; position: absolute; top: 79%; width: 810px; }\",\".framer-Kw2Iq .framer-1mpgqgp { flex: none; height: auto; left: 76px; position: absolute; top: 21px; white-space: pre; width: auto; }\",\".framer-Kw2Iq .framer-1e0ryhq { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; text-decoration: none; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Kw2Iq.framer-1jr53qv, .framer-Kw2Iq .framer-26zowy, .framer-Kw2Iq .framer-vqagmz, .framer-Kw2Iq .framer-uj875p, .framer-Kw2Iq .framer-1buk5a7, .framer-Kw2Iq .framer-x6kuon, .framer-Kw2Iq .framer-yenmxw, .framer-Kw2Iq .framer-16gmt5k, .framer-Kw2Iq .framer-9n2ms3, .framer-Kw2Iq .framer-rud3mw, .framer-Kw2Iq .framer-r6xumy, .framer-Kw2Iq .framer-fsa9im, .framer-Kw2Iq .framer-1m09imq { gap: 0px; } .framer-Kw2Iq.framer-1jr53qv > *, .framer-Kw2Iq .framer-26zowy > *, .framer-Kw2Iq .framer-uj875p > *, .framer-Kw2Iq .framer-x6kuon > *, .framer-Kw2Iq .framer-yenmxw > *, .framer-Kw2Iq .framer-9n2ms3 > *, .framer-Kw2Iq .framer-r6xumy > *, .framer-Kw2Iq .framer-1m09imq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Kw2Iq.framer-1jr53qv > :first-child, .framer-Kw2Iq .framer-26zowy > :first-child, .framer-Kw2Iq .framer-vqagmz > :first-child, .framer-Kw2Iq .framer-uj875p > :first-child, .framer-Kw2Iq .framer-1buk5a7 > :first-child, .framer-Kw2Iq .framer-x6kuon > :first-child, .framer-Kw2Iq .framer-yenmxw > :first-child, .framer-Kw2Iq .framer-16gmt5k > :first-child, .framer-Kw2Iq .framer-9n2ms3 > :first-child, .framer-Kw2Iq .framer-rud3mw > :first-child, .framer-Kw2Iq .framer-r6xumy > :first-child, .framer-Kw2Iq .framer-fsa9im > :first-child, .framer-Kw2Iq .framer-1m09imq > :first-child { margin-left: 0px; } .framer-Kw2Iq.framer-1jr53qv > :last-child, .framer-Kw2Iq .framer-26zowy > :last-child, .framer-Kw2Iq .framer-vqagmz > :last-child, .framer-Kw2Iq .framer-uj875p > :last-child, .framer-Kw2Iq .framer-1buk5a7 > :last-child, .framer-Kw2Iq .framer-x6kuon > :last-child, .framer-Kw2Iq .framer-yenmxw > :last-child, .framer-Kw2Iq .framer-16gmt5k > :last-child, .framer-Kw2Iq .framer-9n2ms3 > :last-child, .framer-Kw2Iq .framer-rud3mw > :last-child, .framer-Kw2Iq .framer-r6xumy > :last-child, .framer-Kw2Iq .framer-fsa9im > :last-child, .framer-Kw2Iq .framer-1m09imq > :last-child { margin-right: 0px; } .framer-Kw2Iq .framer-vqagmz > *, .framer-Kw2Iq .framer-1buk5a7 > *, .framer-Kw2Iq .framer-16gmt5k > *, .framer-Kw2Iq .framer-rud3mw > *, .framer-Kw2Iq .framer-fsa9im > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",\".framer-Kw2Iq.framer-v-bcpfhe.framer-1jr53qv, .framer-Kw2Iq.framer-v-1tz4npt.framer-1jr53qv { cursor: unset; }\",\".framer-Kw2Iq.framer-v-bcpfhe .framer-26zowy { order: 2; }\",\".framer-Kw2Iq.framer-v-bcpfhe .framer-m56fd6 { order: 3; }\",\".framer-Kw2Iq.framer-v-bcpfhe .framer-1e0ryhq, .framer-Kw2Iq.framer-v-1tz4npt .framer-eou1yp-container, .framer-Kw2Iq.framer-v-apwrim .framer-1m09imq, .framer-Kw2Iq.framer-v-1jr53qv.hover .framer-14ne3n0-container, .framer-Kw2Iq.framer-v-1ujcr9o.hover .framer-x6kuon, .framer-Kw2Iq.framer-v-10vekd5.hover .framer-r6xumy { order: 0; }\",\".framer-Kw2Iq.framer-v-1tz4npt .framer-9n2ms3, .framer-Kw2Iq.framer-v-1jr53qv.hover .framer-uj875p, .framer-Kw2Iq.framer-v-1ujcr9o.hover .framer-yenmxw { order: 1; }\",\".framer-Kw2Iq.framer-v-10vekd5 .framer-m56fd6 { white-space: pre-wrap; width: 301px; word-break: break-word; word-wrap: break-word; }\",\".framer-Kw2Iq.framer-v-106868z.framer-1jr53qv { width: 350px; }\",\".framer-Kw2Iq.framer-v-106868z .framer-m56fd6, .framer-Kw2Iq.framer-v-apwrim .framer-m56fd6 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Kw2Iq.framer-v-apwrim.framer-1jr53qv { cursor: unset; width: 350px; }\",\".framer-Kw2Iq.framer-v-1jr53qv.hover .framer-vqagmz { min-height: unset; min-width: unset; }\",\".framer-Kw2Iq.framer-v-1ujcr9o.hover .framer-ducqt { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: 214px; justify-content: center; padding: 23px; width: 229px; }\",\".framer-Kw2Iq.framer-v-1ujcr9o.hover .framer-jvvk0g { height: var(--framer-aspect-ratio-supported, 116px); left: unset; order: 1; position: relative; top: unset; width: 116px; }\",\".framer-Kw2Iq.framer-v-1ujcr9o.hover .framer-1mpgqgp { left: unset; order: 0; position: relative; top: unset; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Kw2Iq.framer-v-1ujcr9o.hover .framer-ducqt { gap: 0px; } .framer-Kw2Iq.framer-v-1ujcr9o.hover .framer-ducqt > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-Kw2Iq.framer-v-1ujcr9o.hover .framer-ducqt > :first-child { margin-top: 0px; } .framer-Kw2Iq.framer-v-1ujcr9o.hover .framer-ducqt > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 39\n * @framerIntrinsicWidth 226\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pMeAVdWq9\":{\"layout\":[\"auto\",\"auto\"]},\"zkDNDLjjz\":{\"layout\":[\"auto\",\"auto\"]},\"SjdSoqj4D\":{\"layout\":[\"auto\",\"auto\"]},\"exxY20Poq\":{\"layout\":[\"auto\",\"auto\"]},\"vE9PuYn1C\":{\"layout\":[\"auto\",\"auto\"]},\"ABgYMIRT1\":{\"layout\":[\"fixed\",\"auto\"]},\"QgBZZLH0X\":{\"layout\":[\"fixed\",\"auto\"]},\"tX6TxRfrT\":{\"layout\":[\"auto\",\"auto\"]},\"WYr_ambNL\":{\"layout\":[\"auto\",\"auto\"]},\"c5E5B940D\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbOTWouTXz=withCSS(Component,css,\"framer-Kw2Iq\");export default FramerbOTWouTXz;FramerbOTWouTXz.displayName=\"footer/hover\";FramerbOTWouTXz.defaultProps={height:39,width:226};addPropertyControls(FramerbOTWouTXz,{variant:{options:[\"l125QJ2m6\",\"pMeAVdWq9\",\"zkDNDLjjz\",\"SjdSoqj4D\",\"exxY20Poq\",\"vE9PuYn1C\",\"ABgYMIRT1\",\"QgBZZLH0X\"],optionTitles:[\"Mail\",\"Phone\",\"mail-mobil\",\"phone-mobil\",\"mail-mobil-tap\",\"Maps\",\"maps mobil\",\"maps mobil - tap\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerbOTWouTXz,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNi0Dp6_cOyA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...MaterialFonts,...GoogleMapsFonts,...ClipboardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbOTWouTXz\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"226\",\"framerIntrinsicHeight\":\"39\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pMeAVdWq9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zkDNDLjjz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SjdSoqj4D\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"exxY20Poq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vE9PuYn1C\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ABgYMIRT1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QgBZZLH0X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tX6TxRfrT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WYr_ambNL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"c5E5B940D\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bOTWouTXz.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Useful Links\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(119, 119, 119))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"unuDKj9cJ\"},nodeId:\"FmKmQbYN0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nc4sud\",\"data-styles-preset\":\"YOhtewYSt\",children:\"Company\"})})})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Privacy Policy\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(119, 119, 119))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eXxw4A36x\"},nodeId:\"YdecyKi3a\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nc4sud\",\"data-styles-preset\":\"YOhtewYSt\",children:\"About Us\"})})})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(119, 119, 119))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"I717YQequ\"},nodeId:\"a7teNnUAG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nc4sud\",\"data-styles-preset\":\"YOhtewYSt\",children:\"What is ISO Code?\"})})})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1X8CMnzEBb4aUxmANWz5/Q2qpDdNWAGdhnwHyTvyU/butyjAj0v.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8ZPPJjBK5615XydfHlKQ/hz6SaAUs5IzFK5VmelfP/YOhtewYSt.js\";import*as localizedValues from\"./biqC9ri1i-0.js\";import FooterHover from\"https://framerusercontent.com/modules/yANN3U3yzAmmKZ4zTu90/k8A7PQGz0zplfigJY29J/bOTWouTXz.js\";const FooterHoverFonts=getFonts(FooterHover);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const MaterialFonts=getFonts(Material);const cycleOrder=[\"JV6IV2wWg\",\"BrVniDDtG\"];const serializationHash=\"framer-7gETq\";const variantClassNames={BrVniDDtG:\"framer-v-5efau6\",JV6IV2wWg:\"framer-v-bsq2ew\"};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={YR07XygfI:localizedValues};function 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 transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:28};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:28};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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.create(React.Fragment);const humanReadableVariantMap={Mobil:\"BrVniDDtG\",PC:\"JV6IV2wWg\"};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:\"JV6IV2wWg\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JV6IV2wWg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"BrVniDDtG\")return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4;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.footer,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-bsq2ew\",className,classNames),\"data-framer-name\":\"PC\",layoutDependency:layoutDependency,layoutId:\"JV6IV2wWg\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({BrVniDDtG:{\"data-framer-name\":\"Mobil\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x7oq\",layoutDependency:layoutDependency,layoutId:\"FBKgV1vmo\",style:{background:\"linear-gradient(110deg, rgb(24, 42, 70) 0%, rgb(1, 169, 221) 100%)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1muwayc\",\"data-framer-name\":\"AGEN_LOGO\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Nr4pnWBMu\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 115 34\"><g id=\"ss11114335350_1\"><path d=\"M 0 0 L 114.951 0 L 114.951 34.026 L 0 34.026 Z\" fill=\"transparent\"></path><path d=\"M 6.981 31.055 L 8.001 31.055 L 8.001 27.171 L 9.391 27.171 L 9.391 26.291 L 5.591 26.291 L 5.591 27.171 L 6.981 27.171 Z M 11.353 31.055 L 14.874 31.055 L 14.874 30.175 L 12.372 30.175 L 12.372 29.006 L 14.62 29.006 L 14.62 28.193 L 12.373 28.193 L 12.373 27.171 L 14.822 27.171 L 14.822 26.291 L 11.353 26.291 Z M 16.993 31.055 L 18.012 31.055 L 18.012 29.52 L 18.596 28.913 L 19.993 31.055 L 21.273 31.055 L 19.285 28.172 L 21.098 26.291 L 19.824 26.291 L 18.012 28.266 L 18.012 26.291 L 16.993 26.291 Z M 23.112 31.055 L 24.066 31.055 L 24.066 27.865 L 24.079 27.865 L 26.01 31.055 L 27.029 31.055 L 27.029 26.291 L 26.074 26.291 L 26.074 29.487 L 26.062 29.487 L 24.125 26.291 L 23.112 26.291 Z M 29.355 31.055 L 30.374 31.055 L 30.374 26.291 L 29.355 26.291 Z M 29.433 25.796 L 30.309 25.796 L 30.309 25.016 L 29.433 25.016 Z M 32.701 31.055 L 33.72 31.055 L 33.72 29.52 L 34.305 28.913 L 35.702 31.055 L 36.981 31.055 L 34.993 28.172 L 36.806 26.291 L 35.533 26.291 L 33.72 28.266 L 33.72 26.291 L 32.701 26.291 Z M 44.998 31.055 L 46.129 31.055 L 45.187 29.927 C 45.446 29.587 45.589 29.18 45.635 28.753 L 44.836 28.753 C 44.81 28.947 44.764 29.14 44.667 29.32 L 44.07 28.566 C 44.537 28.306 44.894 27.939 44.894 27.378 C 44.894 26.631 44.323 26.237 43.621 26.237 C 42.998 26.237 42.413 26.664 42.413 27.325 C 42.413 27.745 42.602 28.025 42.855 28.339 C 42.309 28.6 41.816 29.053 41.816 29.721 C 41.816 30.621 42.478 31.148 43.316 31.148 C 43.842 31.148 44.252 30.955 44.622 30.581 Z M 44.135 29.947 C 43.921 30.194 43.686 30.368 43.355 30.368 C 43.01 30.368 42.692 30.088 42.692 29.741 C 42.692 29.354 43.01 29.094 43.342 28.953 Z M 44.089 27.325 C 44.089 27.672 43.875 27.838 43.615 28.005 C 43.439 27.785 43.251 27.591 43.251 27.291 C 43.251 27.044 43.439 26.87 43.667 26.87 C 43.894 26.87 44.089 27.077 44.089 27.325 M 52.197 31.055 L 53.216 31.055 L 53.216 27.171 L 54.607 27.171 L 54.607 26.291 L 50.807 26.291 L 50.807 27.171 L 52.197 27.171 Z M 56.569 31.055 L 60.09 31.055 L 60.09 30.175 L 57.588 30.175 L 57.588 29.006 L 59.836 29.006 L 59.836 28.193 L 57.588 28.193 L 57.588 27.171 L 60.038 27.171 L 60.038 26.291 L 56.569 26.291 Z M 63.228 27.171 L 63.955 27.171 C 64.963 27.171 65.294 27.785 65.294 28.746 C 65.294 29.801 64.729 30.175 64.137 30.175 L 63.228 30.175 Z M 62.208 31.055 L 64.209 31.055 C 65.625 31.055 66.313 30.028 66.313 28.646 C 66.313 27.071 65.411 26.29 64.209 26.29 L 62.208 26.29 Z M 70.224 27.465 L 70.238 27.465 L 70.822 29.214 L 69.62 29.214 Z M 67.957 31.055 L 68.99 31.055 L 69.354 29.994 L 71.089 29.994 L 71.439 31.055 L 72.498 31.055 L 70.764 26.29 L 69.718 26.29 Z M 75.35 27.104 L 76.468 27.104 C 76.929 27.104 77.17 27.304 77.17 27.765 C 77.17 28.246 76.929 28.446 76.468 28.446 L 75.35 28.446 Z M 74.331 31.055 L 75.35 31.055 L 75.35 29.193 L 76.371 29.193 C 76.884 29.193 77.072 29.413 77.144 29.914 C 77.196 30.294 77.189 30.754 77.306 31.055 L 78.325 31.055 C 78.137 30.794 78.15 30.227 78.131 29.927 C 78.098 29.44 77.955 28.953 77.455 28.813 L 77.455 28.8 C 77.975 28.586 78.189 28.166 78.189 27.605 C 78.189 26.884 77.663 26.291 76.832 26.291 L 74.331 26.291 Z M 80.451 31.055 L 81.47 31.055 L 81.47 26.291 L 80.451 26.291 Z M 80.528 25.796 L 81.405 25.796 L 81.405 25.016 L 80.529 25.016 Z M 83.796 31.055 L 84.815 31.055 L 84.815 29.52 L 85.4 28.913 L 86.797 31.055 L 88.077 31.055 L 86.089 28.172 L 87.901 26.291 L 86.628 26.291 L 84.815 28.266 L 84.815 26.291 L 83.796 26.291 Z M 94.924 27.465 L 94.937 27.465 L 95.522 29.214 L 94.32 29.214 Z M 92.657 31.055 L 93.69 31.055 L 94.054 29.994 L 95.789 29.994 L 96.139 31.055 L 97.198 31.055 L 95.464 26.29 L 94.418 26.29 Z M 98.972 31.055 L 99.991 31.055 L 99.991 30.028 L 98.972 30.028 Z M 103.097 32.356 C 103.344 32.45 103.487 32.503 103.903 32.503 C 104.273 32.503 104.663 32.356 104.663 31.836 C 104.663 31.509 104.358 31.369 104.065 31.369 C 103.994 31.369 103.916 31.382 103.838 31.416 L 103.831 31.402 L 104 31.168 C 104.293 31.161 104.553 31.128 104.78 31.055 C 105.507 30.815 105.877 30.301 105.877 29.641 C 105.877 28.566 104.845 28.332 104.501 28.252 C 103.337 27.952 103.116 27.898 103.116 27.531 C 103.116 27.131 103.493 26.99 103.818 26.99 C 104.312 26.99 104.702 27.144 104.735 27.711 L 105.721 27.711 C 105.721 26.611 104.832 26.177 103.864 26.177 C 103.025 26.177 102.129 26.637 102.129 27.618 C 102.129 28.499 102.824 28.8 103.513 28.973 C 104.188 29.167 104.891 29.24 104.891 29.761 C 104.89 30.248 104.345 30.355 103.987 30.355 C 103.441 30.355 102.96 30.108 102.96 29.474 L 101.973 29.474 C 101.961 30.348 102.506 30.875 103.201 31.068 C 103.363 31.115 103.526 31.142 103.695 31.155 L 103.383 31.602 L 103.519 31.763 C 103.602 31.73 103.69 31.715 103.779 31.716 C 103.929 31.716 104.039 31.763 104.039 31.929 C 104.039 32.09 103.935 32.157 103.779 32.157 C 103.552 32.157 103.37 32.097 103.233 32.036 Z M 107.853 31.055 L 108.872 31.055 L 108.872 30.028 L 107.853 30.028 Z M 24.032 6.039 L 35.907 23.737 L 16.38 23.662 L 19.093 19.548 C 19.371 19.6 19.658 19.629 19.951 19.629 C 22.553 19.629 24.662 17.434 24.662 14.727 C 24.662 13.948 24.487 13.212 24.177 12.558 L 21.884 15.742 L 19.269 15.44 L 18.228 12.907 L 20.429 9.849 C 20.27 9.833 20.111 9.824 19.951 9.824 C 17.349 9.824 15.24 12.019 15.24 14.727 C 15.238 15.415 15.378 16.097 15.65 16.73 L 11.009 23.641 L 3.954 23.613 L 15.829 6.039 C 16.692 4.464 18.187 3.559 19.93 3.559 C 21.673 3.559 23.035 4.553 24.032 6.039 M 105.984 24.042 C 105.597 24.041 105.212 23.975 104.847 23.847 C 104.473 23.717 104.055 23.422 103.594 22.963 L 91.787 11.936 L 91.787 23.712 L 86.373 23.712 L 86.373 7.081 C 86.373 6.422 86.464 5.853 86.646 5.374 C 86.828 4.894 87.068 4.505 87.366 4.205 C 87.657 3.909 88.012 3.684 88.403 3.546 C 88.796 3.406 89.21 3.335 89.627 3.336 C 89.991 3.336 90.361 3.401 90.736 3.531 C 91.11 3.661 91.537 3.955 92.017 4.415 L 103.824 15.442 L 103.824 3.665 L 109.267 3.665 L 109.267 20.266 C 109.267 20.925 109.176 21.495 108.994 21.974 C 108.811 22.454 108.571 22.848 108.274 23.158 C 107.982 23.463 107.622 23.695 107.222 23.832 C 106.824 23.971 106.406 24.042 105.984 24.042 M 84.414 18.558 L 80.584 23.712 L 62.038 23.712 L 62.038 3.665 L 84.357 3.665 L 80.498 8.879 L 68.028 8.879 L 68.028 11.277 L 83.291 11.277 L 79.864 15.831 L 68.028 15.831 L 68.028 18.558 Z M 46.285 11.187 L 58.611 11.187 L 58.611 23.712 L 45.393 23.712 C 43.722 23.712 42.177 23.453 40.756 22.933 C 39.336 22.413 38.112 21.7 37.084 20.791 C 36.057 19.882 35.251 18.803 34.665 17.555 C 34.08 16.306 33.787 14.952 33.787 13.494 C 33.787 12.036 34.08 10.702 34.665 9.494 C 35.251 8.285 36.057 7.246 37.084 6.378 C 38.112 5.508 39.336 4.839 40.756 4.37 C 42.177 3.9 43.722 3.665 45.392 3.665 L 59.187 3.665 L 55.328 8.879 L 45.392 8.879 C 44.586 8.879 43.838 8.999 43.146 9.239 C 42.455 9.479 41.855 9.818 41.346 10.258 C 40.838 10.697 40.439 11.212 40.152 11.801 C 39.864 12.39 39.719 13.044 39.719 13.764 C 39.719 14.483 39.858 15.137 40.137 15.727 C 40.415 16.315 40.809 16.82 41.318 17.24 C 41.826 17.659 42.426 17.984 43.118 18.213 C 43.809 18.443 44.567 18.558 45.392 18.558 L 52.679 18.558 L 52.679 15.651 L 42.714 15.651 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:11114335350,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yuyytu\",layoutDependency:layoutDependency,layoutId:\"xCY6TwqEG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ss1n3\",layoutDependency:layoutDependency,layoutId:\"CWQnrMul3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||366)-0-366)/2+0+0)+50+57+6+0+0,...addPropertyOverrides({BrVniDDtG:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||820)-0-782)/2+0+0)+50+57+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mii319-container\",layoutDependency:layoutDependency,layoutId:\"vIF2MHK3L-container\",children:/*#__PURE__*/_jsx(FooterHover,{height:\"100%\",id:\"vIF2MHK3L\",layoutId:\"vIF2MHK3L\",variant:\"vE9PuYn1C\",width:\"100%\",...addPropertyOverrides({BrVniDDtG:{style:{width:\"100%\"},variant:\"ABgYMIRT1\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||366)-0-366)/2+0+0)+50+57+6+0+49,...addPropertyOverrides({BrVniDDtG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||820)-0-782)/2+0+0)+50+57+0+0+0+49}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hyt3vp-container\",layoutDependency:layoutDependency,layoutId:\"ntm_FPW_w-container\",children:/*#__PURE__*/_jsx(FooterHover,{height:\"100%\",id:\"ntm_FPW_w\",layoutId:\"ntm_FPW_w\",variant:\"pMeAVdWq9\",width:\"100%\",...addPropertyOverrides({BrVniDDtG:{variant:\"SjdSoqj4D\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||366)-0-366)/2+0+0)+50+57+6+0+98,...addPropertyOverrides({BrVniDDtG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||820)-0-782)/2+0+0)+50+57+0+0+0+98}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16m5h0s-container\",layoutDependency:layoutDependency,layoutId:\"DjCJb8St9-container\",children:/*#__PURE__*/_jsx(FooterHover,{height:\"100%\",id:\"DjCJb8St9\",layoutId:\"DjCJb8St9\",variant:\"l125QJ2m6\",width:\"100%\",...addPropertyOverrides({BrVniDDtG:{variant:\"zkDNDLjjz\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ht3mu3\",layoutDependency:layoutDependency,layoutId:\"nNzlSenPD\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yg2bpm\",layoutDependency:layoutDependency,layoutId:\"lRAYZRDza\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Yararl\u0131 Linkler\"})}),className:\"framer-pi0uwu\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"EdCSrnuS0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__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\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(119, 119, 119))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"unuDKj9cJ\"},nodeId:\"FmKmQbYN0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nc4sud\",\"data-styles-preset\":\"YOhtewYSt\",children:\"Kurumsal\"})})})}),className:\"framer-rxwv8e\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"FmKmQbYN0\",style:{\"--extracted-r6o4lv\":\"rgb(119, 119, 119)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Gizlilik Politikas\u0131\"})}),className:\"framer-1p4rann\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"wHQ_zYYTb\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(119, 119, 119))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eXxw4A36x\"},nodeId:\"YdecyKi3a\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nc4sud\",\"data-styles-preset\":\"YOhtewYSt\",children:\"Hakk\u0131m\u0131zda\"})})})}),className:\"framer-b2l767\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"YdecyKi3a\",style:{\"--extracted-r6o4lv\":\"rgb(119, 119, 119)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hbrd8v\",layoutDependency:layoutDependency,layoutId:\"T_5dhKtXN\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t2fm2k\",layoutDependency:layoutDependency,layoutId:\"Rl_NtH9JN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Yeni Sayfalar\"})}),className:\"framer-7stl75\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"VNshlpYC1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(119, 119, 119))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zuNo9m_1b\"},nodeId:\"yvRQ4Oarz\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nc4sud\",\"data-styles-preset\":\"YOhtewYSt\",children:\"Online Katalog\"})})})}),className:\"framer-85bwzm\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"yvRQ4Oarz\",style:{\"--extracted-r6o4lv\":\"rgb(119, 119, 119)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jCbBwYvg_\"},nodeId:\"r675ONAMe\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nc4sud\",\"data-styles-preset\":\"YOhtewYSt\",children:\"\\xdcr\\xfcnler\"})})})}),className:\"framer-151m8od\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"r675ONAMe\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"25.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(119, 119, 119))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"I717YQequ\"},nodeId:\"a7teNnUAG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nc4sud\",\"data-styles-preset\":\"YOhtewYSt\",children:\"ISO Code nedir?\"})})})}),className:\"framer-p1ryti\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"a7teNnUAG\",style:{\"--extracted-r6o4lv\":\"rgb(119, 119, 119)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s90y42\",layoutDependency:layoutDependency,layoutId:\"HeJLTVZDw\"})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mm6vt7\",layoutDependency:layoutDependency,layoutId:\"JCd6DCWXl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x3ykiy\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"uvLy6Z8Mi\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.11)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uuk8op\",layoutDependency:layoutDependency,layoutId:\"hpYjMHIeM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12.8px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"15.36px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f0dbfc1f-5549-46ee-828b-d5c18913e12d, rgb(41, 143, 227)))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.agentedarik.com/\",nodeId:\"KUkL9L4HU\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"AGEN TEKN\u0130K TEDAR\u0130K A.\u015E.\"})})}),\" 2024\"]})}),className:\"framer-ho7573\",fonts:[\"GF;Inter-600\",\"GF;Inter-900\"],layoutDependency:layoutDependency,layoutId:\"KUkL9L4HU\",style:{\"--extracted-r6o4lv\":\"var(--token-f0dbfc1f-5549-46ee-828b-d5c18913e12d, rgb(41, 143, 227))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed(),children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12.8px\",\"--framer-line-height\":\"15.36px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f0dbfc1f-5549-46ee-828b-d5c18913e12d, rgb(41, 143, 227)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"umutozk.com\",nodeId:\"AbJg_W4FF\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-12o7zj0\",\"data-styles-preset\":\"butyjAj0v\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Umut \\xd6zkan \"})}),/*#__PURE__*/_jsx(motion.strong,{children:\"taraf\u0131ndan geli\u015Ftirilmi\u015Ftir\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\".\"})})]})})})}),className:\"framer-t19occ\",\"data-highlight\":true,fonts:[\"GF;Inter-regular\",\"GF;Inter-700\",\"GF;Inter-600\",\"GF;Inter-900\"],id:`${layoutId}-t19occ`,layoutDependency:layoutDependency,layoutId:\"AbJg_W4FF\",onMouseEnter:onMouseEnterizu9gt({overlay}),ref:ref2,style:{\"--extracted-r6o4lv\":\"var(--token-f0dbfc1f-5549-46ee-828b-d5c18913e12d, rgb(41, 143, 227))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-t19occ`,offsetX:0,offsetY:-10,onDismiss:overlay.hide,placement:\"top\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1joh9b2\",\"data-border\":true,exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"p3_S297nA\",ref:ref3,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.49)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(255, 255, 255, 0.3)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0.9573745953131584px 0.16796045531809797px 0.9719963118765917px -0.46875px rgba(0, 0, 0, 0.03708), 2.2691468395423726px 0.39809593676181976px 2.3038028896308402px -0.9375px rgba(0, 0, 0, 0.0365), 4.139158386208873px 0.7261681379313812px 4.202374603800806px -1.40625px rgba(0, 0, 0, 0.03568), 6.881342507847876px 1.207253071552259px 6.986439342689985px -1.875px rgba(0, 0, 0, 0.03448), 11.112807051515265px 1.9496152721956606px 11.282529870281131px -2.34375px rgba(0, 0, 0, 0.03263), 18.190562536230715px 3.1913267607422307px 18.46838195073813px -2.8125px rgba(0, 0, 0, 0.02952), 31.32292030511977px 5.495249176336801px 31.80130657615996px -3.28125px rgba(0, 0, 0, 0.02376), 57px 10px 57.87054518492115px -3.75px rgba(0, 0, 0, 0.0125)\",WebkitBackdropFilter:\"blur(5px)\"},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||366)-0-366)/2+306+0)+0+22.32+0+-75+8+0),sizes:\"237px\",src:\"https://framerusercontent.com/images/uBPbr009ZA6tT9DOyBkyM7ASEY.png\",srcSet:\"https://framerusercontent.com/images/uBPbr009ZA6tT9DOyBkyM7ASEY.png?scale-down-to=512 512w,https://framerusercontent.com/images/uBPbr009ZA6tT9DOyBkyM7ASEY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uBPbr009ZA6tT9DOyBkyM7ASEY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uBPbr009ZA6tT9DOyBkyM7ASEY.png 2938w\"},className:\"framer-o309w0\",\"data-border\":true,exit:animation3,initial:animation4,layoutDependency:layoutDependency,layoutId:\"tXNiuxbwg\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"double\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})})})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zm4xxc\",layoutDependency:layoutDependency,layoutId:\"Pb1zKeXt3\"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JBurQ6EmC\"},nodeId:\"yDJ1v0HeP\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-146uid3 framer-biqyxa\",layoutDependency:layoutDependency,layoutId:\"yDJ1v0HeP\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u3xrqa-container\",layoutDependency:layoutDependency,layoutId:\"kv6GBITDN-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-4c07e2a3-50af-4d2f-97a2-30e8af61af05, rgb(18, 70, 171))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Upcoming\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"kv6GBITDN\",layoutId:\"kv6GBITDN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7gETq.framer-biqyxa, .framer-7gETq .framer-biqyxa { display: block; }\",\".framer-7gETq.framer-bsq2ew { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-7gETq .framer-1x7oq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: visible; padding: 50px; position: relative; width: 100%; }\",\".framer-7gETq .framer-1muwayc { flex: none; height: 34px; position: relative; width: 115px; }\",\".framer-7gETq .framer-yuyytu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7gETq .framer-17ss1n3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7gETq .framer-mii319-container, .framer-7gETq .framer-1hyt3vp-container, .framer-7gETq .framer-16m5h0s-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7gETq .framer-ht3mu3, .framer-7gETq .framer-1hbrd8v { flex: 1 0 0px; height: 27px; overflow: visible; position: relative; width: 1px; }\",\".framer-7gETq .framer-1yg2bpm, .framer-7gETq .framer-1t2fm2k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 149px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 127px; }\",\".framer-7gETq .framer-pi0uwu, .framer-7gETq .framer-rxwv8e, .framer-7gETq .framer-1p4rann, .framer-7gETq .framer-b2l767, .framer-7gETq .framer-7stl75, .framer-7gETq .framer-85bwzm, .framer-7gETq .framer-151m8od, .framer-7gETq .framer-p1ryti, .framer-7gETq .framer-ho7573, .framer-7gETq .framer-t19occ { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-7gETq .framer-1s90y42 { flex: none; height: 52px; overflow: visible; position: relative; width: 94px; }\",\".framer-7gETq .framer-mm6vt7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7gETq .framer-x3ykiy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-7gETq .framer-uuk8op { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7gETq .framer-1joh9b2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 253px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7gETq .framer-o309w0 { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-7gETq .framer-zm4xxc { flex: 1 0 0px; height: 28px; overflow: visible; position: relative; width: 1px; }\",\".framer-7gETq .framer-146uid3 { flex: none; height: 34px; overflow: visible; position: relative; text-decoration: none; width: 34px; }\",\".framer-7gETq .framer-u3xrqa-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7gETq.framer-bsq2ew, .framer-7gETq .framer-1x7oq, .framer-7gETq .framer-yuyytu, .framer-7gETq .framer-17ss1n3, .framer-7gETq .framer-1yg2bpm, .framer-7gETq .framer-1t2fm2k, .framer-7gETq .framer-mm6vt7, .framer-7gETq .framer-x3ykiy, .framer-7gETq .framer-uuk8op, .framer-7gETq .framer-1joh9b2 { gap: 0px; } .framer-7gETq.framer-bsq2ew > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7gETq.framer-bsq2ew > :first-child, .framer-7gETq .framer-1x7oq > :first-child, .framer-7gETq .framer-17ss1n3 > :first-child, .framer-7gETq .framer-1yg2bpm > :first-child, .framer-7gETq .framer-1t2fm2k > :first-child, .framer-7gETq .framer-1joh9b2 > :first-child { margin-top: 0px; } .framer-7gETq.framer-bsq2ew > :last-child, .framer-7gETq .framer-1x7oq > :last-child, .framer-7gETq .framer-17ss1n3 > :last-child, .framer-7gETq .framer-1yg2bpm > :last-child, .framer-7gETq .framer-1t2fm2k > :last-child, .framer-7gETq .framer-1joh9b2 > :last-child { margin-bottom: 0px; } .framer-7gETq .framer-1x7oq > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-7gETq .framer-yuyytu > *, .framer-7gETq .framer-mm6vt7 > *, .framer-7gETq .framer-x3ykiy > *, .framer-7gETq .framer-uuk8op > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7gETq .framer-yuyytu > :first-child, .framer-7gETq .framer-mm6vt7 > :first-child, .framer-7gETq .framer-x3ykiy > :first-child, .framer-7gETq .framer-uuk8op > :first-child { margin-left: 0px; } .framer-7gETq .framer-yuyytu > :last-child, .framer-7gETq .framer-mm6vt7 > :last-child, .framer-7gETq .framer-x3ykiy > :last-child, .framer-7gETq .framer-uuk8op > :last-child { margin-right: 0px; } .framer-7gETq .framer-17ss1n3 > *, .framer-7gETq .framer-1yg2bpm > *, .framer-7gETq .framer-1t2fm2k > *, .framer-7gETq .framer-1joh9b2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-7gETq.framer-v-5efau6.framer-bsq2ew { width: 390px; }\",\".framer-7gETq.framer-v-5efau6 .framer-yuyytu, .framer-7gETq.framer-v-5efau6 .framer-uuk8op { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-7gETq.framer-v-5efau6 .framer-17ss1n3, .framer-7gETq.framer-v-5efau6 .framer-mii319-container { width: 100%; }\",\".framer-7gETq.framer-v-5efau6 .framer-ht3mu3, .framer-7gETq.framer-v-5efau6 .framer-1hbrd8v { flex: none; height: 45px; width: 100%; }\",\".framer-7gETq.framer-v-5efau6 .framer-x3ykiy { flex: 1 0 0px; height: min-content; justify-content: flex-start; padding: 10px 20px 0px 20px; width: 1px; }\",\".framer-7gETq.framer-v-5efau6 .framer-ho7573, .framer-7gETq.framer-v-5efau6 .framer-t19occ { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7gETq.framer-v-5efau6 .framer-yuyytu, .framer-7gETq.framer-v-5efau6 .framer-uuk8op { gap: 0px; } .framer-7gETq.framer-v-5efau6 .framer-yuyytu > *, .framer-7gETq.framer-v-5efau6 .framer-uuk8op > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7gETq.framer-v-5efau6 .framer-yuyytu > :first-child, .framer-7gETq.framer-v-5efau6 .framer-uuk8op > :first-child { margin-top: 0px; } .framer-7gETq.framer-v-5efau6 .framer-yuyytu > :last-child, .framer-7gETq.framer-v-5efau6 .framer-uuk8op > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-7gETq[data-border=\"true\"]::after, .framer-7gETq [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 366\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BrVniDDtG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbiqC9ri1i=withCSS(Component,css,\"framer-7gETq\");export default FramerbiqC9ri1i;FramerbiqC9ri1i.displayName=\"footer/Bottom Bar\";FramerbiqC9ri1i.defaultProps={height:366,width:1200};addPropertyControls(FramerbiqC9ri1i,{variant:{options:[\"JV6IV2wWg\",\"BrVniDDtG\"],optionTitles:[\"PC\",\"Mobil\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerbiqC9ri1i,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZ1rib2Bg-4.woff2\",weight:\"900\"}]},...FooterHoverFonts,...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbiqC9ri1i\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"366\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BrVniDDtG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./biqC9ri1i.map"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "coordinatesRegex", "GoogleMaps", "coordinates", "zoom", "style", "props", "borderRadius", "useRadius", "latitude1", "longitude1", "se", "ref", "latitude", "longitude", "p", "motion", "containerStyles", "addPropertyControls", "ControlType", "borderRadiusControl", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "MaterialFonts", "getFonts", "Icon", "GoogleMapsFonts", "GoogleMaps", "ClipboardFonts", "Clipboard", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transition2", "animation", "animation1", "animation2", "animation3", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1waw77l", "args", "onTap1hm9pas", "onMouseEnter1gx595p", "overlay", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "ref2", "ref3", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "ComponentViewportProvider", "Icon", "GoogleMaps", "RichText", "Link", "Clipboard", "l", "AnimatePresence", "Floating", "MotionDivWithFX", "Image2", "css", "FramerbOTWouTXz", "withCSS", "bOTWouTXz_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "GoogleMapsFonts", "ClipboardFonts", "biqC9ri1i_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v0", "p", "x", "motion", "v1", "Link", "v2", "v3", "v4", "__FramerMetadata__", "FooterHoverFonts", "getFonts", "bOTWouTXz_default", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "MaterialFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "biqC9ri1i_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "animation4", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterizu9gt", "overlay", "paginationInfo", "args", "ref1", "pe", "isDisplayed", "ref2", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "LayoutGroup", "u", "cx", "SVG", "ComponentViewportProvider", "RichText", "Link", "l", "AnimatePresence", "Floating", "getLoadingLazyAtYPosition", "css", "FramerbiqC9ri1i", "withCSS", "biqC9ri1i_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
