{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/yx3Yu3CvNlklDmNPtEF9/Animator.js", "ssg:https://framerusercontent.com/modules/zPmhemjUkJGI000iYR8s/kZVosSIKA9juR0mrJTfO/eFZUs02d6.js", "ssg:https://framerusercontent.com/modules/c1c02yZKBNIXLb6D4eYz/ASDCmJGson0U81Atha0I/dusFwSi8i.js", "ssg:https://framerusercontent.com/modules/uDEKXGgQcGyv1pn0lsgA/lKT8xlPyM3wQfORzRtcg/ixQz0LEzL.js", "ssg:https://framerusercontent.com/modules/f56YcJXATc3aHO73Ma0j/5OQNc0vQhsGYWFDnIWTa/oNcHkJo90.js", "ssg:https://framerusercontent.com/modules/1xXmriap7UZS7moCKmYh/JtoUzFJ6KvRFQSjI01OP/E79NGpQX1.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Animator(props){/* Properties */ const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */ const hasChildren=Children.count(slots)>0;/* Empty State */ let customShape=/*#__PURE__*/ _jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */ const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties */ /* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */ const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */ const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */ if(isCanvas){customShape=firstChild;}/* If on a web page */ if(!isCanvas&&svgChild){/* Pass Attributes */ let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */ let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/ _jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/ _jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity}})})});}}return customShape;};/* Default Properties */ Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */ addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */ const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */ function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=[\".framer-kiU4f .framer-styles-preset-gdgdoi:not(.rich-text-wrapper), .framer-kiU4f .framer-styles-preset-gdgdoi.rich-text-wrapper a { --framer-link-current-text-color: #852828; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #852828; --framer-link-hover-text-decoration: none; --framer-link-text-color: #e84847; --framer-link-text-decoration: none; }\"];export const className=\"framer-kiU4f\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/yx3Yu3CvNlklDmNPtEF9/Animator.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zPmhemjUkJGI000iYR8s/kZVosSIKA9juR0mrJTfO/eFZUs02d6.js\";const AnimatorFonts=getFonts(Animator);const cycleOrder=[\"jeUKF7gUS\",\"iT9LvGgin\"];const serializationHash=\"framer-Mz7vL\";const variantClassNames={iT9LvGgin:\"framer-v-1m40jkp\",jeUKF7gUS:\"framer-v-tfe6kf\"};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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"jeUKF7gUS\",Mobile:\"iT9LvGgin\"};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:\"jeUKF7gUS\"};};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:\"jeUKF7gUS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"iT9LvGgin\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-tfe6kf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jeUKF7gUS\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 0, 0)\",...style},...addPropertyOverrides({iT9LvGgin:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l81pzy\",layoutDependency:layoutDependency,layoutId:\"tZsIlmHIy\",children:/*#__PURE__*/_jsx(Link,{href:\"www.artrodite.com\",nodeId:\"pdZHeJ_Zy\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-13v8cn4 framer-1iv17vd\",\"data-framer-name\":\"Group 970\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:43,layoutDependency:layoutDependency,layoutId:\"pdZHeJ_Zy\",svg:'<svg width=\"43\" height=\"44\" viewBox=\"0 0 43 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.56315 8.05815C2.96427 8.05815 2.42866 7.90958 1.95631 7.61244C1.49239 7.3153 1.12547 6.92053 0.855557 6.42813C0.585641 5.92724 0.450684 5.37541 0.450684 4.77264C0.450684 4.17837 0.594076 3.63503 0.880862 3.14263C1.17608 2.64174 1.57252 2.24697 2.07018 1.95832C2.56783 1.66118 3.12875 1.51261 3.75293 1.51261C4.37711 1.51261 4.93803 1.65694 5.43569 1.94558C5.93335 2.22574 6.32557 2.61202 6.61235 3.10442C6.90757 3.59683 7.05518 4.1529 7.05518 4.77264V7.90533H5.86587V5.57492L6.29605 5.24382C6.29605 5.77018 6.17796 6.2456 5.94178 6.67008C5.71404 7.09457 5.39352 7.43416 4.98021 7.68885C4.57533 7.93505 4.10298 8.05815 3.56315 8.05815ZM3.75293 6.8611C4.14094 6.8611 4.49098 6.76772 4.80307 6.58094C5.11516 6.39417 5.35978 6.14373 5.53691 5.82961C5.71404 5.507 5.80261 5.15892 5.80261 4.78538C5.80261 4.40334 5.71404 4.05527 5.53691 3.74115C5.35978 3.42703 5.11516 3.17659 4.80307 2.98981C4.49098 2.79455 4.14094 2.69692 3.75293 2.69692C3.36493 2.69692 3.01488 2.79455 2.70279 2.98981C2.39914 3.17659 2.15453 3.42703 1.96896 3.74115C1.79183 4.05527 1.70326 4.40334 1.70326 4.78538C1.70326 5.15892 1.79183 5.507 1.96896 5.82961C2.15453 6.14373 2.39914 6.39417 2.70279 6.58094C3.01488 6.76772 3.36493 6.8611 3.75293 6.8611Z\" fill=\"#E84848\"/>\\n<path d=\"M22.025 8.0581H20.7724V4.33962C20.7724 3.83024 20.8652 3.37605 21.0507 2.97703C21.2447 2.57802 21.5231 2.2639 21.8858 2.03468C22.2569 1.80546 22.7124 1.69085 23.2522 1.69085C23.4547 1.69085 23.6487 1.71207 23.8342 1.75452C24.0282 1.78848 24.2054 1.84366 24.3656 1.92007V3.16805C24.2138 3.07466 24.0493 3.00675 23.8722 2.9643C23.7035 2.92185 23.5348 2.90062 23.3661 2.90062C22.9528 2.90062 22.6238 3.03646 22.3792 3.30813C22.1431 3.57131 22.025 3.93212 22.025 4.39056V8.0581Z\" fill=\"#E84848\"/>\\n<path d=\"M40.7066 8.02274C40.2005 8.02274 39.7703 7.92086 39.416 7.71711C39.0618 7.51336 38.7919 7.2332 38.6063 6.87663C38.4292 6.51158 38.3406 6.09134 38.3406 5.61592V0H39.5932V5.57771C39.5932 5.98522 39.7028 6.30358 39.9221 6.5328C40.1499 6.76202 40.4493 6.87663 40.8205 6.87663C41.0229 6.87663 41.2253 6.84267 41.4278 6.77476C41.6386 6.70684 41.82 6.6177 41.9718 6.50733V7.66617C41.8116 7.76805 41.6176 7.85294 41.3898 7.92086C41.1621 7.98878 40.9343 8.02274 40.7066 8.02274ZM41.9718 2.71245H37.1133V1.61728H41.9718V2.71245Z\" fill=\"#E84848\"/>\\n<path d=\"M3.90394 26.0649H2.65137L2.65137 22.3464C2.65137 21.837 2.74415 21.3828 2.92972 20.9838C3.12372 20.5848 3.40207 20.2707 3.76477 20.0415C4.1359 19.8122 4.59139 19.6976 5.13122 19.6976C5.33366 19.6976 5.52766 19.7188 5.71322 19.7613C5.90723 19.7953 6.08436 19.8504 6.24462 19.9268V21.1748C6.09279 21.0814 5.92831 21.0135 5.75118 20.9711C5.58248 20.9286 5.41379 20.9074 5.24509 20.9074C4.83178 20.9074 4.50282 21.0432 4.25821 21.3149C4.02203 21.5781 3.90394 21.9389 3.90394 22.3973L3.90394 26.0649Z\" fill=\"#E84848\"/>\\n<path d=\"M21.9749 26.1389C21.3507 26.1389 20.7898 25.9903 20.2922 25.6931C19.7945 25.396 19.3981 25.0012 19.1028 24.5088C18.8076 24.0079 18.66 23.4561 18.66 22.8534C18.66 22.2506 18.8076 21.703 19.1028 21.2106C19.3981 20.7182 19.7945 20.3277 20.2922 20.039C20.7898 19.7419 21.3507 19.5933 21.9749 19.5933C22.5991 19.5933 23.16 19.7419 23.6577 20.039C24.1553 20.3277 24.5475 20.7224 24.8343 21.2233C25.1211 21.7157 25.2645 22.2591 25.2645 22.8534C25.2645 23.4561 25.1211 24.0079 24.8343 24.5088C24.5475 25.0012 24.1511 25.396 23.645 25.6931C23.1474 25.9903 22.5907 26.1389 21.9749 26.1389ZM21.9749 24.9418C22.3629 24.9418 22.7087 24.8484 23.0124 24.6617C23.3245 24.4749 23.5691 24.2244 23.7462 23.9103C23.9234 23.5877 24.0119 23.2396 24.0119 22.8661C24.0119 22.4841 23.9234 22.136 23.7462 21.8219C23.5691 21.5077 23.3245 21.2573 23.0124 21.0705C22.7087 20.8753 22.3629 20.7776 21.9749 20.7776C21.5869 20.7776 21.2369 20.8753 20.9248 21.0705C20.6211 21.2573 20.3765 21.5077 20.1909 21.8219C20.0054 22.136 19.9126 22.4841 19.9126 22.8661C19.9126 23.2396 20.0054 23.5877 20.1909 23.9103C20.3765 24.2244 20.6211 24.4749 20.9248 24.6617C21.2369 24.8484 21.5869 24.9418 21.9749 24.9418Z\" fill=\"#E84848\"/>\\n<path d=\"M39.6979 26.0087C39.0737 26.0087 38.5128 25.8602 38.0152 25.563C37.5175 25.2659 37.1211 24.8711 36.8258 24.3787C36.5391 23.8863 36.3957 23.343 36.3957 22.7487C36.3957 22.112 36.5348 21.5474 36.8132 21.055C37.0915 20.5626 37.4753 20.1763 37.9645 19.8962C38.4538 19.6075 39.0105 19.4632 39.6346 19.4632C40.1323 19.4632 40.5878 19.582 41.0011 19.8197C41.4228 20.049 41.7602 20.3588 42.0133 20.7494C42.2663 21.1399 42.3928 21.5644 42.3928 22.0228L41.7349 21.6917L41.7476 16.7507H43.0002V22.7487C43.0002 23.3599 42.8525 23.916 42.5573 24.4169C42.2705 24.9093 41.8783 25.2998 41.3807 25.5885C40.883 25.8686 40.3221 26.0087 39.6979 26.0087ZM39.6979 24.8244C40.0859 24.8244 40.436 24.731 40.748 24.5443C41.0601 24.349 41.3047 24.0943 41.4819 23.7802C41.659 23.4661 41.7476 23.118 41.7476 22.736C41.7476 22.3624 41.659 22.0186 41.4819 21.7045C41.3047 21.3818 41.0601 21.1272 40.748 20.9404C40.436 20.7536 40.0859 20.6602 39.6979 20.6602C39.3099 20.6602 38.9599 20.7536 38.6478 20.9404C38.3441 21.1272 38.0995 21.3818 37.9139 21.7045C37.7368 22.0186 37.6482 22.3624 37.6482 22.736C37.6482 23.118 37.7368 23.4661 37.9139 23.7802C38.0995 24.0943 38.3441 24.349 38.6478 24.5443C38.9599 24.731 39.3099 24.8244 39.6979 24.8244Z\" fill=\"#E84848\"/>\\n<path d=\"M3.41875 37.5946H4.67132V43.8345H3.41875L3.41875 37.5946ZM4.03871 36.3594C3.89532 36.3594 3.76036 36.3254 3.63383 36.2575C3.50731 36.1811 3.40609 36.0792 3.33018 35.9519C3.25427 35.8245 3.21631 35.6845 3.21631 35.5316C3.21631 35.3788 3.25427 35.2387 3.33018 35.1114C3.40609 34.9841 3.50731 34.8822 3.63383 34.8058C3.76036 34.7294 3.89532 34.6912 4.03871 34.6912C4.19054 34.6912 4.32549 34.7294 4.44358 34.8058C4.5701 34.8822 4.66711 34.9841 4.73458 35.1114C4.8105 35.2387 4.84846 35.3788 4.84846 35.5316C4.84846 35.6845 4.8105 35.8245 4.73458 35.9519C4.66711 36.0792 4.5701 36.1811 4.44358 36.2575C4.32549 36.3254 4.19054 36.3594 4.03871 36.3594Z\" fill=\"#E84848\"/>\\n<path d=\"M23.1369 44.0001C22.6309 44.0001 22.2007 43.8982 21.8464 43.6944C21.4921 43.4907 21.2222 43.2105 21.0367 42.854C20.8595 42.4889 20.771 42.0687 20.771 41.5933V35.9773H22.0235V41.5551C22.0235 41.9626 22.1332 42.2809 22.3525 42.5101C22.5802 42.7394 22.8797 42.854 23.2508 42.854C23.4533 42.854 23.6557 42.82 23.8581 42.7521C24.069 42.6842 24.2503 42.595 24.4022 42.4847V43.6435C24.2419 43.7454 24.0479 43.8303 23.8202 43.8982C23.5924 43.9661 23.3647 44.0001 23.1369 44.0001ZM24.4022 38.6898H19.5437V37.5946H24.4022V38.6898Z\" fill=\"#E84848\"/>\\n<path d=\"M39.9678 43.9746C39.3436 43.9746 38.7827 43.8345 38.285 43.5544C37.7873 43.2657 37.3951 42.8752 37.1083 42.3828C36.8216 41.8819 36.6782 41.3131 36.6782 40.6764C36.6782 40.0821 36.8089 39.5388 37.0704 39.0464C37.3319 38.5455 37.6988 38.1507 38.1711 37.862C38.6435 37.5649 39.1918 37.4163 39.8159 37.4163C40.4401 37.4163 40.9757 37.5564 41.4228 37.8366C41.8783 38.1082 42.2283 38.4818 42.4729 38.9572C42.726 39.4241 42.8525 39.9463 42.8525 40.5236V41.0329H37.6524L37.8801 40.5236C37.8548 40.965 37.9265 41.3598 38.0952 41.7079C38.2639 42.0559 38.5085 42.3361 38.8291 42.5483C39.1496 42.7521 39.5249 42.854 39.9551 42.854C40.3431 42.854 40.6932 42.7691 41.0052 42.5993C41.3258 42.4295 41.5788 42.1748 41.7644 41.8352L42.726 42.3319C42.456 42.8667 42.0807 43.2742 41.5999 43.5544C41.1191 43.8345 40.5751 43.9746 39.9678 43.9746ZM37.9434 40.2179H41.5999C41.583 39.8868 41.4945 39.5939 41.3342 39.3393C41.1824 39.0846 40.9715 38.8893 40.7016 38.7535C40.4401 38.6176 40.1407 38.5497 39.8033 38.5497C39.4575 38.5497 39.1496 38.6219 38.8797 38.7662C38.6182 38.9105 38.4073 39.11 38.247 39.3647C38.0952 39.6194 37.994 39.9038 37.9434 40.2179Z\" fill=\"#E84848\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k6x7ie\",layoutDependency:layoutDependency,layoutId:\"ooyVs2JZp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m3tqlv\",layoutDependency:layoutDependency,layoutId:\"fO4hzsVDL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(232, 72, 72))\"},children:\"Site\"})}),className:\"framer-5jxb0j\",\"data-framer-name\":\"Anasayfa\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"kXmCuXXZu\",style:{\"--extracted-r6o4lv\":\"rgb(232, 72, 72)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(232, 72, 72))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"cj4770MQ7\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gdgdoi\",\"data-styles-preset\":\"eFZUs02d6\",children:\"Ana Sayfa\"})})})}),className:\"framer-1azyf3k\",\"data-framer-name\":\"Anasayfa\",fonts:[\"FS;Satoshi-light\"],layoutDependency:layoutDependency,layoutId:\"cj4770MQ7\",style:{\"--extracted-r6o4lv\":\"rgb(232, 72, 72)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(232, 72, 72))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n3zgcaeGQ\"},nodeId:\"O43CQxTjY\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gdgdoi\",\"data-styles-preset\":\"eFZUs02d6\",children:\"\\xc7al\u0131\u015Fmalar\"})})})}),className:\"framer-h32c3d\",\"data-framer-name\":\"\\xc7al\u0131\u015Fmalar\",fonts:[\"FS;Satoshi-light\"],layoutDependency:layoutDependency,layoutId:\"O43CQxTjY\",style:{\"--extracted-r6o4lv\":\"rgb(232, 72, 72)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(232, 72, 72))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oggG8YZDT\"},nodeId:\"xh1u2nhqF\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gdgdoi\",\"data-styles-preset\":\"eFZUs02d6\",children:\"\\xd6d\\xfcller\"})})})}),className:\"framer-1h5kz21\",\"data-framer-name\":\"\\xd6d\\xfcller\",fonts:[\"FS;Satoshi-light\"],layoutDependency:layoutDependency,layoutId:\"xh1u2nhqF\",style:{\"--extracted-r6o4lv\":\"rgb(232, 72, 72)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(232, 72, 72))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u6hU8G1Ue\"},nodeId:\"sJFIY4cRJ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gdgdoi\",\"data-styles-preset\":\"eFZUs02d6\",children:\"Hakk\u0131mda\"})})})}),className:\"framer-1uyrbn7\",\"data-framer-name\":\"Hakk\u0131mda\",fonts:[\"FS;Satoshi-light\"],layoutDependency:layoutDependency,layoutId:\"sJFIY4cRJ\",style:{\"--extracted-r6o4lv\":\"rgb(232, 72, 72)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(232, 72, 72))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"frKcwcKGt\"},nodeId:\"a41owdh9r\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gdgdoi\",\"data-styles-preset\":\"eFZUs02d6\",children:\"\u0130leti\u015Fim\"})})})}),className:\"framer-wf3xu0\",\"data-framer-name\":\"\u0130leti\u015Fim\",fonts:[\"FS;Satoshi-light\"],layoutDependency:layoutDependency,layoutId:\"a41owdh9r\",style:{\"--extracted-r6o4lv\":\"rgb(232, 72, 72)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rezxuy\",layoutDependency:layoutDependency,layoutId:\"lD5dmX5r9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(232, 72, 72))\"},children:\"Sosyal Medya\"})}),className:\"framer-ddemyz\",\"data-framer-name\":\"Anasayfa\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"kebxCXLGN\",style:{\"--extracted-r6o4lv\":\"rgb(232, 72, 72)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j5jc9\",\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"FV2R_LKO8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(140, 140, 140))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/sedatgokce.art/\",nodeId:\"p9Wben944\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gdgdoi\",\"data-styles-preset\":\"eFZUs02d6\",children:\"Instagram\"})})})}),className:\"framer-1dtnq5r\",\"data-framer-name\":\"Instagram\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"p9Wben944\",style:{\"--extracted-r6o4lv\":\"rgb(140, 140, 140)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1td0en7\",\"data-framer-name\":\"Arrow 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"e64afdiZD\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 23\"><path d=\"M 18.155 7.243 C 18.155 6.999 17.958 6.802 17.715 6.802 L 13.751 6.802 C 13.508 6.802 13.311 6.999 13.311 7.243 C 13.311 7.486 13.508 7.683 13.751 7.683 L 17.274 7.683 L 17.274 11.206 C 17.274 11.45 17.472 11.647 17.715 11.647 C 17.958 11.647 18.155 11.45 18.155 11.206 Z M 6.575 19.005 L 18.026 7.554 L 17.403 6.931 L 5.952 18.382 Z\" fill=\"var(--token-46669bd6-70fd-4cc4-a7fa-d789fe4656aa, rgb(232, 72, 72)) /* {&quot;name&quot;:&quot;K\u0131rm\u0131z\u0131&quot;} */\"></path></svg>',svgContentId:9493950145,withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-72kclw\",\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"qiBggtIs1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(140, 140, 140))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://x.com/sedatgokce_art?t=VehY_CKODefR5seQcudZxA&s=09\",nodeId:\"aHVMcM7Te\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gdgdoi\",\"data-styles-preset\":\"eFZUs02d6\",children:\"X\"})})})}),className:\"framer-pw23uq\",\"data-framer-name\":\"Instagram\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"aHVMcM7Te\",style:{\"--extracted-r6o4lv\":\"rgb(140, 140, 140)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tuorvq\",\"data-framer-name\":\"Arrow 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WYk7ZZ11M\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 23\"><path d=\"M 18.155 7.243 C 18.155 6.999 17.958 6.802 17.715 6.802 L 13.751 6.802 C 13.508 6.802 13.311 6.999 13.311 7.243 C 13.311 7.486 13.508 7.683 13.751 7.683 L 17.274 7.683 L 17.274 11.206 C 17.274 11.45 17.472 11.647 17.715 11.647 C 17.958 11.647 18.155 11.45 18.155 11.206 Z M 6.575 19.005 L 18.026 7.554 L 17.403 6.931 L 5.952 18.382 Z\" fill=\"var(--token-46669bd6-70fd-4cc4-a7fa-d789fe4656aa, rgb(232, 72, 72)) /* {&quot;name&quot;:&quot;K\u0131rm\u0131z\u0131&quot;} */\"></path></svg>',svgContentId:9493950145,withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kysqvf\",\"data-framer-name\":\"Facbook\",layoutDependency:layoutDependency,layoutId:\"V5W1hwtxI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(140, 140, 140))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://m.facebook.com/sedatgokce.art\",nodeId:\"PBjy0cflz\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gdgdoi\",\"data-styles-preset\":\"eFZUs02d6\",children:\"Facebook\"})})})}),className:\"framer-1hp8t5d\",\"data-framer-name\":\"Facebook\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"PBjy0cflz\",style:{\"--extracted-r6o4lv\":\"rgb(140, 140, 140)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1agz1vh\",\"data-framer-name\":\"Arrow 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Tc0y0xR0y\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 23\"><path d=\"M 18.155 7.243 C 18.155 6.999 17.958 6.802 17.715 6.802 L 13.751 6.802 C 13.508 6.802 13.311 6.999 13.311 7.243 C 13.311 7.486 13.508 7.683 13.751 7.683 L 17.274 7.683 L 17.274 11.206 C 17.274 11.45 17.472 11.647 17.715 11.647 C 17.958 11.647 18.155 11.45 18.155 11.206 Z M 6.575 19.005 L 18.026 7.554 L 17.403 6.931 L 5.952 18.382 Z\" fill=\"var(--token-46669bd6-70fd-4cc4-a7fa-d789fe4656aa, rgb(232, 72, 72)) /* {&quot;name&quot;:&quot;K\u0131rm\u0131z\u0131&quot;} */\"></path></svg>',svgContentId:9493950145,withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17aeug4\",\"data-framer-name\":\"Youtube\",layoutDependency:layoutDependency,layoutId:\"zAXHxlBSv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(140, 140, 140))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://youtube.com/@sedatgokce_art?si=XLsNvJ306TOu6_xk\",nodeId:\"GpG5QzmyE\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gdgdoi\",\"data-styles-preset\":\"eFZUs02d6\",children:\"Youtube\"})})})}),className:\"framer-1hqz9r3\",\"data-framer-name\":\"Youtube\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"GpG5QzmyE\",style:{\"--extracted-r6o4lv\":\"rgb(140, 140, 140)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oj9fjc\",\"data-framer-name\":\"Arrow 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OoiqJfrgo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 23\"><path d=\"M 18.155 7.243 C 18.155 6.999 17.958 6.802 17.715 6.802 L 13.751 6.802 C 13.508 6.802 13.311 6.999 13.311 7.243 C 13.311 7.486 13.508 7.683 13.751 7.683 L 17.274 7.683 L 17.274 11.206 C 17.274 11.45 17.472 11.647 17.715 11.647 C 17.958 11.647 18.155 11.45 18.155 11.206 Z M 6.575 19.005 L 18.026 7.554 L 17.403 6.931 L 5.952 18.382 Z\" fill=\"var(--token-46669bd6-70fd-4cc4-a7fa-d789fe4656aa, rgb(232, 72, 72)) /* {&quot;name&quot;:&quot;K\u0131rm\u0131z\u0131&quot;} */\"></path></svg>',svgContentId:9493950145,withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16zf95g\",layoutDependency:layoutDependency,layoutId:\"KyXCSDBLS\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(232, 72, 72))\"},children:\"2025 T\\xfcm Haklar\u0131 Sakl\u0131d\u0131r\"})}),className:\"framer-16msr3m\",\"data-framer-name\":\"2023 T\\xfcm Haklar\u0131 Sakl\u0131d\u0131r\",fonts:[\"FS;Satoshi-light\"],layoutDependency:layoutDependency,layoutId:\"Uvrlbt70Y\",style:{\"--extracted-r6o4lv\":\"rgb(232, 72, 72)\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vblgm6-container\",layoutDependency:layoutDependency,layoutId:\"rZNPKfrDC-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"rZNPKfrDC\",layoutId:\"rZNPKfrDC\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-m30ev\",\"data-framer-name\":\"Frame 1029\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"fRp5xvVs1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 395 413\"><path d=\"M 305.267 80.845 C 307.186 82.764 310.442 83.205 312.911 84.039 C 317.007 85.42 320.94 87.223 324.844 89.06 C 330.128 91.549 335.284 94.126 340.353 97.004 C 343.548 98.818 347.14 99.875 350.319 101.671 C 352.344 102.815 354.183 104.449 356.326 105.356 C 357.447 105.83 356.648 103.635 356.38 103.008 C 355.686 101.381 354.602 100.017 353.431 98.723 C 349.273 94.128 343.195 91.221 338.114 87.778 C 334.987 85.659 331.712 83.748 328.694 81.473 C 326.014 79.453 323.398 77.372 320.693 75.386 C 315.724 71.736 311.193 67.426 306.058 64.004 C 304.751 63.133 303.706 62.29 302.509 61.302 C 301.184 60.208 300.46 58.906 299.369 57.617 C 298.411 56.486 297.497 53.764 297.403 52.349 C 297.383 52.049 297.418 53.042 297.457 53.195 C 298.132 55.821 298.948 52.653 299.423 51.503 C 300.452 49.012 301.486 46.458 301.58 43.724 C 301.623 42.484 301.415 43.751 301.826 43.751 C 303.384 43.751 305.873 41.828 307.014 40.913 C 307.233 40.737 308.793 38.806 308.952 38.947 C 310.063 39.934 311.453 39.562 312.857 39.275 C 316.73 38.482 320.546 37.506 324.461 36.928 C 329.242 36.222 334.244 36.158 339.069 36.136 C 344.05 36.114 349.116 35.965 354.06 36.682 C 358.382 37.309 362.555 38.65 366.81 39.575 C 370.411 40.358 374.09 40.533 377.705 41.158 C 381.039 41.735 384.262 43.027 387.535 43.874 C 387.932 43.977 388.889 44.333 388.763 43.942 C 388.599 43.428 388.064 42.918 387.712 42.537 C 386.249 40.952 384.63 39.465 383.03 38.019 C 378.501 33.928 372.38 31.099 366.702 29.012 C 359.535 26.378 351.932 25.277 344.421 24.099 C 339.243 23.287 334.149 23.179 328.939 22.871 C 323.72 22.562 318.458 22.471 313.239 22.816 C 310.933 22.969 307.647 22.666 305.512 23.717 C 304.478 24.226 304.976 24.313 305.812 24.222 C 307.266 24.064 308.728 24.017 310.181 23.853 C 312.614 23.58 315.029 23.185 317.444 22.789 C 317.865 22.72 319.073 22.58 318.673 22.434 C 317.011 21.83 314.142 22.354 312.366 22.38 C 310.59 22.405 313.518 22.85 313.977 22.816 C 316.912 22.603 319.982 22.376 322.85 21.697 C 325.783 21.003 315.287 21.797 314.304 24.645 C 313.501 26.974 311.71 28.373 310.318 30.295 C 307.441 34.267 303.773 37.604 300.543 41.295 C 299.301 42.713 298.1 44.145 297.266 45.853 C 296.998 46.403 296.894 47.027 296.583 47.559 C 295.945 48.654 297.354 45.141 297.84 43.97 C 299.954 38.872 303.06 34.92 307.123 31.223 C 309.208 29.326 315.506 23.689 313.513 25.682 C 311.256 27.938 309.035 30.236 306.714 32.424 C 304.608 34.409 301.363 36.632 300.051 39.302 C 298.519 42.423 297.935 46.224 297.212 49.592 C 296.015 55.167 295.627 60.986 295.983 66.679 C 295.992 66.826 296.321 68.852 296.447 68.521 C 296.956 67.185 297.293 65.715 297.649 64.332 C 298.57 60.751 298.645 57.063 299.068 53.414 C 299.146 52.746 299.209 54.751 299.273 55.42 C 299.562 58.433 299.975 61.454 300.461 64.441 C 300.992 67.711 301.505 71.096 302.441 74.281 C 302.558 74.683 303.515 77.566 303.546 75.522 C 303.586 72.96 303.561 70.169 302.863 67.689 C 302.128 65.076 303.545 73.108 304.393 75.686 C 304.947 77.371 305.678 79.237 306.959 80.517 C 307.046 80.604 307.906 81.421 307.969 80.845 C 308.086 79.794 307.732 78.859 307.233 77.952 C 306.594 76.791 306.247 76.786 306.905 78.116 C 309.272 82.901 312.736 85.692 317.608 87.914 C 324.694 91.146 332.253 92.378 339.534 94.847 C 343.604 96.228 347.951 96.529 352.067 97.795 C 353.021 98.088 352.836 97.718 352.23 97.112 C 350.603 95.486 348.747 94.033 346.906 92.664 C 338.168 86.162 328.039 81.395 318.345 76.505 C 316.169 75.407 313.905 74.421 311.806 73.175 C 311.333 72.894 311.506 72.729 311.792 72.984 C 315.803 76.564 319.916 80.04 323.97 83.574 C 326.565 85.836 329.117 88.126 331.861 90.207 C 332.249 90.502 336.399 93.379 336.311 93.046 C 335.907 91.503 334.496 89.074 333.144 88.133 C 330.83 86.521 336.408 92.849 338.66 94.547 C 342.849 97.705 357.3 104.182 352.694 101.671 C 352.044 101.316 353.419 103.427 352.913 102.217 C 352.073 100.208 350.265 98.689 348.612 97.359 C 345.157 94.576 341.298 92.285 337.513 89.989 C 329.867 85.351 321.751 81.547 314.113 76.915 C 311.102 75.088 309.203 72.189 305.895 70.746 C 303.812 69.838 302.088 69.224 300.515 67.443 C 299.118 65.86 299.336 62.675 299.123 60.701 C 298.33 53.329 297.298 45.936 298.74 38.593 C 299.939 32.495 305.745 30.487 310.945 28.657 C 316.067 26.856 321.249 27.324 326.564 26.992 C 328.039 26.9 329.717 26.818 327.219 26.61 C 323.525 26.302 319.524 27.009 316.079 28.33 C 315.5 28.552 312.747 29.333 312.543 30.049 C 312.491 30.231 312.922 30.009 313.103 29.954 C 313.943 29.695 314.774 29.406 315.615 29.149 C 322.491 27.043 329.608 26.895 336.749 27.102 C 340.91 27.222 345.929 27.215 349.636 29.449 C 352.362 31.091 354.847 32.287 358.019 32.997 C 359.987 33.438 361.987 33.744 363.985 34.021 C 364.747 34.126 365.664 34.015 366.401 34.225 C 368.375 34.789 362.453 33.086 360.449 32.642 C 345.421 29.317 329.905 26.697 314.468 27.757 C 312.607 27.884 309.901 28.165 308.024 28.412 C 307.323 28.504 305.419 28.615 304.652 29.108 C 304.393 29.275 306 29.688 306.031 29.695 C 308.08 30.13 310.271 30.043 312.352 30.118 C 316.681 30.273 321.004 30.225 325.335 30.186 C 335.902 30.089 346.529 30.019 357.063 30.991 C 359.379 31.205 363.237 31.273 365.145 33.079 C 365.798 33.698 364.893 38.166 366.702 37.31 C 368.065 36.664 367.681 35.337 366.729 34.417 C 364.857 32.607 362.06 31.746 359.657 30.964 C 350.815 28.086 341.291 27.056 332.107 25.928 C 325.109 25.069 317.992 24.489 310.945 25.136 C 308.681 25.344 305.509 25.618 303.628 27.129 C 302.897 27.716 305.849 27.893 305.976 27.907 C 309.442 28.282 312.925 28.269 316.406 28.275 C 328.004 28.296 339.398 28.199 350.92 29.695 C 355.516 30.291 359.604 31.024 362.633 34.717 C 365.127 37.757 369.104 35.781 372.244 35.153 C 373.761 34.85 376.304 33.95 377.814 34.471 C 379.088 34.91 380.006 36.382 380.763 37.419 C 380.964 37.694 383.158 40.648 382.375 39.22 C 380.759 36.28 374.946 35.55 372.026 35.699 C 370.264 35.79 368.198 37.31 370.688 38.347 C 372.043 38.912 377.991 39.01 374.592 36.928 C 372.282 35.512 369.313 35.155 366.674 34.962 C 362.109 34.63 357.231 34.671 352.831 36.082 C 351.676 36.452 348.51 38.289 349.595 37.747 C 350.015 37.537 350.684 36.556 350.729 36.082 C 350.874 34.509 347.252 33.338 346.209 33.065 C 343.74 32.419 340.851 32.616 338.332 32.806 C 331.08 33.353 323.826 36.152 317.308 39.193 C 315.213 40.17 313.179 41.265 311.137 42.346 C 310.521 42.671 309.107 43.231 310.755 42.441 C 318.293 38.83 325.868 35.894 333.827 33.297 C 343.188 30.243 353.382 28.587 363.261 29.067 C 363.751 29.091 364.798 29.595 363.998 29.995\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12554622489,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oiztl2-container\",layoutDependency:layoutDependency,layoutId:\"Wg8vvSXqx-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"Wg8vvSXqx\",layoutId:\"Wg8vvSXqx\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lcimgo\",\"data-framer-name\":\"Frame 1041\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"dFzdjlWOd\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 394 413\"><path d=\"M 294.043 95.424 C 294.043 100.818 294.136 106.21 295.037 111.544 C 295.672 115.298 297.098 118.769 297.913 122.443 C 298.33 124.326 297.35 118.596 296.681 116.788 C 295.05 112.379 292.973 107.941 290.497 103.961 C 289.118 101.742 287.636 99.57 286.065 97.483 C 285.611 96.878 284.431 95.211 284.379 95.965 C 283.917 102.675 286.116 110.798 288.184 117.069 C 288.185 117.073 290.815 122.518 289.352 119.127 C 288.278 116.642 286.675 114.476 284.898 112.454 C 283.573 110.946 282.104 109.666 280.552 108.403 C 278.814 106.987 280.674 110.863 280.725 111.003 C 283.23 117.816 295.872 135.711 292.703 129.181 C 291.197 126.08 288.697 123.468 286.195 121.164 C 284.253 119.376 282.17 117.794 279.947 116.376 C 279.046 115.801 277.576 114.558 276.444 114.512 C 274.529 114.435 278.705 121.88 278.953 122.334 C 280.812 125.744 282.862 129.042 284.747 132.431 C 285.85 134.416 280.754 130.026 280.422 129.744 C 276.292 126.239 272.183 122.602 267.927 119.257 C 267.18 118.671 266.017 117.615 265.008 117.459 C 263.787 117.271 265.639 120.935 265.7 121.077 C 267.89 126.178 269.888 131.344 272.034 136.461 C 272.159 136.76 274.57 141.513 273.158 140.881 C 271.503 140.139 270.119 138.542 268.791 137.371 C 266.176 135.065 263.536 132.781 260.879 130.524 C 258.862 128.811 256.804 127.154 254.674 125.584 C 253.735 124.892 251.546 122.786 250.22 122.703 C 249.062 122.63 250.827 124.956 251.301 126.018 C 252.59 128.906 253.695 131.87 254.955 134.771 C 256.188 137.611 257.602 140.372 258.997 143.134 C 259.749 144.622 260.496 146.732 261.635 147.988 C 262.324 148.747 261.431 145.93 261.116 144.955 C 259.263 139.208 257.211 133.537 255.474 127.751 C 254.231 123.614 251.115 116.887 252.404 112.367 C 252.456 112.182 253.571 110.339 253.571 111.024 C 253.571 119.87 251.099 128.686 249.766 137.371 C 249.751 137.47 250.069 132.888 250.069 131.629 C 250.069 126.329 249.324 121.437 247.561 116.419 C 247.14 115.221 246.76 113.626 246.026 112.562 C 245.34 111.569 245.787 114.974 245.831 116.181 C 246.092 123.298 247.226 130.438 248.123 137.501 C 248.367 139.422 248.586 141.354 248.901 143.264 C 249.034 144.072 249.335 145.467 249.204 143.524 C 248.889 138.872 248.409 134.157 246.955 129.701 C 245.56 125.423 247.597 131.873 247.82 132.517 C 250.121 139.159 253.039 145.503 256.446 151.649 C 257.01 152.665 259.833 158.495 259.797 154.444 C 259.75 149.017 257.689 143.516 256.295 138.324 C 255.549 135.543 253.089 127.278 254.133 129.961 C 256.551 136.17 259.968 142.002 263.213 147.814 C 265.678 152.23 268.33 156.655 271.213 160.814 C 273.299 163.826 270.945 158.561 270.694 157.738 C 269.34 153.299 267.853 149.175 265.721 145.041 C 265.103 143.841 263.709 140.103 263.862 141.444 C 264.191 144.326 265.954 147.434 267.019 150.068 C 269.36 155.862 271.374 161.89 274.607 167.271 C 274.862 167.695 279.513 173.557 279.623 172.731 C 279.989 169.981 279.503 166.955 278.606 164.368 C 277.855 162.198 276.986 160.044 275.991 157.976 C 275.845 157.672 275.372 156.692 275.083 156.329 C 274.97 156.188 275.028 156.699 275.083 156.871 C 276.053 159.951 277.365 163.158 279.169 165.841 C 279.776 166.744 280.48 167.997 281.33 168.701 C 282.267 169.477 280.517 166.397 279.947 165.321 C 278.495 162.582 276.708 158.637 274.283 156.611 C 274.178 156.523 276.005 162.926 276.294 164.194 C 276.487 165.045 276.634 165.903 276.834 166.751 C 277.254 168.54 275.632 163.274 274.888 161.594 C 271.61 154.194 267.488 147.123 263.949 139.841 C 260.797 133.358 257.461 125.19 258.673 117.784 C 260.157 108.72 272.767 110.78 279.255 108.597 C 282.383 107.545 285.29 105.369 286.822 102.422 C 287.482 101.152 288.019 99.829 288.357 98.435 C 288.449 98.056 288.595 96.715 288.595 98.003 C 288.595 102.1 288.264 106.319 287.428 110.331 C 287.227 111.292 286.936 114.004 286.498 113.126 C 285.988 112.104 286.717 109.758 286.822 108.705 C 286.965 107.271 287.038 105.836 287.038 104.394 C 287.038 104.243 286.786 100.702 286.649 100.797 C 285.64 101.493 286.268 107.032 286.26 107.991 C 286.241 110.201 286.197 112.38 285.957 114.578 C 285.716 116.783 285.893 112.743 285.785 112.107 C 285.635 111.229 285.631 110.634 284.703 110.634\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(135,135,135)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10970446261,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vcg51k-container\",layoutDependency:layoutDependency,layoutId:\"fDsGYnCsD-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"fDsGYnCsD\",layoutId:\"fDsGYnCsD\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12cjyqk\",\"data-framer-name\":\"Frame 1031\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NDCgkA_sx\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 395 413\"><path d=\"M 170.412 251.315 C 164.391 257.334 156.745 259.368 148.407 260.243 C 146.095 260.486 142.554 261.323 140.258 260.749 C 139.39 260.532 147.509 257.47 148.176 257.298 C 155.898 255.301 164.427 254.175 171.448 250.164 C 172.753 249.419 176.093 246.485 174.693 247.035 C 172.128 248.042 170.007 250.234 167.374 251.315 C 160.449 254.156 153.089 254.816 145.691 255.227 C 142.709 255.392 133.751 255.457 136.737 255.457 C 142.591 255.457 148.359 255.021 154.069 253.662 C 158.257 252.665 162.441 251.467 166.499 250.026 C 168.159 249.437 170.218 248.778 171.494 247.449 C 173.259 245.611 168.596 245.93 167.88 245.93 C 163.15 245.93 158.316 246.121 153.747 247.449 C 153.195 247.61 149.891 248.37 149.511 249.129 C 149.288 249.576 150.508 249.237 151.008 249.221 C 152.544 249.172 153.438 249.118 155.036 249.014 C 161.879 248.566 168.424 247.157 175.131 245.792 C 177.573 245.295 180.021 244.809 182.474 244.366 C 183.264 244.223 182.866 244.274 182.428 244.274\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(135,135,135)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11110465959,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mukmci-container\",layoutDependency:layoutDependency,layoutId:\"J9dl7NIdM-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"J9dl7NIdM\",layoutId:\"J9dl7NIdM\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-45yqi5\",\"data-framer-name\":\"Frame 1037\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kQuM4inD5\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 395 413\"><path d=\"M 220.367 313.556 C 214.933 308.124 207.63 305.346 200.692 302.301 C 199.913 301.959 198.055 299.629 199.822 300.116 C 203.184 301.04 206.532 302.823 209.742 304.157 C 214.355 306.075 217.555 308.576 221.425 311.418 C 222.911 312.51 224.414 313.153 225.962 314.073 C 228.178 315.392 224.97 314.114 224.364 313.792 C 221.489 312.265 218.497 311.171 215.501 309.938 C 213.077 308.94 210.818 307.43 208.331 306.601 C 205.633 305.702 210.834 309.907 211.387 310.267 C 212.381 310.913 212.56 311.733 211.2 310.972 C 208.12 309.248 204.896 307.839 201.703 306.343 C 199.882 305.489 194.874 302.5 196.108 304.087 C 197.637 306.052 199.356 307.966 201.091 309.75 C 202.63 311.332 204.043 313.277 205.041 315.248 C 205.144 315.453 206.813 319.436 206.122 319.196 C 204.426 318.609 202.664 316.813 201.115 315.883 C 198.314 314.204 195.218 312.989 192.559 311.089 C 191.782 310.535 190.902 309.809 189.902 309.75 C 189.613 309.733 191.532 310.92 191.971 311.207 C 194.037 312.559 196.254 313.349 198.505 314.309 C 199.137 314.578 200.99 315.732 200.057 314.309 C 195.788 307.794 189.046 302.891 182.967 298.165 C 181.321 296.885 179.511 295.536 178.478 293.677 C 178.175 293.132 177.892 292.099 177.537 291.656 C 176.629 290.52 175.535 289.543 174.646 288.342 C 173.098 286.253 171.368 284.311 169.897 282.162 C 169.744 281.939 169.278 280.654 169.639 281.645 C 170.685 284.523 173.395 287.623 175.281 289.964 C 178.49 293.949 181.907 297.697 185.342 301.479 C 187.287 303.62 188.755 306.485 190.936 308.27 C 192.206 309.308 193.116 310.385 194.557 308.904 C 195.839 307.585 196.742 305.56 197.33 303.828 C 197.756 302.574 197.417 301.046 198.882 302.136 C 200.39 303.258 204.188 305.679 202.996 302.301 C 202.337 300.435 200.809 299.082 199.446 297.719 C 198.987 297.26 195.267 293.578 197.095 295.369 C 198.572 296.815 200.198 298.039 201.938 299.152 C 204.644 300.884 201.65 296.98 201.068 296.191 C 196.824 290.444 190.315 286.367 185.036 281.645 C 183.428 280.207 181.741 279.153 179.747 278.355 C 178.705 277.939 181.252 280.163 182.309 280.541 C 183.809 281.076 185.529 281.658 187.128 281.81 C 188.95 281.983 189.388 279.978 191.031 279.53 C 202.064 276.523 214.238 278.48 225.539 276.758 C 230.337 276.026 235.219 275.758 239.784 274.008 C 241.339 273.413 243.18 272.847 244.25 271.47 C 244.895 270.642 244.596 268.188 243.217 269.567 C 241.915 270.868 241.973 273.566 241.759 275.254 C 241.142 280.095 242.45 285.433 244.979 289.588 C 247.125 293.112 250.293 295.705 254.382 296.403 C 255.725 296.632 258.323 297.14 259.436 296.027 C 259.846 295.617 255.432 295.183 255.064 295.04 C 254.408 294.785 257.307 297.896 257.838 298.259 C 261.459 300.731 266.797 301.617 270.884 303.076 C 273.076 303.859 274.284 303.544 272.318 301.619 C 269.757 299.112 266.154 297.791 262.962 296.308 C 260.914 295.357 258.343 293.348 256.004 293.348 C 253.219 293.348 261.387 294.914 264.161 295.157 C 265.519 295.276 266.865 295.355 268.228 295.369 C 269.043 295.377 271.249 295.851 270.672 295.274 C 270.245 294.848 268.921 294.944 268.369 294.852 C 268.25 294.832 266.725 294.634 266.817 294.711 C 269.253 296.74 276.3 296.137 278.736 294.311 C 280.169 293.237 272.029 291.904 271.001 291.562 C 268.872 290.852 275.48 291.139 277.725 291.139 C 278.216 291.139 283.588 291.199 283.32 290.716 C 282.432 289.118 278.537 287.812 277.02 287.121 C 272.797 285.196 268.602 283.873 264.067 282.914 C 263.016 282.692 260.186 281.542 260.894 282.351 C 261.178 282.676 261.994 282.895 261.74 282.162 C 261.267 280.796 259.639 279.662 258.567 278.826 C 254.92 275.98 251.047 273.457 247.26 270.813 C 245.088 269.296 239.118 266.001 238.679 263.152 C 238.494 261.948 240.846 264.289 241.83 265.008 C 244.503 266.965 247.11 268.796 250.08 270.295 C 251.948 271.238 255.869 273.355 252.901 270.037 C 251.006 267.918 249.25 266.427 246.883 265.008 C 245.723 264.313 247.729 264.914 248.505 264.914 C 252.424 264.914 256.665 255.221 258.214 252.93 C 260.988 248.826 264.372 245.242 267.241 241.228 C 267.909 240.292 268.513 239.295 269.027 238.267 C 269.2 237.921 269.176 236.912 269.45 237.185 C 270.699 238.433 267.739 245.644 268.204 247.737 C 268.274 248.05 272.423 242.627 272.788 241.979 C 275.093 237.895 276.861 233.896 277.913 229.337 C 278.386 227.286 278.732 226.218 279.699 228.42 C 280.835 231.007 283.046 234.089 285.482 235.611 C 289.323 238.011 289.786 229.012 290.16 226.987 C 290.978 222.561 290.663 217.854 290.183 213.405 C 289.957 211.297 288.478 205.101 289.008 207.154 C 289.137 207.652 289.34 209.287 289.972 208.165 C 291.386 205.652 292.051 202.309 292.511 199.517 C 292.832 197.569 294.442 180.68 297.048 181.259 C 298.448 181.569 301.127 185.003 302.031 182.245 C 305.225 172.5 304.675 162.132 305.651 152.096 C 306.118 147.293 307.473 151.653 309.036 153.577 C 310.895 155.864 310.912 153.756 311.669 151.556 C 314.44 143.511 313.879 134.634 313.879 126.248 C 313.879 124.539 313.619 124.007 314.937 124.885 C 316.145 125.69 316.458 121.625 316.582 120.866 C 316.839 119.298 315.972 103.391 316.841 103.101 C 317.574 102.857 321.918 110.676 321.918 107.073 C 321.918 99.273 318.051 94.081 312.844 88.438 C 310.764 86.183 307.214 83.668 305.839 80.918\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12132059647,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s9slqg-container\",layoutDependency:layoutDependency,layoutId:\"fIXAW8GSy-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"fIXAW8GSy\",layoutId:\"fIXAW8GSy\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19kzmme\",\"data-framer-name\":\"Frame 1030\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"YEpAZjyH5\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 395 413\"><path d=\"M 222.618 150.255 C 222.442 160.269 220.664 168.918 215.574 177.568 C 213.213 181.582 210.958 185.63 207.449 188.774 C 205.074 190.9 205.569 188.356 205.676 186.334 C 206.293 174.785 209.971 163.507 213.25 152.51 C 213.558 151.477 215.91 144.541 214.447 149.565 C 211.981 158.029 208.956 165.574 204.526 173.288 C 202.083 177.541 199.508 182.25 196.055 185.828 C 195.567 186.334 194.067 187.785 193.96 186.196 C 193.621 181.104 196.287 175.136 197.758 170.435 C 199.104 166.134 200.75 161.975 202.247 157.733 C 202.862 155.992 201.006 161.212 200.336 162.933 C 198.06 168.785 195.305 174.515 192.05 179.892 C 190.345 182.708 194.384 173.717 195.917 170.803 C 197.971 166.898 200.376 163.268 203.006 159.735 C 205.505 156.379 201.926 164.096 201.786 164.406 C 200.337 167.627 198.485 170.407 196.608 173.357 C 194.916 176.013 201.592 169.508 204.066 167.558 C 208.014 164.446 212.229 161.699 216.173 158.584 C 217.796 157.303 217.765 157.359 216.68 159.045 C 215.024 161.614 213.479 164.252 211.938 166.891 C 211.765 167.188 208.506 171.819 208.761 172.713 C 208.813 172.895 209.129 172.604 209.291 172.506 C 210.149 171.986 211.924 170.564 212.513 170.089 C 215.11 167.997 217.612 165.795 220.04 163.509 C 220.31 163.254 224.877 158.656 222.02 161.115 C 218.886 163.813 215.608 166.326 212.444 168.985 C 211.586 169.706 207.763 173.707 208.071 173.495 C 211.316 171.249 213.921 168.173 217.186 165.901 C 217.801 165.474 227.057 159.365 226.945 159.229 C 226.284 158.42 215.066 163.203 214.147 163.509 C 208.781 165.291 202.888 167.853 197.252 168.617 C 196.675 168.695 197.931 167.653 198.38 167.283 C 200.109 165.853 201.86 164.445 203.651 163.094 C 210.815 157.695 219.162 151.805 228.005 149.84\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(135,135,135)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12407685145,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9vycnm-container\",layoutDependency:layoutDependency,layoutId:\"XdHmdiloH-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"XdHmdiloH\",layoutId:\"XdHmdiloH\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-b7jw3o\",\"data-framer-name\":\"Frame 1035\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AzJIJS0kN\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 394 413\"><path d=\"M 49.748 308.374 C 49.206 310.728 46.92 313.054 45.211 314.584 C 40.191 319.08 33.001 323.067 26.122 323.235 C 18.844 323.413 22.136 317.053 25.79 314.308 C 32.366 309.364 40.182 305.999 47.037 301.442 C 56.768 294.974 67.196 288.568 75.422 280.149 C 77.96 277.551 80.189 274.3 80.678 270.611 C 82.115 259.772 70.855 271.654 68.893 275.158 C 67.852 277.016 61.533 289.521 67.62 287.58 C 76.734 284.673 84.519 277.832 90.14 270.279 C 91.276 268.752 93.133 265.669 92.574 263.569 C 91.966 261.283 86.211 264.61 85.492 265.288 C 83.306 267.348 81.381 270.285 80.069 272.996 C 79.095 275.01 82.991 269.607 84.551 268.005 C 94.302 257.997 105.003 246.92 109.561 233.404 C 110.576 230.391 109.065 232.852 108.537 233.764 C 106.841 236.694 105.316 239.721 103.641 242.664 C 99.972 249.105 95.941 255.525 91.578 261.517 C 91.277 261.931 85.523 269.534 84.717 268.726 C 83.964 267.971 87.714 262.755 87.981 262.294 C 90.033 258.757 92.074 255.316 94.732 252.202 C 97.598 248.843 92.358 256.95 92.131 257.303 C 87.284 264.872 81.913 272.182 75.256 278.263 C 68.962 284.012 61.664 288.334 54.783 293.291 C 53.218 294.419 48.752 296.934 48.752 299.391 C 48.752 301.762 53.337 298.635 53.787 298.337 C 61.381 293.314 68.135 286.562 74.923 280.537 C 84.597 271.954 94.275 263.043 102.257 252.812 C 108.328 245.03 113.168 236.247 116.256 226.86 C 117.058 224.423 118.418 221.067 118.192 218.404 C 117.994 216.067 114.396 222.107 114.291 222.285 C 112.404 225.522 110.701 228.924 109.118 232.322 C 109.02 232.532 108.911 232.738 108.842 232.96 C 108.687 233.457 109.34 232.045 109.561 231.573 C 110.873 228.769 112.12 225.936 113.462 223.145 C 116.537 216.743 119.457 210.325 122.121 203.737 C 123.901 199.333 125.441 195.14 125.441 190.345 C 125.441 188.212 125.215 193.226 125.164 193.589 C 125.092 194.108 124.213 198.721 124.804 197.581 C 128.508 190.444 132.846 183.173 135.096 175.429 C 135.697 173.36 137.668 167.529 136.147 169.052 C 135.69 169.51 135.793 171.223 135.926 171.824 C 136.112 172.665 139.17 169.11 139.357 168.886 C 141.941 165.762 144.339 162.418 146.494 158.987 C 148.579 155.67 150.287 152.045 151.502 148.313 C 151.582 148.066 152.645 144.473 151.944 144.847 C 149.275 146.274 147.073 149.901 145.332 152.25 C 142.622 155.906 140.323 159.768 138.001 163.673 C 135.666 167.601 137.339 160.797 137.447 159.736 C 138.296 151.415 138.886 143.12 138.886 134.755 C 138.886 129.892 139.029 125.004 138.859 120.144 C 138.779 117.856 138.748 115.305 136.507 117.953 C 133.085 121.998 130.139 126.503 127.239 130.929 C 125.774 133.165 124.437 135.459 123.061 137.749 C 122.671 138.4 121.716 140.179 121.54 139.44 C 120.683 135.861 121.636 131.108 121.983 127.463 C 122.195 125.226 123.942 118.809 122.868 120.781 C 121.558 123.187 121.248 126.192 120.489 128.794 C 119.739 131.36 119.959 130.035 120.572 128.295 C 121.917 124.474 124.305 121.058 126.962 118.036 C 127.441 117.492 131.598 112.497 132.551 112.879 C 132.809 112.983 125.676 121.771 129.784 115.873 C 132.216 112.383 136.926 106.646 141.376 105.754\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9517301411,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17mixc2-container\",layoutDependency:layoutDependency,layoutId:\"kaIPNVUpF-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"kaIPNVUpF\",layoutId:\"kaIPNVUpF\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nu5klt\",\"data-framer-name\":\"Frame 1032\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LKbP0CSMb\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 395 413\"><path d=\"M 121.177 123.505 C 120.52 123.586 120.217 125.054 120.006 125.541 C 118.576 128.851 117.238 132.199 115.802 135.508 C 109.955 148.968 104.968 163.944 103.468 178.603 C 103.353 179.732 102.708 183.298 103.858 180.271 C 105.466 176.042 105.571 171.484 105.571 167.011 C 105.571 160.683 105.068 154.36 105.267 148.031 C 105.331 146.025 105.961 140.044 105.961 142.051 C 105.961 152.639 104.739 163.104 102.471 173.446 C 101.879 176.148 101.669 176.221 101.669 173.576 C 101.669 171.581 100.74 165.723 100.499 167.705 C 99.268 177.86 99.319 188.148 97.898 198.32 C 97.371 202.095 96.753 205.872 95.991 209.608 C 95.766 210.71 96.173 212.586 95.081 212.858 C 94.823 212.922 94.799 210.866 94.56 213.855 C 93.921 221.872 91.849 229.438 88.491 236.735 C 87.91 237.999 87.086 239.146 86.541 240.419 C 86.02 241.632 87.885 235.371 87.885 236.692 C 87.885 240.892 85.971 245.709 84.438 249.54 C 82.401 254.633 80.276 259.657 78.521 264.859 C 78.517 264.869 77.914 266.461 78.456 265.227 C 79.442 262.981 80.498 260.767 81.599 258.575 C 85.433 250.938 89.673 243.499 93.607 235.912 C 95.961 231.371 97.847 226.834 99.589 222.045 C 101.742 216.125 95.867 234.106 93.39 239.899 C 89.231 249.624 84.029 259.18 78.434 268.152 C 78.278 268.403 75.77 273.017 74.793 273.092 C 74.211 273.137 75.034 271.944 75.248 271.402 C 76.028 269.422 77.629 265.59 78.304 263.992 C 82.773 253.422 87.947 243.197 92.631 232.726 C 104.987 205.106 115.086 176.536 127.332 148.854 C 130.797 141.022 133.964 133.2 140.033 127.058 C 140.365 126.722 142.673 124.297 142.526 125.303 C 140.728 137.582 137.97 150.472 133.314 161.984 C 132.12 164.938 135.194 155.895 136.023 152.82 C 137.292 148.116 138.258 143.407 138.993 138.584 C 140.292 130.058 142.331 120.572 141.507 111.891 C 141.356 110.289 140.687 105.484 139.34 109.074 C 138.22 112.058 137.609 115.242 136.869 118.326 C 133.195 133.637 129.487 148.973 125.057 164.086 C 123.533 169.283 121.759 174.37 119.66 179.361 C 119.082 180.734 117.833 184.797 117.601 183.326 C 117.392 182.008 118.016 179.969 118.229 178.711 C 118.775 175.486 119.533 172.3 119.92 169.048 C 120.378 165.195 121.551 158.566 119.746 154.921 C 118.885 153.183 117.1 157.896 116.473 159.731 C 114.803 164.615 113.602 169.663 112.42 174.681 C 110.232 183.975 108.156 193.283 105.831 202.545 C 105.324 204.565 103.723 209.701 105.441 204.755 C 107.486 198.866 108.974 192.775 110.166 186.663 C 110.592 184.476 111.252 177.877 111.423 180.098 C 111.751 184.356 111.463 188.837 111.336 193.098 C 110.971 205.368 109.486 217.582 109.082 229.845 C 109.06 230.517 109.422 228.543 109.603 227.895 C 110.621 224.238 111.905 220.651 113.005 217.018 C 115.129 210.002 117.837 203.186 119.963 196.175 C 121.285 191.813 124.329 178.485 123.019 182.85 C 121.143 189.099 119.363 195.353 117.232 201.526 C 115.645 206.121 114.021 210.723 112.116 215.198 C 112.02 215.425 107.706 224.131 107.435 223.822 C 106.887 223.195 108.664 218.1 108.757 217.755 C 109.627 214.504 110.665 211.327 111.726 208.135 C 114.507 199.767 117.803 191.002 118.9 182.221 C 118.944 181.876 119.615 172.951 118.944 176.566 C 117.068 186.668 114.492 196.858 111.596 206.705 C 108.264 218.037 104.229 229.196 99.415 239.985 C 94.311 251.426 88.565 262.777 80.298 272.312 C 77.609 275.415 74.348 277.998 70.827 280.068 C 70.57 280.22 69.074 280.841 68.898 281.326 C 68.778 281.653 67.896 283.243 68.269 281.975 C 69.691 277.143 72.986 272.284 75.53 267.978 C 78.302 263.288 81.507 258.822 84.46 254.242 C 84.499 254.182 86.003 251.564 85.717 253.483 C 85.312 256.206 84.006 258.927 83.095 261.5 C 81.212 266.811 79.224 272.076 76.7 277.122 C 75.925 278.673 76.521 277.244 76.614 277.035 C 77.667 274.676 79.001 272.423 80.212 270.145\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(135,135,135)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9808166650,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q1qa30-container\",layoutDependency:layoutDependency,layoutId:\"lhr1okMJq-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"lhr1okMJq\",layoutId:\"lhr1okMJq\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14g0809\",\"data-framer-name\":\"Frame 1038\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wZ5E8tqwY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 395 413\"><path d=\"M 313.785 25.435 C 306.545 18.362 295.238 13.299 285.077 13.191 C 278.332 13.119 271.673 13.956 264.961 13.956 C 261.4 13.956 258.844 14.077 255.69 15.954 C 255.14 16.282 254.073 16.801 254.073 17.549 C 254.073 18.476 254.239 15.683 254.542 14.807 C 254.987 13.516 255.814 12.117 254.839 14.551 C 254.274 15.964 253.308 20.822 253.308 16.847 C 253.308 14.81 254.043 10.876 252.734 9.131 C 252.35 8.619 252.008 11.511 251.989 11.618 C 251.498 14.57 251.085 17.592 250.076 20.418 C 248.145 25.831 246.235 31.54 242.272 35.851 C 240.876 37.369 238.946 39.577 236.934 40.273 C 236.215 40.521 235.658 40.686 235.127 41.336 C 234.04 42.663 233.572 45.623 232.256 46.544 C 232.083 46.664 231.679 36.609 231.405 36.659 C 230.947 36.742 229.824 40.381 229.661 40.74 C 227.525 45.465 224.861 49.896 221.879 54.133 C 216.266 62.105 209.593 67.832 201.273 72.584 C 191.219 78.327 180.686 83.2 170.205 88.101 C 160.038 92.857 149.521 96.689 139.243 101.132 C 138.75 101.345 137.849 101.743 138.946 101.494 C 140.817 101.068 142.63 100.098 144.304 99.198 C 149.735 96.278 156.778 92.897 160.551 87.868 C 164.085 83.157 158.359 86.532 156.298 87.592 C 152.491 89.549 149.23 92.127 145.857 94.734 C 141.213 98.322 136.331 101.597 132.418 106.021 C 128.296 110.681 125.057 116.429 123.55 122.454 C 123.351 123.247 124.202 120.922 124.741 120.306 C 126.964 117.766 129.435 115.681 132.098 113.61 C 135.806 110.728 125.978 120.734 122.976 124.345 C 120.853 126.898 118.676 129.299 116.235 131.552 C 116.162 131.619 113.487 133.859 113.683 133.337 C 113.945 132.64 114.537 132.201 115.129 131.806\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10141034325,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-olgv09-container\",layoutDependency:layoutDependency,layoutId:\"hztG1yqtx-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"hztG1yqtx\",layoutId:\"hztG1yqtx\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gg2mmj\",\"data-framer-name\":\"Frame 1042\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GZWHd9Ojo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 395 413\"><path d=\"M 194.858 248.001 C 204.617 239.873 211.863 226.954 214.7 214.706 C 215.141 212.801 215.535 210.868 215.805 208.93 C 215.856 208.564 216.083 205.301 215.897 208.01 C 215.22 217.86 213.657 227.788 213.457 237.647 C 213.347 243.109 216.798 227.235 218.107 221.931 C 219.177 217.596 219.885 204.171 219.695 208.632 C 219.338 217.029 219.611 225.528 218.498 233.873 C 217.891 238.429 218.272 232.393 218.291 232.125 C 218.508 228.964 218.795 225.813 218.866 222.644 C 218.889 221.646 218.623 214.77 218.981 219.469 C 219.423 225.251 220.374 230.991 220.869 236.772 C 221.14 239.939 221.404 239.053 220.708 236.266 C 219.704 232.254 218.586 228.445 216.68 224.761 C 215.645 222.761 214.767 229.551 214.654 230.054 C 213.203 236.515 211.601 243.593 207.887 249.198 C 206.162 251.801 207.187 245 207.288 244.274 C 207.795 240.64 208.117 237.181 208.117 233.505\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(135,135,135)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12609252592,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tsj0bh-container\",layoutDependency:layoutDependency,layoutId:\"SEU3HhlTP-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"SEU3HhlTP\",layoutId:\"SEU3HhlTP\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1io2s17\",\"data-framer-name\":\"Frame 1036\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gE5JdYtX7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 394 413\"><path d=\"M 52.238 306.378 C 46.15 317.641 41.105 329.544 33.425 339.871 C 27.53 347.799 20.804 355.026 14.392 362.523 C 11.788 365.567 9.728 368.912 7.226 371.977 C 7.039 372.207 5.97 374.52 6.037 374.528 C 8.119 374.789 13.139 369.102 14.89 367.874 C 19.275 364.798 23.969 362.212 27.754 358.419 C 28.715 357.456 27.957 359.364 27.837 359.667 C 26.936 361.949 25.789 364.14 24.573 366.266 C 20.57 373.259 16.274 380.074 11.902 386.838 C 11.502 387.456 7.882 395.285 8.859 394.879 C 17.347 391.345 25.38 384.435 32.734 379.075 C 39.41 374.209 45.869 369.234 51.408 363.077 C 53.644 360.593 55.39 357.901 57.218 355.12 C 57.73 354.34 58.851 351.817 58.684 352.735 C 57.12 361.356 51.311 370.079 46.152 376.912 C 39.485 385.742 31.266 393.544 22.193 399.869 C 21.779 400.158 16.653 402.382 16.965 403.474 C 17.702 406.062 37.323 400.448 39.125 399.981 C 45.32 398.371 51.332 396.239 57.328 394.02 C 58.809 393.471 66.333 389.567 67.952 390.581 C 68.158 390.71 66.779 392.416 67.731 391.441 C 70.338 388.77 72.613 385.917 75.477 383.484 C 85.039 375.355 94.923 366.814 105.798 360.499 C 105.897 360.441 109.546 358.241 109.422 359.168 C 109.192 360.896 108.342 362.505 108.122 364.27 C 107.939 365.736 107.75 367.188 107.541 368.65 C 107.185 371.15 110.435 364.511 112.023 362.551 C 118.884 354.079 126.541 346.306 133.381 337.819 C 136.189 334.335 138.731 330.432 141.929 327.283 C 143.642 325.598 143.341 329.576 143.368 330.444 C 143.388 331.059 143.332 334.806 144.364 334.936 C 145.251 335.046 147.059 331.687 147.352 331.221 C 150.572 326.076 153.315 320.561 157.007 315.722 C 158.246 314.099 159.605 321.885 160.023 322.986 C 160.12 323.242 161.105 327.381 161.904 326.396 C 163.316 324.654 164.099 322.569 164.781 320.463 C 166.024 316.623 167.74 312.925 168.654 308.984 C 168.969 307.627 169.286 308.634 169.512 309.539 C 170.141 312.06 170.626 314.524 171.449 316.997 C 172.506 320.178 172.779 315.345 172.97 314.113 C 173.73 309.212 172.809 304.208 171.642 299.447 C 170.31 294.008 168.195 288.074 167.796 282.478 C 167.583 279.487 168.146 283.883 168.765 284.918\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12552097386,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15mq0x4-container\",layoutDependency:layoutDependency,layoutId:\"VX4VHSxhI-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"VX4VHSxhI\",layoutId:\"VX4VHSxhI\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ylsppu\",\"data-framer-name\":\"Frame 1033\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"j69_D4qv9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 395 413\"><path d=\"M 146.536 111.024 C 151.604 123.689 155.447 136.358 157.763 149.851 C 158.185 152.303 158.577 154.761 158.977 157.218 C 159.339 159.439 159.45 160.542 159.605 157.218 C 160.004 148.693 158.337 140.484 157.482 132.04 C 156.83 125.612 156.68 119.211 156.68 112.757 C 156.68 109.899 156.581 104.453 157.676 111.024 C 158.987 118.881 159.41 126.864 159.714 134.814 C 159.845 138.248 159.951 141.674 160.408 145.084 C 160.689 147.191 160.959 145.756 161.318 144.39 C 164.443 132.52 163.72 120.418 165.176 108.337 C 165.595 104.856 165.827 111.519 165.848 111.934 C 166.257 120.115 165.564 128.023 164.482 136.136 C 163.846 140.909 161.545 155.052 161.361 150.241 C 161.143 144.513 161.576 138.766 161.274 133.037 C 161.227 132.123 160.202 119.387 159.411 119.387 C 158.595 119.387 157.093 130.118 156.983 130.654 C 155.355 138.579 153.888 146.768 150.892 154.314 C 150.414 155.52 149.446 158.899 148.963 157.694 C 148.342 156.142 148.893 153.326 148.877 151.714 C 148.818 145.759 147.714 140.049 146.146 134.316 C 145.42 131.665 144.815 128.634 143.458 126.212 C 142.714 124.884 142.663 125.525 142.526 127.122 C 142.24 130.465 142.303 137.629 142.331 140.295 C 142.394 146.415 142.388 152.655 143.241 158.734 C 143.417 159.985 143.563 162.005 144.239 159.644 C 146.153 152.945 146.498 145.945 147.338 139.061 C 148.009 133.56 148.314 126.596 151.434 121.77 C 153.657 118.333 154.965 129.111 155.032 129.787 C 155.709 136.572 155.358 143.375 155.531 150.175 C 155.56 151.35 155.629 152.218 155.986 150.587 C 156.549 148.011 156.975 145.406 157.546 142.83 C 158.844 136.981 159.919 131.144 162.553 125.714 C 163.502 123.759 166.608 117.135 166.975 122.789 C 167.435 129.879 165.034 136.893 161.968 143.177 C 160.687 145.804 159.308 148.429 157.763 150.913 C 157.078 152.013 155.692 155.099 155.249 153.881 C 155.025 153.265 155.871 151.137 155.986 150.674 C 156.776 147.477 157.505 144.264 158.24 141.054 C 159.634 134.966 160.674 128.968 160.971 122.724\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(135,135,135)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10132218362,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19ek6vn-container\",layoutDependency:layoutDependency,layoutId:\"zfIBOHoZg-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"zfIBOHoZg\",layoutId:\"zfIBOHoZg\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:5,ease:[0,.01,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1t0op3q\",\"data-framer-name\":\"Frame 1039\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jpcpcbyCF\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 395 413\"><path d=\"M 279.719 30.409 C 277.498 30.409 276.014 34.464 275.912 36.191 C 275.709 39.652 275.465 45.212 278.485 47.627 C 280.806 49.484 282.762 48.593 285.077 47.436 C 287.507 46.222 288.087 45.395 288.607 42.738 C 289.301 39.196 288.265 36.48 286.056 33.683 C 285.147 32.532 284.446 30.792 282.781 30.792 C 279.119 30.792 275.628 39.613 278.188 41.888 C 279.514 43.067 283.237 42.33 284.312 41.101 C 285.406 39.852 286.175 36.762 283.929 36.234 C 282.461 35.888 280.599 40.254 282.228 40.719 C 283.95 41.211 285.411 37.034 283.461 36.616 C 281.17 36.125 278.411 40.258 280.293 40.676 C 281.746 40.999 282.677 38.062 281.633 38.062 C 280.426 38.062 281.225 41.422 281.633 40.506 C 282.554 38.434 280.182 39.21 282.781 39.21\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12318200593,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Mz7vL.framer-1iv17vd, .framer-Mz7vL .framer-1iv17vd { display: block; }\",\".framer-Mz7vL.framer-tfe6kf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 100px 150px 100px; position: relative; width: 1200px; }\",\".framer-Mz7vL .framer-l81pzy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Mz7vL .framer-13v8cn4 { flex: none; height: 44px; position: relative; text-decoration: none; width: 43px; }\",\".framer-Mz7vL .framer-1k6x7ie { align-content: flex-start; align-items: flex-start; 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-Mz7vL .framer-m3tqlv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Mz7vL .framer-5jxb0j, .framer-Mz7vL .framer-1azyf3k, .framer-Mz7vL .framer-h32c3d, .framer-Mz7vL .framer-1h5kz21, .framer-Mz7vL .framer-1uyrbn7, .framer-Mz7vL .framer-wf3xu0, .framer-Mz7vL .framer-1dtnq5r, .framer-Mz7vL .framer-pw23uq, .framer-Mz7vL .framer-1hp8t5d, .framer-Mz7vL .framer-1hqz9r3, .framer-Mz7vL .framer-16msr3m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Mz7vL .framer-1rezxuy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Mz7vL .framer-ddemyz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Mz7vL .framer-1j5jc9, .framer-Mz7vL .framer-72kclw, .framer-Mz7vL .framer-1kysqvf, .framer-Mz7vL .framer-17aeug4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Mz7vL .framer-1td0en7, .framer-Mz7vL .framer-1tuorvq, .framer-Mz7vL .framer-1agz1vh, .framer-Mz7vL .framer-oj9fjc { flex: none; height: 23px; position: relative; width: 23px; }\",\".framer-Mz7vL .framer-16zf95g { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Mz7vL .framer-1vblgm6-container, .framer-Mz7vL .framer-oiztl2-container, .framer-Mz7vL .framer-1vcg51k-container, .framer-Mz7vL .framer-mukmci-container, .framer-Mz7vL .framer-s9slqg-container, .framer-Mz7vL .framer-9vycnm-container, .framer-Mz7vL .framer-17mixc2-container, .framer-Mz7vL .framer-1q1qa30-container, .framer-Mz7vL .framer-olgv09-container, .framer-Mz7vL .framer-tsj0bh-container, .framer-Mz7vL .framer-15mq0x4-container, .framer-Mz7vL .framer-19ek6vn-container { bottom: -186px; flex: none; height: 432px; left: -50px; position: absolute; width: 395px; z-index: 1; }\",\".framer-Mz7vL .framer-m30ev, .framer-Mz7vL .framer-12cjyqk, .framer-Mz7vL .framer-45yqi5, .framer-Mz7vL .framer-19kzmme, .framer-Mz7vL .framer-nu5klt, .framer-Mz7vL .framer-14g0809, .framer-Mz7vL .framer-1gg2mmj, .framer-Mz7vL .framer-ylsppu, .framer-Mz7vL .framer-1t0op3q { height: 413px; position: relative; width: 395px; }\",\".framer-Mz7vL .framer-lcimgo, .framer-Mz7vL .framer-b7jw3o, .framer-Mz7vL .framer-1io2s17 { height: 413px; position: relative; width: 394px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Mz7vL.framer-tfe6kf, .framer-Mz7vL .framer-l81pzy, .framer-Mz7vL .framer-1k6x7ie, .framer-Mz7vL .framer-m3tqlv, .framer-Mz7vL .framer-1rezxuy, .framer-Mz7vL .framer-1j5jc9, .framer-Mz7vL .framer-72kclw, .framer-Mz7vL .framer-1kysqvf, .framer-Mz7vL .framer-17aeug4, .framer-Mz7vL .framer-16zf95g { gap: 0px; } .framer-Mz7vL.framer-tfe6kf > *, .framer-Mz7vL .framer-l81pzy > *, .framer-Mz7vL .framer-1k6x7ie > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Mz7vL.framer-tfe6kf > :first-child, .framer-Mz7vL .framer-l81pzy > :first-child, .framer-Mz7vL .framer-1k6x7ie > :first-child, .framer-Mz7vL .framer-1j5jc9 > :first-child, .framer-Mz7vL .framer-72kclw > :first-child, .framer-Mz7vL .framer-1kysqvf > :first-child, .framer-Mz7vL .framer-17aeug4 > :first-child { margin-left: 0px; } .framer-Mz7vL.framer-tfe6kf > :last-child, .framer-Mz7vL .framer-l81pzy > :last-child, .framer-Mz7vL .framer-1k6x7ie > :last-child, .framer-Mz7vL .framer-1j5jc9 > :last-child, .framer-Mz7vL .framer-72kclw > :last-child, .framer-Mz7vL .framer-1kysqvf > :last-child, .framer-Mz7vL .framer-17aeug4 > :last-child { margin-right: 0px; } .framer-Mz7vL .framer-m3tqlv > *, .framer-Mz7vL .framer-1rezxuy > *, .framer-Mz7vL .framer-16zf95g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Mz7vL .framer-m3tqlv > :first-child, .framer-Mz7vL .framer-1rezxuy > :first-child, .framer-Mz7vL .framer-16zf95g > :first-child { margin-top: 0px; } .framer-Mz7vL .framer-m3tqlv > :last-child, .framer-Mz7vL .framer-1rezxuy > :last-child, .framer-Mz7vL .framer-16zf95g > :last-child { margin-bottom: 0px; } .framer-Mz7vL .framer-1j5jc9 > *, .framer-Mz7vL .framer-72kclw > *, .framer-Mz7vL .framer-1kysqvf > *, .framer-Mz7vL .framer-17aeug4 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-Mz7vL.framer-v-1m40jkp.framer-tfe6kf { flex-direction: column; gap: 108px; padding: 50px 20px 50px 20px; width: 362px; }\",\".framer-Mz7vL.framer-v-1m40jkp .framer-l81pzy { flex: none; order: 2; width: 100%; }\",\".framer-Mz7vL.framer-v-1m40jkp .framer-1k6x7ie { flex: none; flex-direction: column; gap: 128px; order: 0; width: 100%; }\",\".framer-Mz7vL.framer-v-1m40jkp .framer-m3tqlv, .framer-Mz7vL.framer-v-1m40jkp .framer-1rezxuy { flex: none; width: 100%; }\",\".framer-Mz7vL.framer-v-1m40jkp .framer-16zf95g { align-content: flex-start; align-items: flex-start; flex: none; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Mz7vL.framer-v-1m40jkp.framer-tfe6kf, .framer-Mz7vL.framer-v-1m40jkp .framer-1k6x7ie { gap: 0px; } .framer-Mz7vL.framer-v-1m40jkp.framer-tfe6kf > * { margin: 0px; margin-bottom: calc(108px / 2); margin-top: calc(108px / 2); } .framer-Mz7vL.framer-v-1m40jkp.framer-tfe6kf > :first-child, .framer-Mz7vL.framer-v-1m40jkp .framer-1k6x7ie > :first-child { margin-top: 0px; } .framer-Mz7vL.framer-v-1m40jkp.framer-tfe6kf > :last-child, .framer-Mz7vL.framer-v-1m40jkp .framer-1k6x7ie > :last-child { margin-bottom: 0px; } .framer-Mz7vL.framer-v-1m40jkp .framer-1k6x7ie > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 494\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iT9LvGgin\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdusFwSi8i=withCSS(Component,css,\"framer-Mz7vL\");export default FramerdusFwSi8i;FramerdusFwSi8i.displayName=\"Footer\";FramerdusFwSi8i.defaultProps={height:494,width:1200};addPropertyControls(FramerdusFwSi8i,{variant:{options:[\"jeUKF7gUS\",\"iT9LvGgin\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdusFwSi8i,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/D7WD5OXZFWQ5T76HSPWAC7MNKAJXE2YG/LUGNSPO5YC34ABNB2O6K7AFDSOJZT56V/WNDVG7O66ENLOD43GS7FBUCC4KMT5OM2.woff2\",weight:\"300\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...AnimatorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdusFwSi8i\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iT9LvGgin\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"494\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dusFwSi8i.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vbz6CtZUM\",\"oioWPdwbt\",\"x8vecsGtd\",\"WzpqP5PcX\",\"bbWy2LV37\",\"Ee2RpStrB\",\"MHlEkl4de\",\"DeS_eXLe_\",\"rEUXfbK5Y\",\"Bd97jTezc\",\"sO5U41GJw\",\"yWhvppVsG\",\"o915kf0YR\"];const serializationHash=\"framer-oHa49\";const variantClassNames={bbWy2LV37:\"framer-v-1hgu99h\",Bd97jTezc:\"framer-v-pyyvlv\",DeS_eXLe_:\"framer-v-h2vnsp\",Ee2RpStrB:\"framer-v-13j0tl0\",MHlEkl4de:\"framer-v-wuc51q\",o915kf0YR:\"framer-v-1sc0bif\",oioWPdwbt:\"framer-v-1l70elt\",rEUXfbK5Y:\"framer-v-9az9af\",sO5U41GJw:\"framer-v-1di85ke\",vbz6CtZUM:\"framer-v-iwqx7s\",WzpqP5PcX:\"framer-v-yw9szd\",x8vecsGtd:\"framer-v-5bx2dj\",yWhvppVsG:\"framer-v-90w04n\"};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 transition1={duration:0,type:\"tween\"};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={\"Arrow 2\":\"Bd97jTezc\",\"Arrow black\":\"rEUXfbK5Y\",\"Close 2\":\"yWhvppVsG\",\"Close 3\":\"o915kf0YR\",\"Close Black\":\"sO5U41GJw\",\"Men\\xfc 2\":\"oioWPdwbt\",\"Men\\xfc 3\":\"x8vecsGtd\",\"Men\\xfc\":\"vbz6CtZUM\",Arrow:\"MHlEkl4de\",Close:\"WzpqP5PcX\"};const getProps=({height,id,tap,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:\"vbz6CtZUM\",xKXsSjOmu:tap!==null&&tap!==void 0?tap:props.xKXsSjOmu};};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,xKXsSjOmu,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vbz6CtZUM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapf2tgxa=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(xKXsSjOmu){const res=await xKXsSjOmu(...args);if(res===false)return false;}});const onAppearo7ivo8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"oioWPdwbt\"),500);});const onAppear1xqk78m=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"x8vecsGtd\"),500);});const onAppear1l15kf6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vbz6CtZUM\"),500);});const onAppeary2fpoi=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bbWy2LV37\"),700);});const onAppear1lepwcu=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Ee2RpStrB\"),700);});const onAppear1g4aupm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"WzpqP5PcX\"),500);});const onAppear1cyixk9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"DeS_eXLe_\"),600);});const onAppear1tjjkif=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MHlEkl4de\"),600);});const onAppear1ayadx7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Bd97jTezc\"),600);});const onAppear1wzvhi1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rEUXfbK5Y\"),600);});const onAppear1aqqyhn=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"yWhvppVsG\"),600);});const onAppear1mocfvy=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"o915kf0YR\"),600);});const onAppear1mc2y6e=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"sO5U41GJw\"),600);});useOnVariantChange(baseVariant,{bbWy2LV37:onAppear1lepwcu,Bd97jTezc:onAppear1wzvhi1,default:onAppearo7ivo8,DeS_eXLe_:onAppear1tjjkif,Ee2RpStrB:onAppear1g4aupm,MHlEkl4de:onAppear1cyixk9,o915kf0YR:onAppear1mc2y6e,oioWPdwbt:onAppear1xqk78m,rEUXfbK5Y:onAppear1ayadx7,sO5U41GJw:onAppear1aqqyhn,WzpqP5PcX:onAppeary2fpoi,x8vecsGtd:onAppear1l15kf6,yWhvppVsG:onAppear1mocfvy});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"oioWPdwbt\",\"x8vecsGtd\",\"WzpqP5PcX\",\"bbWy2LV37\",\"Ee2RpStrB\",\"MHlEkl4de\",\"DeS_eXLe_\",\"rEUXfbK5Y\",\"Bd97jTezc\",\"sO5U41GJw\",\"yWhvppVsG\",\"o915kf0YR\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"WzpqP5PcX\",\"bbWy2LV37\",\"Ee2RpStrB\",\"MHlEkl4de\",\"DeS_eXLe_\",\"rEUXfbK5Y\",\"Bd97jTezc\",\"sO5U41GJw\",\"yWhvppVsG\",\"o915kf0YR\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"Ee2RpStrB\",\"o915kf0YR\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"WzpqP5PcX\",\"sO5U41GJw\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"bbWy2LV37\",\"yWhvppVsG\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"MHlEkl4de\",\"rEUXfbK5Y\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if([\"DeS_eXLe_\",\"Bd97jTezc\"].includes(baseVariant))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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-iwqx7s\",className,classNames),\"data-framer-name\":\"Men\\xfc\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vbz6CtZUM\",onTap:onTapf2tgxa,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bbWy2LV37:{\"data-framer-name\":\"Close 2\"},Bd97jTezc:{\"data-framer-name\":\"Arrow 2\",onTap:undefined},DeS_eXLe_:{\"data-framer-name\":\"Arrow 2\"},Ee2RpStrB:{\"data-framer-name\":\"Close 3\"},MHlEkl4de:{\"data-framer-name\":\"Arrow\"},o915kf0YR:{\"data-framer-name\":\"Close 3\",onTap:undefined},oioWPdwbt:{\"data-framer-name\":\"Men\\xfc 2\"},rEUXfbK5Y:{\"data-framer-name\":\"Arrow black\",onTap:undefined},sO5U41GJw:{\"data-framer-name\":\"Close Black\",onTap:undefined},WzpqP5PcX:{\"data-framer-name\":\"Close\"},x8vecsGtd:{\"data-framer-name\":\"Men\\xfc 3\"},yWhvppVsG:{\"data-framer-name\":\"Close 2\",onTap:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1l6p6k1\",\"data-framer-name\":\"Men\\xfc 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:55,layoutDependency:layoutDependency,layoutId:\"IX5TgMSO8\",svg:'<svg width=\"55\" height=\"38\" viewBox=\"-2 -2 55 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.391942 0C3.3074 0.0646495 6.24298 0.388952 9.15037 0.612119C15.3093 1.08487 21.4908 0.82961 27.6555 1.22424C33.0574 1.57003 38.4415 1.92147 43.8092 2.61851C45.4914 2.83695 48.5164 3.08466 45.6325 4.33585C41.8627 5.97139 37.7863 7.20517 33.8239 8.28061C27.3978 10.0248 21.0383 11.8518 14.6713 13.8067C13.7773 14.0812 -0.0226142 18.1145 2.78315e-05 18.1935C0.177489 18.8133 10.8022 18.6115 11.6041 18.6696C17.476 19.0953 23.351 19.472 29.2232 19.8939C32.7845 20.1497 36.9078 20.1082 40.299 21.4242C42.0695 22.1112 35.2564 24.3934 34.9145 24.4848C28.4015 26.2244 21.6157 26.9323 15.0461 28.4635C10.6023 29.4993 5.78325 30.498 1.9596 33.1395C0.988331 33.8104 1.74836 33.9235 2.50487 33.9556C4.44542 34.038 6.4089 33.9861 8.34951 33.9556C22.5841 33.7319 36.7475 32.4423 51 32.4423\" stroke=\"#E84848\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-69ux1k\",\"data-framer-name\":\"Men\\xfc 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:78,layoutDependency:layoutDependency,layoutId:\"CKw3qEvi0\",style:{opacity:0},svg:'<svg width=\"78\" height=\"30\" viewBox=\"-2 -2 78 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.8932 26C32.1947 26 50.8439 25.1582 69.025 23.0962C69.8642 23.001 77.1147 21.8861 72.4432 20.8735C69.4401 20.2226 66.9184 18.3171 63.8426 17.6112C57.0398 16.05 51.1596 14.3848 44.1055 14.3848C39.9977 14.3848 35.8904 14.9629 31.7559 15.0301C27.1075 15.1056 21.2315 17.5413 16.6866 16.1773C10.7888 14.4073 16.1189 12.0308 18.8918 11.1583C24.8124 9.29553 31.8943 9.08742 38.041 8.57719C43.9958 8.08287 52.1229 7.96577 57.7414 5.70923C58.9342 5.23019 59.9047 4.99734 60.8655 4.06016C63.4288 1.55998 56.7251 1.45417 55.6464 1.33561C37.2436 -0.686877 18.4958 0.188426 0 0.188426\" stroke=\"#E84848\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',variants:{x8vecsGtd:{opacity:1}},withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-5vyy79\",\"data-framer-name\":\"Men\\xfc 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:75,layoutDependency:layoutDependency,layoutId:\"AITtIo_F3\",style:{opacity:0},svg:'<svg width=\"75\" height=\"36\" viewBox=\"-2 -2 75 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M71 29.6241C54.5818 31.048 38.8343 33.0902 22.2788 31.2997C20.5035 31.1077 -4.56908 28.3529 2.30093 21.5008C5.58753 18.2228 12.6689 18.6257 16.7639 18.5138C26.2715 18.254 35.813 18.4773 45.3246 18.4773C51.2221 18.4773 57.1407 19.7159 62.965 19.7159C66.6173 19.7159 55.9998 17.4981 52.4465 16.656C45.3332 14.9701 36.8273 14.6016 29.5103 14.5432C25.3049 14.5096 15.6374 16.1741 11.9794 13.7418C11.2879 13.282 18.4878 11.6727 18.6996 11.629C26.3617 10.0479 33.963 9.85411 41.7454 8.96983C49.2773 8.11401 57.0991 8.01305 64.3894 5.72781C68.6423 4.39466 59.0139 3.44639 58.3632 3.39647C47.8223 2.58775 37.3265 0.643678 26.7711 0.19087C17.8715 -0.190908 8.90945 0.118015 0 0.118015\" stroke=\"#E84848\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',variants:{oioWPdwbt:{opacity:1}},withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4fufew\",\"data-framer-name\":\"Close 3\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BmMdIWcmN\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 59 56\"><path d=\"M 40.185 17.304 C 35.021 22.999 30.776 30.16 26.604 36.573 C 25.137 38.829 23.127 41.008 21.962 43.362\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 38.851 18.203 C 32.371 19.582 26.42 22.246 19.641 22.246 C 16.725 22.246 12.223 21.999 17.172 24.143 C 20.094 25.409 23.263 26.323 26.061 27.837 C 29.273 29.575 32.146 31.881 35.296 33.728 C 37.771 35.179 39.756 37.024 42.53 37.921 C 43.451 38.219 44.638 38.438 45.074 39.319\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 44.629 38.42 C 43.596 38.316 42.256 37.445 41.32 36.973 C 38.238 35.415 35.338 33.673 32.135 32.33 C 27.8 30.512 23.631 28.281 19.444 26.14 C 17.093 24.938 14.753 23.834 13.074 21.797\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 25.518 41.116 C 25.518 41.348 26.506 39.56 26.876 39.069 C 28.913 36.366 30.764 33.839 32.481 30.907 C 34.832 26.892 37.665 22.966 39.641 18.752 C 40.653 16.596 41.543 14.346 42.851 12.362\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 15.74 20.449 C 18.952 20.927 21.708 22.96 24.382 24.692 C 26.955 26.36 29.715 27.704 32.185 29.535 C 35.363 31.891 38.826 33.796 41.962 36.174\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11375991389,withExternalLayout:true,...addPropertyOverrides({Ee2RpStrB:{svgContentId:11080479451},o915kf0YR:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 59 56\"><path d=\"M 40.185 17.304 C 35.021 22.999 30.776 30.16 26.604 36.573 C 25.137 38.829 23.127 41.008 21.962 43.362\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 38.851 18.203 C 32.371 19.582 26.42 22.246 19.641 22.246 C 16.725 22.246 12.223 21.999 17.172 24.143 C 20.094 25.409 23.263 26.323 26.061 27.837 C 29.273 29.575 32.146 31.881 35.296 33.728 C 37.771 35.179 39.756 37.024 42.53 37.921 C 43.451 38.219 44.638 38.438 45.074 39.319\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 44.629 38.42 C 43.596 38.316 42.256 37.445 41.32 36.973 C 38.238 35.415 35.338 33.673 32.135 32.33 C 27.8 30.512 23.631 28.281 19.444 26.14 C 17.093 24.938 14.753 23.834 13.074 21.797\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 25.518 41.116 C 25.518 41.348 26.506 39.56 26.876 39.069 C 28.913 36.366 30.764 33.839 32.481 30.907 C 34.832 26.892 37.665 22.966 39.641 18.752 C 40.653 16.596 41.543 14.346 42.851 12.362\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 15.74 20.449 C 18.952 20.927 21.708 22.96 24.382 24.692 C 26.955 26.36 29.715 27.704 32.185 29.535 C 35.363 31.891 38.826 33.796 41.962 36.174\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11746702658}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-e9j8ds\",\"data-framer-name\":\"Close 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ums5FSnhi\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 38\"><path d=\"M 29.957 11.955 C 29.893 12.544 29.359 13.072 29.126 13.6 C 28.444 15.141 27.428 16.538 26.82 18.137 C 25.729 21.004 24.35 23.971 22.717 26.568 C 22.425 27.034 22.17 27.494 21.94 27.994 C 21.812 28.271 21.912 28.207 22.141 28.117 C 23.614 27.538 25.893 27.994 27.436 27.994 C 32.304 27.994 46.88 27.584 42.023 27.253 C 41.227 27.199 39.955 25.879 39.315 25.471 C 35.682 23.159 31.806 21.137 28.067 19.001 C 24.132 16.752 20.143 14.527 15.96 12.804 C 14.743 12.303 13.622 11.663 12.448 11.077 C 12.322 11.014 11.723 10.949 12.153 10.968 C 12.79 10.995 13.555 11.433 14.084 11.763 C 16.59 13.323 18.922 15.123 21.296 16.876 C 23.734 18.676 26.446 20.469 29.219 21.674 C 31.137 22.507 33.233 22.875 35.239 23.415 C 36.486 23.751 37.751 24.12 38.886 24.731 C 39.505 25.064 39.867 25.427 40.561 25.649 C 41.412 25.921 39.86 26.031 39.435 26.143 C 35.71 27.122 31.886 27.503 28.053 27.692 C 24.357 27.875 20.545 27.935 16.899 28.624 C 15.549 28.879 15.454 29.161 16.457 28.09 C 20.005 24.296 22.716 19.688 26.096 15.711 C 27.549 14 29.087 12.522 30.627 10.913 C 31.143 10.374 31.907 8.197 31.633 8.898 C 29.06 15.474 25.922 22.079 21.94 27.884 C 21.532 28.478 20.27 30.632 21.216 28.734 C 22.28 26.597 23.521 24.535 24.795 22.524 C 26.687 19.539 28.466 16.509 29.675 13.161 C 30.193 11.726 31.163 10.054 31.163 8.5\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:8824634867,withExternalLayout:true,...addPropertyOverrides({sO5U41GJw:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 38\"><path d=\"M 29.957 11.955 C 29.893 12.544 29.359 13.072 29.126 13.6 C 28.444 15.141 27.428 16.538 26.82 18.137 C 25.729 21.004 24.35 23.971 22.717 26.568 C 22.425 27.034 22.17 27.494 21.94 27.994 C 21.812 28.271 21.912 28.207 22.141 28.117 C 23.614 27.538 25.893 27.994 27.436 27.994 C 32.304 27.994 46.88 27.584 42.023 27.253 C 41.227 27.199 39.955 25.879 39.315 25.471 C 35.682 23.159 31.806 21.137 28.067 19.001 C 24.132 16.752 20.143 14.527 15.96 12.804 C 14.743 12.303 13.622 11.663 12.448 11.077 C 12.322 11.014 11.723 10.949 12.153 10.968 C 12.79 10.995 13.555 11.433 14.084 11.763 C 16.59 13.323 18.922 15.123 21.296 16.876 C 23.734 18.676 26.446 20.469 29.219 21.674 C 31.137 22.507 33.233 22.875 35.239 23.415 C 36.486 23.751 37.751 24.12 38.886 24.731 C 39.505 25.064 39.867 25.427 40.561 25.649 C 41.412 25.921 39.86 26.031 39.435 26.143 C 35.71 27.122 31.886 27.503 28.053 27.692 C 24.357 27.875 20.545 27.935 16.899 28.624 C 15.549 28.879 15.454 29.161 16.457 28.09 C 20.005 24.296 22.716 19.688 26.096 15.711 C 27.549 14 29.087 12.522 30.627 10.913 C 31.143 10.374 31.907 8.197 31.633 8.898 C 29.06 15.474 25.922 22.079 21.94 27.884 C 21.532 28.478 20.27 30.632 21.216 28.734 C 22.28 26.597 23.521 24.535 24.795 22.524 C 26.687 19.539 28.466 16.509 29.675 13.161 C 30.193 11.726 31.163 10.054 31.163 8.5\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9941623307},WzpqP5PcX:{svgContentId:8902998442}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15u1eg\",\"data-framer-name\":\"Close 2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yVdY9xcPj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 40\"><path d=\"M 39.035 9.585 C 37.023 11.722 35.623 14.543 34.013 16.959 C 31.628 20.538 28.955 23.888 26.145 27.159 C 25.248 28.203 24.308 29.273 23.213 30.126 C 23.036 30.263 22.469 30.436 22.894 30.436 C 26.619 30.436 30.345 30.436 34.071 30.436 C 39.173 30.436 44.208 30.331 49.284 29.815 C 49.823 29.76 52.904 29.888 52.564 29.419 C 52.255 28.993 51.351 28.709 50.909 28.43 C 48.467 26.891 45.96 25.464 43.39 24.136 C 40.174 22.474 36.852 21.039 33.519 19.615 C 28.285 17.379 23.079 14.679 17.654 12.919 C 16.193 12.445 11.798 11.111 13.313 11.379 C 14.844 11.65 16.146 11.874 17.726 11.874 C 19.3 11.874 20.717 12.382 22.052 12.382 C 23.911 12.382 19.729 12.557 19.729 13.286 C 19.729 15.046 22.652 15.315 23.881 15.631 C 25.276 15.991 26.572 16.85 28.061 16.705 C 29.818 16.534 31.655 13.534 32.561 12.326 C 33.38 11.234 34.07 9.884 35.102 8.964 C 35.512 8.597 36.402 7.721 37.061 8.088 C 38.069 8.648 36.313 13.658 36.103 14.304 C 34.673 18.702 31.818 22.256 28.874 25.775 C 27.178 27.803 24.95 29.608 23.503 31.821 C 23.102 32.435 23.364 31.292 23.489 31.072 C 23.827 30.48 23.983 29.019 24.563 28.642 C 26.298 27.517 28.259 27.908 30.195 28.317 C 36.205 29.589 42.163 30.784 48.296 31.341 C 50.583 31.548 52.909 31.69 55.206 31.708 C 55.843 31.713 57.451 31.981 57.993 31.454 C 58.245 31.208 51.544 28.043 51.098 27.851 C 42.85 24.302 34.529 20.911 26.29 17.341 C 21.842 15.413 17.234 13.24 13.168 10.602\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12285990483,withExternalLayout:true,...addPropertyOverrides({bbWy2LV37:{svgContentId:10881104049},yWhvppVsG:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 40\"><path d=\"M 39.035 9.585 C 37.023 11.722 35.623 14.543 34.013 16.959 C 31.628 20.538 28.955 23.888 26.145 27.159 C 25.248 28.203 24.308 29.273 23.213 30.126 C 23.036 30.263 22.469 30.436 22.894 30.436 C 26.619 30.436 30.345 30.436 34.071 30.436 C 39.173 30.436 44.208 30.331 49.284 29.815 C 49.823 29.76 52.904 29.888 52.564 29.419 C 52.255 28.993 51.351 28.709 50.909 28.43 C 48.467 26.891 45.96 25.464 43.39 24.136 C 40.174 22.474 36.852 21.039 33.519 19.615 C 28.285 17.379 23.079 14.679 17.654 12.919 C 16.193 12.445 11.798 11.111 13.313 11.379 C 14.844 11.65 16.146 11.874 17.726 11.874 C 19.3 11.874 20.717 12.382 22.052 12.382 C 23.911 12.382 19.729 12.557 19.729 13.286 C 19.729 15.046 22.652 15.315 23.881 15.631 C 25.276 15.991 26.572 16.85 28.061 16.705 C 29.818 16.534 31.655 13.534 32.561 12.326 C 33.38 11.234 34.07 9.884 35.102 8.964 C 35.512 8.597 36.402 7.721 37.061 8.088 C 38.069 8.648 36.313 13.658 36.103 14.304 C 34.673 18.702 31.818 22.256 28.874 25.775 C 27.178 27.803 24.95 29.608 23.503 31.821 C 23.102 32.435 23.364 31.292 23.489 31.072 C 23.827 30.48 23.983 29.019 24.563 28.642 C 26.298 27.517 28.259 27.908 30.195 28.317 C 36.205 29.589 42.163 30.784 48.296 31.341 C 50.583 31.548 52.909 31.69 55.206 31.708 C 55.843 31.713 57.451 31.981 57.993 31.454 C 58.245 31.208 51.544 28.043 51.098 27.851 C 42.85 24.302 34.529 20.911 26.29 17.341 C 21.842 15.413 17.234 13.24 13.168 10.602\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12196793611}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1kiqbgo\",\"data-framer-name\":\"Group 21\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"a_vdRTdFH\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 65 34\"><path d=\"M 14.869 11.528 C 24.539 13.659 34.395 14.528 44.312 14.528\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 41.266 9.028 C 42.693 10.293 51.756 15.536 50.798 17.528 C 49.583 20.054 43.407 22.08 41.012 23 C 37.944 24.18 28.327 26.028 31.621 26.028\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11272135668,withExternalLayout:true,...addPropertyOverrides({MHlEkl4de:{svgContentId:10370749928},rEUXfbK5Y:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 65 34\"><path d=\"M 14.869 11.528 C 24.539 13.659 34.395 14.528 44.312 14.528\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 41.266 9.028 C 42.693 10.293 51.756 15.536 50.798 17.528 C 49.583 20.054 43.407 22.08 41.012 23 C 37.944 24.18 28.327 26.028 31.621 26.028\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11488427126}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-m8pmwd\",\"data-framer-name\":\"Group 22\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GONPL5zcQ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 69 45\"><path d=\"M 13.779 19.344 C 20.471 19.904 27.599 19.978 34.184 18.449 C 36.361 17.944 38.475 17.435 40.678 17.06 C 41.491 16.922 42.141 16.639 42.863 17.122\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 36.492 10.178 C 38.793 10.72 41.102 12.403 43.002 13.789 C 45.559 15.654 48.788 17.167 50.434 19.992 C 51.652 22.082 49.374 22.766 47.757 23.835 C 41.451 28.003 34.648 31.797 27.906 35.178\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(232,72,72)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10556708291,withExternalLayout:true,...addPropertyOverrides({Bd97jTezc:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 69 45\"><path d=\"M 13.779 19.344 C 20.471 19.904 27.599 19.978 34.184 18.449 C 36.361 17.944 38.475 17.435 40.678 17.06 C 41.491 16.922 42.141 16.639 42.863 17.122\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 36.492 10.178 C 38.793 10.72 41.102 12.403 43.002 13.789 C 45.559 15.654 48.788 17.167 50.434 19.992 C 51.652 22.082 49.374 22.766 47.757 23.835 C 41.451 28.003 34.648 31.797 27.906 35.178\" fill=\"transparent\" stroke-width=\"4\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10527822745},DeS_eXLe_:{svgContentId:11651454454}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oHa49.framer-deozfo, .framer-oHa49 .framer-deozfo { display: block; }\",\".framer-oHa49.framer-iwqx7s { cursor: pointer; height: 55px; overflow: hidden; position: relative; width: 103px; }\",\".framer-oHa49 .framer-1l6p6k1, .framer-oHa49 .framer-e9j8ds { flex: none; height: 38px; left: calc(49.6875% - 55px / 2); position: absolute; top: calc(50% - 38px / 2); width: 55px; }\",\".framer-oHa49 .framer-69ux1k { flex: none; height: 30px; left: calc(50.485436893203904% - 78px / 2); position: absolute; top: calc(50.90909090909093% - 30px / 2); width: 78px; }\",\".framer-oHa49 .framer-5vyy79 { flex: none; height: 36px; left: calc(49.51456310679614% - 75px / 2); position: absolute; top: calc(50.90909090909093% - 36px / 2); width: 75px; }\",\".framer-oHa49 .framer-4fufew { flex: none; height: 56px; left: calc(49.51456310679614% - 59px / 2); position: absolute; top: 0px; width: 59px; }\",\".framer-oHa49 .framer-15u1eg { flex: none; height: 40px; left: calc(49.6875% - 71px / 2); position: absolute; top: calc(50% - 40px / 2); width: 71px; }\",\".framer-oHa49 .framer-1kiqbgo { flex: none; height: 34px; left: calc(49.51456310679614% - 65px / 2); position: absolute; top: calc(49.090909090909115% - 34px / 2); width: 65px; }\",\".framer-oHa49 .framer-m8pmwd { flex: none; height: 45px; left: calc(51.456310679611676% - 69px / 2); position: absolute; top: calc(49.090909090909115% - 45px / 2); width: 69px; }\",\".framer-oHa49.framer-v-wuc51q.framer-iwqx7s, .framer-oHa49.framer-v-h2vnsp.framer-iwqx7s { overflow: visible; }\",\".framer-oHa49.framer-v-9az9af.framer-iwqx7s, .framer-oHa49.framer-v-pyyvlv.framer-iwqx7s { cursor: unset; overflow: visible; }\",\".framer-oHa49.framer-v-1di85ke.framer-iwqx7s, .framer-oHa49.framer-v-90w04n.framer-iwqx7s, .framer-oHa49.framer-v-1sc0bif.framer-iwqx7s { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55\n * @framerIntrinsicWidth 103\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"oioWPdwbt\":{\"layout\":[\"fixed\",\"fixed\"]},\"x8vecsGtd\":{\"layout\":[\"fixed\",\"fixed\"]},\"WzpqP5PcX\":{\"layout\":[\"fixed\",\"fixed\"]},\"bbWy2LV37\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ee2RpStrB\":{\"layout\":[\"fixed\",\"fixed\"]},\"MHlEkl4de\":{\"layout\":[\"fixed\",\"fixed\"]},\"DeS_eXLe_\":{\"layout\":[\"fixed\",\"fixed\"]},\"rEUXfbK5Y\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bd97jTezc\":{\"layout\":[\"fixed\",\"fixed\"]},\"sO5U41GJw\":{\"layout\":[\"fixed\",\"fixed\"]},\"yWhvppVsG\":{\"layout\":[\"fixed\",\"fixed\"]},\"o915kf0YR\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xKXsSjOmu\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerixQz0LEzL=withCSS(Component,css,\"framer-oHa49\");export default FramerixQz0LEzL;FramerixQz0LEzL.displayName=\"Menu icon\";FramerixQz0LEzL.defaultProps={height:55,width:103};addPropertyControls(FramerixQz0LEzL,{variant:{options:[\"vbz6CtZUM\",\"oioWPdwbt\",\"x8vecsGtd\",\"WzpqP5PcX\",\"bbWy2LV37\",\"Ee2RpStrB\",\"MHlEkl4de\",\"DeS_eXLe_\",\"rEUXfbK5Y\",\"Bd97jTezc\",\"sO5U41GJw\",\"yWhvppVsG\",\"o915kf0YR\"],optionTitles:[\"Men\\xfc\",\"Men\\xfc 2\",\"Men\\xfc 3\",\"Close\",\"Close 2\",\"Close 3\",\"Arrow\",\"Arrow 2\",\"Arrow black\",\"Arrow 2\",\"Close Black\",\"Close 2\",\"Close 3\"],title:\"Variant\",type:ControlType.Enum},xKXsSjOmu:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerixQz0LEzL,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerixQz0LEzL\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"xKXsSjOmu\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oioWPdwbt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x8vecsGtd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WzpqP5PcX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bbWy2LV37\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ee2RpStrB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MHlEkl4de\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DeS_eXLe_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rEUXfbK5Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bd97jTezc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sO5U41GJw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yWhvppVsG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o915kf0YR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"55\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"103\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ixQz0LEzL.map", "// Generated by Framer (705c3f6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"CcUVntybH\",\"uPRvklGQ6\",\"nfPhZhO7Z\",\"tfc4dj68c\",\"W73ASIWYf\",\"VScAvofcP\"];const serializationHash=\"framer-G0NG6\";const variantClassNames={CcUVntybH:\"framer-v-vs7429\",nfPhZhO7Z:\"framer-v-1h1g41i\",tfc4dj68c:\"framer-v-1mpfal0\",uPRvklGQ6:\"framer-v-1nitql6\",VScAvofcP:\"framer-v-lsp2eq\",W73ASIWYf:\"framer-v-1ek8zel\"};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 transition1={duration:0,type:\"tween\"};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};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={\"K\u0131rm\u0131z\u0131 Active\":\"nfPhZhO7Z\",\"K\u0131rm\u0131z\u0131\":\"CcUVntybH\",\"Siyah Active\":\"VScAvofcP\",\"Variant 2\":\"W73ASIWYf\",Siyah:\"tfc4dj68c\"};const getProps=({height,id,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;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:\"CcUVntybH\",vs0QqrsoM:(_ref1=title!==null&&title!==void 0?title:props.vs0QqrsoM)!==null&&_ref1!==void 0?_ref1:\"Ana Sayfa\"};};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,vs0QqrsoM,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CcUVntybH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnteru0l4m0=activeVariantCallback(async(...args)=>{setVariant(\"uPRvklGQ6\");});const onMouseLeavetetd19=activeVariantCallback(async(...args)=>{setVariant(\"CcUVntybH\");});const onMouseEnter35ikxj=activeVariantCallback(async(...args)=>{setVariant(\"W73ASIWYf\");});const onMouseLeaveu2a8z9=activeVariantCallback(async(...args)=>{setVariant(\"tfc4dj68c\");});const ref1=React.useRef(null);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,...addPropertyOverrides({uPRvklGQ6:{value:transition2},W73ASIWYf:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-vs7429\",className,classNames),\"data-framer-name\":\"K\u0131rm\u0131z\u0131\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CcUVntybH\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnteru0l4m0,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({nfPhZhO7Z:{\"data-framer-name\":\"K\u0131rm\u0131z\u0131 Active\",\"data-highlight\":undefined,onMouseEnter:undefined},tfc4dj68c:{\"data-framer-name\":\"Siyah\",onMouseEnter:onMouseEnter35ikxj},uPRvklGQ6:{\"data-framer-name\":\"Variant 2\",onMouseEnter:undefined,onMouseLeave:onMouseLeavetetd19},VScAvofcP:{\"data-framer-name\":\"Siyah Active\",\"data-highlight\":undefined,onMouseEnter:undefined},W73ASIWYf:{\"data-framer-name\":\"Variant 2\",onMouseEnter:undefined,onMouseLeave:onMouseLeaveu2a8z9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(128, 38, 38))\"},children:\"Ana Sayfa\"})}),className:\"framer-cg2v75\",\"data-framer-name\":\"Ana Sayfa\",fonts:[\"FS;Satoshi-light\"],layoutDependency:layoutDependency,layoutId:\"HS2liRREa\",style:{\"--extracted-r6o4lv\":\"rgb(128, 38, 38)\"},text:vs0QqrsoM,variants:{tfc4dj68c:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},VScAvofcP:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},W73ASIWYf:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({tfc4dj68c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Ana Sayfa\"})}),fonts:[\"FS;Satoshi-regular\"]},VScAvofcP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Ana Sayfa\"})}),fonts:[\"FS;Satoshi-regular\"]},W73ASIWYf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Ana Sayfa\"})}),fonts:[\"FS;Satoshi-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ink086\",\"data-framer-name\":\"Proggress Bar\",layoutDependency:layoutDependency,layoutId:\"H_VYScg6q\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c1d5ip\",layoutDependency:layoutDependency,layoutId:\"XBTJ3Vbvw\",style:{backgroundColor:\"rgb(232, 72, 71)\"},variants:{nfPhZhO7Z:{backgroundColor:\"rgb(128, 38, 38)\"},tfc4dj68c:{backgroundColor:\"rgb(255, 255, 255)\"},uPRvklGQ6:{backgroundColor:\"rgb(128, 38, 38)\"},VScAvofcP:{backgroundColor:\"rgb(255, 255, 255)\"},W73ASIWYf:{backgroundColor:\"rgb(255, 255, 255)\"}}})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-G0NG6.framer-1ix46km, .framer-G0NG6 .framer-1ix46km { display: block; }\",\".framer-G0NG6.framer-vs7429 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: auto; }\",\".framer-G0NG6 .framer-cg2v75 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-G0NG6 .framer-1ink086 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 4px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: auto; }\",\".framer-G0NG6 .framer-c1d5ip { flex: none; height: 1px; overflow: hidden; position: relative; width: 0%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-G0NG6.framer-vs7429, .framer-G0NG6 .framer-1ink086 { gap: 0px; } .framer-G0NG6.framer-vs7429 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-G0NG6.framer-vs7429 > :first-child { margin-top: 0px; } .framer-G0NG6.framer-vs7429 > :last-child { margin-bottom: 0px; } .framer-G0NG6 .framer-1ink086 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-G0NG6 .framer-1ink086 > :first-child { margin-left: 0px; } .framer-G0NG6 .framer-1ink086 > :last-child { margin-right: 0px; } }\",\".framer-G0NG6.framer-v-1nitql6 .framer-c1d5ip, .framer-G0NG6.framer-v-1h1g41i .framer-c1d5ip { width: 100%; }\",\".framer-G0NG6.framer-v-1mpfal0 .framer-c1d5ip { height: 2px; }\",\".framer-G0NG6.framer-v-1ek8zel .framer-c1d5ip, .framer-G0NG6.framer-v-lsp2eq .framer-c1d5ip { height: 2px; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 170\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"uPRvklGQ6\":{\"layout\":[\"auto\",\"auto\"]},\"nfPhZhO7Z\":{\"layout\":[\"auto\",\"auto\"]},\"tfc4dj68c\":{\"layout\":[\"auto\",\"auto\"]},\"W73ASIWYf\":{\"layout\":[\"auto\",\"auto\"]},\"VScAvofcP\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vs0QqrsoM\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroNcHkJo90=withCSS(Component,css,\"framer-G0NG6\");export default FrameroNcHkJo90;FrameroNcHkJo90.displayName=\"Nav Button\";FrameroNcHkJo90.defaultProps={height:52,width:170};addPropertyControls(FrameroNcHkJo90,{variant:{options:[\"CcUVntybH\",\"uPRvklGQ6\",\"nfPhZhO7Z\",\"tfc4dj68c\",\"W73ASIWYf\",\"VScAvofcP\"],optionTitles:[\"K\u0131rm\u0131z\u0131\",\"Variant 2\",\"K\u0131rm\u0131z\u0131 Active\",\"Siyah\",\"Variant 2\",\"Siyah Active\"],title:\"Variant\",type:ControlType.Enum},vs0QqrsoM:{defaultValue:\"Ana Sayfa\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FrameroNcHkJo90,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/D7WD5OXZFWQ5T76HSPWAC7MNKAJXE2YG/LUGNSPO5YC34ABNB2O6K7AFDSOJZT56V/WNDVG7O66ENLOD43GS7FBUCC4KMT5OM2.woff2\",weight:\"300\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroNcHkJo90\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"52\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"170\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uPRvklGQ6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nfPhZhO7Z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tfc4dj68c\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"W73ASIWYf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VScAvofcP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"vs0QqrsoM\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oNcHkJo90.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MenuIcon from\"https://framerusercontent.com/modules/uDEKXGgQcGyv1pn0lsgA/lKT8xlPyM3wQfORzRtcg/ixQz0LEzL.js\";import NavButton from\"https://framerusercontent.com/modules/f56YcJXATc3aHO73Ma0j/5OQNc0vQhsGYWFDnIWTa/oNcHkJo90.js\";const MenuIconFonts=getFonts(MenuIcon);const NavButtonFonts=getFonts(NavButton);const cycleOrder=[\"UdpdCZAxa\",\"kjlGWkCP6\",\"qkguocPE2\",\"wqR1hB61m\",\"YsL6kEURw\",\"Ir01EcvZY\",\"av6XSyDTb\",\"s0wOXnqmN\",\"dPqEkSO65\",\"Kvwl4Pt6U\",\"pD72JYD7U\",\"vDMn2tpnF\",\"Z6bJPFh7Y\",\"SlSkx1g4I\",\"lSq9KDaKT\",\"A24y2y9al\",\"ZAMpCp1AF\"];const serializationHash=\"framer-i4QVV\";const variantClassNames={A24y2y9al:\"framer-v-1mrbl6k\",av6XSyDTb:\"framer-v-1c6dguf\",dPqEkSO65:\"framer-v-1gx1xg1\",Ir01EcvZY:\"framer-v-wshni2\",kjlGWkCP6:\"framer-v-vq5us2\",Kvwl4Pt6U:\"framer-v-1cm7swq\",lSq9KDaKT:\"framer-v-676pnt\",pD72JYD7U:\"framer-v-100i268\",qkguocPE2:\"framer-v-10soi71\",s0wOXnqmN:\"framer-v-du7l1n\",SlSkx1g4I:\"framer-v-1vnz35j\",UdpdCZAxa:\"framer-v-6n95ha\",vDMn2tpnF:\"framer-v-ysafaq\",wqR1hB61m:\"framer-v-1p43sqd\",YsL6kEURw:\"framer-v-11pehfe\",Z6bJPFh7Y:\"framer-v-15mxb4o\",ZAMpCp1AF:\"framer-v-1k2fgxu\"};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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition2};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={\"Home/mobile\":\"lSq9KDaKT\",\"K\u0131rm\u0131z\u0131 active\":\"ZAMpCp1AF\",\"Navbar/\\xc7al\u0131\u015Fmalar\":\"qkguocPE2\",\"Navbar/Hakk\u0131mda\":\"av6XSyDTb\",\"Navbar/Home\":\"UdpdCZAxa\",\"Navbar/\u0130leti\u015Fim\":\"dPqEkSO65\",\"Navbar/\\xd6d\\xfcller\":\"YsL6kEURw\",\"Variant 11\":\"A24y2y9al\",\"Variant 4\":\"wqR1hB61m\",\"Variant 6\":\"s0wOXnqmN\",\"Variant 8\":\"Kvwl4Pt6U\",Active:\"kjlGWkCP6\"};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:\"UdpdCZAxa\"};};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:\"UdpdCZAxa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap19o8eku=activeVariantCallback(async(...args)=>{setVariant(\"UdpdCZAxa\");});const onTaplavvhp=activeVariantCallback(async(...args)=>{setVariant(\"qkguocPE2\");});const onTap1bj63k2=activeVariantCallback(async(...args)=>{setVariant(\"av6XSyDTb\");});const onTap9biyz0=activeVariantCallback(async(...args)=>{setVariant(\"dPqEkSO65\");});const onTapkiqtyv=activeVariantCallback(async(...args)=>{setVariant(\"A24y2y9al\");});const onTap12158t4=activeVariantCallback(async(...args)=>{setVariant(\"lSq9KDaKT\");});const onTap172310t=activeVariantCallback(async(...args)=>{setVariant(\"YsL6kEURw\");});const xKXsSjOmub5df76=activeVariantCallback(async(...args)=>{setVariant(\"pD72JYD7U\");});const xKXsSjOmu19o8eku=activeVariantCallback(async(...args)=>{setVariant(\"UdpdCZAxa\");});const xKXsSjOmu7bx4ps=activeVariantCallback(async(...args)=>{setVariant(\"vDMn2tpnF\");});const xKXsSjOmulavvhp=activeVariantCallback(async(...args)=>{setVariant(\"qkguocPE2\");});const xKXsSjOmuohl73u=activeVariantCallback(async(...args)=>{setVariant(\"ZAMpCp1AF\");});const xKXsSjOmu172310t=activeVariantCallback(async(...args)=>{setVariant(\"YsL6kEURw\");});const xKXsSjOmu1k9oz3=activeVariantCallback(async(...args)=>{setVariant(\"Z6bJPFh7Y\");});const xKXsSjOmu1bj63k2=activeVariantCallback(async(...args)=>{setVariant(\"av6XSyDTb\");});const xKXsSjOmu1rejkzo=activeVariantCallback(async(...args)=>{setVariant(\"SlSkx1g4I\");});const xKXsSjOmu9biyz0=activeVariantCallback(async(...args)=>{setVariant(\"dPqEkSO65\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"pD72JYD7U\",\"vDMn2tpnF\",\"Z6bJPFh7Y\",\"SlSkx1g4I\",\"A24y2y9al\",\"ZAMpCp1AF\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"pD72JYD7U\",\"vDMn2tpnF\",\"Z6bJPFh7Y\",\"SlSkx1g4I\",\"A24y2y9al\",\"ZAMpCp1AF\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"lSq9KDaKT\",\"A24y2y9al\"].includes(baseVariant))return false;return true;};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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-6n95ha\",className,classNames),\"data-framer-name\":\"Navbar/Home\",layoutDependency:layoutDependency,layoutId:\"UdpdCZAxa\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 0, 0)\",...style},variants:{A24y2y9al:{backgroundColor:\"rgb(128, 38, 38)\"},pD72JYD7U:{backgroundColor:\"rgb(128, 38, 38)\"},SlSkx1g4I:{backgroundColor:\"rgb(128, 38, 38)\"},vDMn2tpnF:{backgroundColor:\"rgb(128, 38, 38)\"},Z6bJPFh7Y:{backgroundColor:\"rgb(128, 38, 38)\"},ZAMpCp1AF:{backgroundColor:\"rgb(128, 38, 38)\"}},...addPropertyOverrides({A24y2y9al:{\"data-framer-name\":\"Variant 11\"},av6XSyDTb:{\"data-framer-name\":\"Navbar/Hakk\u0131mda\"},dPqEkSO65:{\"data-framer-name\":\"Navbar/\u0130leti\u015Fim\"},Ir01EcvZY:{\"data-framer-name\":\"Variant 8\"},kjlGWkCP6:{\"data-framer-name\":\"Active\"},Kvwl4Pt6U:{\"data-framer-name\":\"Variant 8\"},lSq9KDaKT:{\"data-framer-name\":\"Home/mobile\"},pD72JYD7U:{\"data-framer-name\":\"K\u0131rm\u0131z\u0131 active\"},qkguocPE2:{\"data-framer-name\":\"Navbar/\\xc7al\u0131\u015Fmalar\"},s0wOXnqmN:{\"data-framer-name\":\"Variant 6\"},SlSkx1g4I:{\"data-framer-name\":\"K\u0131rm\u0131z\u0131 active\"},vDMn2tpnF:{\"data-framer-name\":\"K\u0131rm\u0131z\u0131 active\"},wqR1hB61m:{\"data-framer-name\":\"Variant 4\"},YsL6kEURw:{\"data-framer-name\":\"Navbar/\\xd6d\\xfcller\"},Z6bJPFh7Y:{\"data-framer-name\":\"K\u0131rm\u0131z\u0131 active\"},ZAMpCp1AF:{\"data-framer-name\":\"K\u0131rm\u0131z\u0131 active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pupki4\",layoutDependency:layoutDependency,layoutId:\"aD1t9Rimb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8l8afo\",\"data-framer-name\":\"Logo ve Buton\",layoutDependency:layoutDependency,layoutId:\"o2UIEc6ty\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ilab0i\",layoutDependency:layoutDependency,layoutId:\"q0NE5Eyg4\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"kdkbQc4I5\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+0+1+-17),pixelHeight:2048,pixelWidth:2048,sizes:\"83px\",src:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png\",srcSet:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png 2048w\"},className:\"framer-yt7omy framer-lbojjm\",\"data-framer-name\":\"Untitled\",layoutDependency:layoutDependency,layoutId:\"kdkbQc4I5\",style:{transformPerspective:1200},whileHover:animation,whileTap:animation1,...addPropertyOverrides({A24y2y9al:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+0+1+-1),pixelHeight:2048,pixelWidth:2048,sizes:\"51px\",src:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png\",srcSet:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png 2048w\"}},kjlGWkCP6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+0+11+-27),pixelHeight:2048,pixelWidth:2048,sizes:\"83px\",src:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png\",srcSet:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png 2048w\"}},lSq9KDaKT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+0+1+-1),pixelHeight:2048,pixelWidth:2048,sizes:\"51px\",src:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png\",srcSet:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png 2048w\"}},pD72JYD7U:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+0+11+-27),pixelHeight:2048,pixelWidth:2048,sizes:\"83px\",src:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png\",srcSet:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png 2048w\"}},SlSkx1g4I:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+0+11+-27),pixelHeight:2048,pixelWidth:2048,sizes:\"83px\",src:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png\",srcSet:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png 2048w\"}},vDMn2tpnF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+0+11+-27),pixelHeight:2048,pixelWidth:2048,sizes:\"83px\",src:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png\",srcSet:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png 2048w\"}},Z6bJPFh7Y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+0+11+-27),pixelHeight:2048,pixelWidth:2048,sizes:\"83px\",src:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png\",srcSet:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png 2048w\"}},ZAMpCp1AF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+0+11+-27),pixelHeight:2048,pixelWidth:2048,sizes:\"83px\",src:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png\",srcSet:\"https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RzyUSzpWwQZB8SvZKz4txaIHpA.png 2048w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"nj7ntDrdB\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-dthf8 framer-lbojjm\",layoutDependency:layoutDependency,layoutId:\"nj7ntDrdB\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11111pk\",\"data-framer-name\":\"K\u0131rm\u0131z\u0131 Logo\",layoutDependency:layoutDependency,layoutId:\"dERGdV8l3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11bhovi\",\"data-framer-name\":\"K\u0131rm\u0131z\u0131 Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"dupOAChNw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 187 29\"><path d=\"M 180.125 22.573 C 178.633 22.573 177.312 22.247 176.16 21.598 C 175.036 20.953 174.117 20.014 173.506 18.887 C 172.867 17.729 172.547 16.378 172.547 14.835 C 172.547 13.312 172.856 11.972 173.475 10.814 C 174.114 9.636 174.988 8.722 176.097 8.072 C 177.204 7.402 178.494 7.067 179.966 7.067 C 181.373 7.067 182.598 7.362 183.642 7.951 C 184.69 8.522 185.546 9.379 186.105 10.418 C 186.702 11.454 187 12.672 187 14.073 L 187 15.109 L 173.762 15.109 L 173.826 13.586 L 184.794 13.586 C 184.794 12.165 184.346 11.027 183.451 10.174 C 182.576 9.301 181.415 8.864 179.966 8.864 C 178.9 8.864 177.962 9.098 177.151 9.565 C 176.362 10.032 175.755 10.702 175.329 11.575 C 174.902 12.429 174.69 13.444 174.69 14.622 C 174.69 16.572 175.159 18.084 176.097 19.161 C 177.055 20.237 178.409 20.775 180.158 20.775 C 181.415 20.775 182.449 20.521 183.259 20.014 C 184.069 19.506 184.613 18.764 184.89 17.79 L 187 17.79 C 186.595 19.333 185.806 20.521 184.633 21.354 C 183.461 22.166 181.958 22.573 180.125 22.573 Z M 152.737 14.866 C 152.737 13.322 153.047 11.972 153.665 10.814 C 154.305 9.636 155.178 8.722 156.287 8.072 C 157.416 7.402 158.727 7.067 160.22 7.067 C 162.01 7.067 163.514 7.524 164.729 8.438 C 165.965 9.352 166.732 10.57 167.031 12.093 L 164.824 12.093 C 164.525 11.078 163.961 10.296 163.129 9.748 C 162.298 9.2 161.339 8.925 160.252 8.925 C 159.228 8.925 158.311 9.169 157.502 9.656 C 156.692 10.144 156.052 10.834 155.583 11.728 C 155.135 12.601 154.912 13.637 154.912 14.835 C 154.912 16.013 155.125 17.038 155.551 17.912 C 155.977 18.785 156.574 19.465 157.342 19.952 C 158.13 20.44 159.047 20.684 160.091 20.684 C 161.265 20.684 162.277 20.41 163.129 19.861 C 163.96 19.321 164.572 18.513 164.856 17.577 L 167.094 17.577 C 166.874 18.545 166.413 19.445 165.751 20.197 C 165.076 20.959 164.234 21.562 163.289 21.963 C 162.33 22.369 161.265 22.573 160.091 22.573 C 158.621 22.573 157.331 22.258 156.223 21.628 C 155.135 20.978 154.283 20.075 153.665 18.917 C 153.047 17.759 152.737 16.409 152.737 14.865 Z M 158.493 27.325 L 158.493 26.045 C 158.792 26.187 159.079 26.299 159.357 26.38 C 159.655 26.482 159.964 26.533 160.284 26.533 C 160.71 26.533 161.062 26.441 161.339 26.258 C 161.637 26.076 161.787 25.822 161.787 25.497 C 161.787 25.152 161.659 24.897 161.402 24.735 C 161.168 24.573 160.87 24.492 160.507 24.492 C 160.209 24.492 159.953 24.512 159.74 24.552 C 159.467 24.636 159.2 24.738 158.941 24.857 L 158.621 24.096 L 159.995 21.293 L 160.859 21.323 L 160.859 22.146 L 159.932 24.066 L 159.612 23.791 C 160.103 23.547 160.603 23.425 161.115 23.425 C 161.52 23.425 161.883 23.497 162.203 23.639 C 162.543 23.801 162.81 24.035 163.002 24.339 C 163.214 24.644 163.322 25.009 163.322 25.436 C 163.322 26.228 163.033 26.816 162.458 27.203 C 161.883 27.589 161.222 27.782 160.476 27.782 C 160.07 27.782 159.708 27.741 159.388 27.66 C 159.072 27.6 158.769 27.487 158.493 27.325 Z M 138.065 22.207 L 135.859 22.207 L 135.859 0 L 138.065 0 L 138.065 15.079 L 145.739 7.463 L 148.522 7.463 L 142.575 13.343 L 148.554 22.207 L 145.996 22.207 L 141.072 14.835 L 138.065 17.79 Z M 113.306 14.835 C 113.306 13.312 113.646 11.972 114.329 10.815 C 114.997 9.67 115.97 8.722 117.143 8.072 C 118.336 7.402 119.679 7.067 121.171 7.067 C 122.685 7.067 124.028 7.402 125.2 8.072 C 126.373 8.722 127.345 9.669 128.014 10.814 C 128.696 11.972 129.037 13.312 129.037 14.835 C 129.037 16.318 128.696 17.648 128.014 18.825 C 127.345 19.97 126.373 20.917 125.2 21.567 C 124.028 22.237 122.685 22.573 121.171 22.573 C 119.679 22.573 118.336 22.237 117.143 21.567 C 115.97 20.918 114.998 19.971 114.329 18.826 C 113.646 17.648 113.306 16.318 113.306 14.836 Z M 115.544 14.805 C 115.544 15.962 115.779 16.988 116.248 17.881 C 116.713 18.729 117.396 19.443 118.23 19.953 C 119.082 20.44 120.063 20.683 121.171 20.683 C 122.28 20.683 123.249 20.44 124.081 19.953 C 124.925 19.455 125.611 18.737 126.064 17.881 C 126.554 16.988 126.799 15.962 126.799 14.805 C 126.799 13.667 126.554 12.662 126.064 11.789 C 125.611 10.933 124.925 10.215 124.081 9.717 C 123.249 9.21 122.28 8.956 121.171 8.956 C 120.063 8.956 119.082 9.21 118.23 9.717 C 117.396 10.227 116.713 10.941 116.248 11.789 C 115.779 12.662 115.544 13.667 115.544 14.805 Z M 118.837 5.148 C 118.411 5.148 118.038 5.006 117.718 4.722 C 117.429 4.439 117.267 4.055 117.27 3.655 C 117.27 3.249 117.42 2.894 117.718 2.589 C 118.012 2.295 118.416 2.13 118.837 2.132 C 119.263 2.132 119.636 2.285 119.956 2.589 C 120.276 2.894 120.436 3.249 120.436 3.655 C 120.436 4.041 120.276 4.387 119.956 4.691 C 119.662 4.985 119.258 5.15 118.837 5.148 Z M 123.506 5.148 C 123.09 5.152 122.689 5 122.386 4.722 C 122.097 4.439 121.935 4.055 121.938 3.655 C 121.938 3.249 122.088 2.894 122.386 2.589 C 122.681 2.295 123.085 2.13 123.506 2.132 C 123.932 2.132 124.295 2.285 124.593 2.589 C 124.912 2.894 125.072 3.249 125.072 3.655 C 125.072 4.041 124.912 4.387 124.593 4.691 C 124.313 4.988 123.918 5.154 123.506 5.148 Z M 91.466 14.409 C 91.466 13.069 91.755 11.849 92.33 10.753 C 92.892 9.651 93.755 8.723 94.823 8.073 C 95.912 7.403 97.211 7.067 98.725 7.067 C 100.196 7.067 101.453 7.412 102.498 8.103 C 103.543 8.793 104.289 9.788 104.736 11.088 L 104.385 11.515 L 104.673 7.463 L 106.591 7.463 L 106.591 21.75 C 106.591 23.212 106.282 24.481 105.664 25.558 C 105.065 26.636 104.152 27.516 103.042 28.086 C 101.933 28.696 100.622 29 99.108 29 C 97.126 29 95.484 28.492 94.185 27.477 C 92.884 26.462 92.075 25.07 91.755 23.304 L 93.961 23.304 C 94.196 24.502 94.76 25.426 95.655 26.076 C 96.572 26.746 97.734 27.081 99.141 27.081 C 100.74 27.081 102.018 26.614 102.978 25.68 C 103.937 24.745 104.417 23.507 104.417 21.963 L 104.417 17.333 L 104.736 17.729 C 104.312 18.939 103.492 19.977 102.402 20.684 C 101.315 21.394 100.036 21.75 98.565 21.75 C 97.094 21.75 95.827 21.415 94.76 20.745 C 93.711 20.094 92.861 19.178 92.297 18.095 C 91.743 16.978 91.466 15.749 91.466 14.409 Z M 93.674 14.379 C 93.674 15.393 93.876 16.318 94.281 17.15 C 94.683 17.956 95.302 18.641 96.071 19.13 C 96.86 19.618 97.798 19.861 98.885 19.861 C 99.994 19.861 100.942 19.628 101.731 19.161 C 102.523 18.692 103.165 18.017 103.586 17.211 C 104.012 16.379 104.224 15.434 104.224 14.378 C 104.224 13.322 104.012 12.388 103.586 11.576 C 103.194 10.778 102.571 10.11 101.794 9.656 C 101.028 9.169 100.067 8.926 98.917 8.926 C 97.808 8.926 96.86 9.179 96.071 9.686 C 95.302 10.175 94.683 10.86 94.281 11.667 C 93.876 12.479 93.673 13.383 93.673 14.378 Z M 78.229 7.463 L 86.608 7.463 L 86.608 9.23 L 78.23 9.23 L 78.23 7.463 Z M 83.506 22.207 L 81.332 22.207 L 81.332 2.802 L 83.506 2.802 Z M 64.779 22.573 C 63.138 22.573 61.848 22.166 60.91 21.354 C 59.993 20.542 59.534 19.496 59.534 18.216 C 59.534 16.856 60.046 15.769 61.069 14.956 C 62.093 14.145 63.511 13.667 65.322 13.526 L 70.439 13.129 L 70.439 12.642 C 70.439 11.667 70.257 10.905 69.895 10.357 C 69.557 9.808 69.038 9.389 68.424 9.169 C 67.805 8.946 67.113 8.834 66.345 8.834 C 64.981 8.834 63.926 9.108 63.18 9.656 C 62.434 10.205 62.06 10.976 62.06 11.972 L 60.046 11.972 C 60.046 10.977 60.312 10.113 60.846 9.382 C 61.379 8.652 62.125 8.082 63.083 7.676 C 64.044 7.27 65.152 7.067 66.41 7.067 C 67.626 7.067 68.69 7.27 69.608 7.677 C 70.509 8.05 71.269 8.689 71.781 9.504 C 72.335 10.317 72.613 11.373 72.613 12.672 L 72.613 22.207 L 70.759 22.207 L 70.47 19.617 C 70.001 20.552 69.254 21.283 68.233 21.811 C 67.231 22.319 66.079 22.573 64.779 22.573 Z M 65.29 20.867 C 66.932 20.867 68.2 20.369 69.096 19.374 C 69.991 18.379 70.439 17.089 70.439 15.505 L 70.439 14.713 L 65.866 15.048 C 64.417 15.17 63.373 15.515 62.733 16.084 C 62.093 16.653 61.772 17.344 61.772 18.155 C 61.772 19.049 62.093 19.729 62.733 20.196 C 63.372 20.643 64.225 20.866 65.291 20.866 Z M 44.539 22.573 C 43.047 22.573 41.767 22.237 40.702 21.567 C 39.636 20.897 38.815 19.983 38.239 18.826 C 37.664 17.648 37.376 16.328 37.376 14.866 C 37.376 13.383 37.665 12.053 38.24 10.875 C 38.815 9.697 39.636 8.773 40.703 8.103 C 41.789 7.413 43.1 7.067 44.635 7.067 C 45.914 7.067 47.043 7.331 48.024 7.859 C 49.026 8.387 49.793 9.189 50.327 10.266 L 50.327 0 L 52.533 0 L 52.533 22.207 L 50.615 22.207 L 50.39 19.191 C 49.836 20.328 49.047 21.181 48.024 21.75 C 47.001 22.298 45.84 22.573 44.54 22.573 Z M 44.923 20.653 C 46.074 20.653 47.043 20.41 47.832 19.923 C 48.625 19.411 49.256 18.694 49.655 17.851 C 50.081 16.957 50.295 15.941 50.295 14.805 C 50.295 13.667 50.081 12.662 49.655 11.789 C 49.256 10.946 48.625 10.229 47.832 9.717 C 47.043 9.21 46.075 8.956 44.923 8.956 C 43.814 8.956 42.855 9.21 42.044 9.717 C 41.252 10.229 40.621 10.946 40.222 11.789 C 39.817 12.662 39.614 13.667 39.614 14.805 C 39.614 15.942 39.817 16.957 40.222 17.851 C 40.622 18.693 41.252 19.41 42.044 19.922 C 42.855 20.41 43.814 20.653 44.923 20.653 Z M 24.864 22.573 C 23.372 22.573 22.05 22.247 20.899 21.598 C 19.774 20.953 18.855 20.014 18.245 18.887 C 17.606 17.729 17.285 16.378 17.285 14.835 C 17.285 13.312 17.594 11.972 18.213 10.814 C 18.852 9.636 19.727 8.722 20.835 8.072 C 21.943 7.402 23.233 7.067 24.704 7.067 C 26.111 7.067 27.337 7.362 28.381 7.951 C 29.429 8.522 30.285 9.379 30.844 10.418 C 31.441 11.454 31.739 12.672 31.739 14.073 L 31.739 15.109 L 18.501 15.109 L 18.565 13.586 L 29.532 13.586 C 29.532 12.165 29.083 11.027 28.188 10.174 C 27.314 9.301 26.152 8.864 24.703 8.864 C 23.638 8.864 22.7 9.098 21.889 9.565 C 21.1 10.032 20.492 10.702 20.066 11.575 C 19.64 12.429 19.427 13.444 19.427 14.622 C 19.427 16.572 19.897 18.084 20.834 19.161 C 21.793 20.237 23.147 20.775 24.895 20.775 C 26.152 20.775 27.187 20.521 27.996 20.014 C 28.806 19.506 29.35 18.764 29.627 17.79 L 31.738 17.79 C 31.332 19.333 30.543 20.521 29.371 21.354 C 28.199 22.166 26.696 22.573 24.863 22.573 Z M 0 18.064 L 2.11 18.064 C 2.11 18.917 2.43 19.597 3.07 20.105 C 3.709 20.592 4.562 20.836 5.627 20.836 C 6.821 20.836 7.749 20.613 8.41 20.166 C 9.091 19.699 9.433 19.069 9.433 18.277 C 9.433 17.668 9.252 17.181 8.889 16.815 C 8.526 16.45 7.888 16.155 6.971 15.932 L 4.316 15.292 C 2.974 14.967 1.972 14.47 1.311 13.799 C 0.65 13.129 0.32 12.297 0.32 11.301 C 0.32 10.448 0.555 9.707 1.023 9.078 C 1.493 8.428 2.143 7.93 2.975 7.585 C 3.827 7.24 4.807 7.067 5.916 7.067 C 7.003 7.067 7.951 7.25 8.761 7.616 C 9.572 7.981 10.2 8.499 10.648 9.169 C 11.117 9.819 11.362 10.601 11.383 11.515 L 9.241 11.515 C 9.22 10.641 8.911 9.971 8.314 9.505 C 7.717 9.037 6.897 8.804 5.851 8.804 C 4.764 8.804 3.922 9.017 3.325 9.444 C 2.75 9.87 2.462 10.479 2.462 11.271 C 2.462 12.408 3.304 13.18 4.988 13.586 L 7.642 14.226 C 8.985 14.551 9.965 15.028 10.583 15.657 C 11.223 16.287 11.544 17.13 11.544 18.186 C 11.544 19.059 11.299 19.831 10.808 20.501 C 10.318 21.171 9.625 21.689 8.73 22.055 C 7.855 22.4 6.832 22.573 5.66 22.573 C 3.933 22.573 2.558 22.166 1.535 21.354 C 0.512 20.521 0 19.424 0 18.064 Z\" fill=\"rgb(232,72,72)\"></path></svg>',svgContentId:11744415139,withExternalLayout:true,...addPropertyOverrides({lSq9KDaKT:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 129 20\"><path d=\"M 124.257 15.568 C 123.228 15.568 122.317 15.343 121.522 14.895 C 120.746 14.45 120.113 13.803 119.692 13.026 C 119.25 12.227 119.03 11.295 119.03 10.231 C 119.03 9.181 119.243 8.257 119.67 7.458 C 120.111 6.646 120.714 6.015 121.479 5.567 C 122.243 5.105 123.132 4.874 124.147 4.874 C 125.118 4.874 125.963 5.077 126.684 5.483 C 127.407 5.877 127.997 6.468 128.382 7.185 C 128.794 7.899 129 8.739 129 9.706 L 129 10.42 L 119.868 10.42 L 119.912 9.37 L 127.478 9.37 C 127.478 8.39 127.169 7.605 126.552 7.017 C 125.948 6.414 125.147 6.113 124.147 6.113 C 123.412 6.113 122.765 6.274 122.206 6.597 C 121.662 6.919 121.243 7.381 120.949 7.983 C 120.654 8.572 120.508 9.272 120.508 10.084 C 120.508 11.429 120.831 12.472 121.479 13.214 C 122.14 13.957 123.074 14.328 124.28 14.328 C 125.147 14.328 125.86 14.152 126.419 13.803 C 126.978 13.452 127.353 12.941 127.544 12.269 L 129 12.269 C 128.721 13.333 128.177 14.152 127.367 14.727 C 126.559 15.287 125.522 15.568 124.257 15.568 Z M 105.364 10.252 C 105.364 9.188 105.578 8.257 106.004 7.458 C 106.445 6.646 107.048 6.015 107.813 5.567 C 108.592 5.105 109.496 4.874 110.526 4.874 C 111.761 4.874 112.798 5.189 113.636 5.819 C 114.489 6.45 115.019 7.29 115.224 8.34 L 113.702 8.34 C 113.496 7.64 113.107 7.101 112.533 6.723 C 111.959 6.345 111.298 6.155 110.548 6.155 C 109.842 6.155 109.209 6.323 108.651 6.659 C 108.092 6.996 107.651 7.472 107.327 8.088 C 107.019 8.69 106.864 9.405 106.864 10.231 C 106.864 11.043 107.011 11.75 107.305 12.353 C 107.599 12.955 108.011 13.424 108.54 13.76 C 109.085 14.097 109.717 14.265 110.437 14.265 C 111.247 14.265 111.945 14.076 112.533 13.697 C 113.106 13.325 113.528 12.767 113.724 12.122 L 115.268 12.122 C 115.116 12.79 114.798 13.411 114.342 13.929 C 113.876 14.454 113.295 14.87 112.643 15.147 C 111.982 15.427 111.247 15.568 110.437 15.568 C 109.423 15.568 108.533 15.35 107.769 14.916 C 107.019 14.468 106.431 13.845 106.004 13.046 C 105.578 12.248 105.364 11.317 105.364 10.252 Z M 109.335 18.845 L 109.335 17.962 C 109.541 18.06 109.739 18.137 109.931 18.193 C 110.136 18.263 110.349 18.299 110.57 18.299 C 110.864 18.299 111.107 18.235 111.298 18.109 C 111.504 17.983 111.607 17.808 111.607 17.584 C 111.607 17.346 111.519 17.17 111.342 17.059 C 111.18 16.947 110.975 16.891 110.724 16.891 C 110.518 16.891 110.342 16.905 110.195 16.932 C 110.007 16.99 109.822 17.061 109.644 17.143 L 109.423 16.618 L 110.371 14.685 L 110.967 14.706 L 110.967 15.273 L 110.327 16.597 L 110.107 16.408 C 110.445 16.239 110.791 16.155 111.144 16.155 C 111.423 16.155 111.673 16.205 111.894 16.303 C 112.128 16.414 112.312 16.576 112.445 16.786 C 112.592 16.996 112.666 17.248 112.666 17.542 C 112.666 18.088 112.467 18.494 112.07 18.761 C 111.673 19.027 111.217 19.16 110.702 19.16 C 110.423 19.16 110.173 19.132 109.952 19.076 C 109.734 19.035 109.525 18.957 109.335 18.845 Z M 95.243 15.315 L 93.721 15.315 L 93.721 0 L 95.243 0 L 95.243 10.399 L 100.537 5.147 L 102.456 5.147 L 98.354 9.202 L 102.478 15.315 L 100.714 15.315 L 97.317 10.231 L 95.243 12.269 Z M 78.163 10.231 C 78.163 9.181 78.397 8.257 78.868 7.459 C 79.33 6.669 80 6.015 80.81 5.567 C 81.633 5.105 82.559 4.874 83.588 4.874 C 84.633 4.874 85.559 5.105 86.368 5.567 C 87.177 6.015 87.848 6.668 88.309 7.458 C 88.779 8.257 89.015 9.181 89.015 10.231 C 89.015 11.254 88.779 12.171 88.309 12.983 C 87.848 13.772 87.177 14.426 86.368 14.874 C 85.559 15.336 84.633 15.568 83.588 15.568 C 82.559 15.568 81.633 15.336 80.81 14.874 C 80.001 14.426 79.33 13.773 78.868 12.983 C 78.397 12.171 78.163 11.254 78.163 10.232 Z M 79.706 10.21 C 79.706 11.008 79.869 11.716 80.192 12.332 C 80.513 12.916 80.984 13.409 81.56 13.761 C 82.148 14.097 82.824 14.264 83.588 14.264 C 84.353 14.264 85.022 14.097 85.596 13.761 C 86.178 13.417 86.651 12.922 86.964 12.332 C 87.302 11.716 87.471 11.008 87.471 10.21 C 87.471 9.426 87.302 8.732 86.964 8.13 C 86.651 7.54 86.178 7.045 85.596 6.701 C 85.022 6.352 84.353 6.177 83.588 6.177 C 82.824 6.177 82.148 6.352 81.56 6.701 C 80.984 7.053 80.513 7.546 80.192 8.13 C 79.869 8.732 79.706 9.426 79.706 10.21 Z M 81.978 3.55 C 81.684 3.55 81.427 3.452 81.207 3.257 C 81.007 3.062 80.896 2.797 80.898 2.521 C 80.898 2.241 81.001 1.996 81.207 1.786 C 81.41 1.583 81.688 1.469 81.978 1.47 C 82.272 1.47 82.53 1.576 82.75 1.786 C 82.971 1.996 83.082 2.241 83.082 2.521 C 83.082 2.787 82.971 3.026 82.75 3.235 C 82.547 3.438 82.269 3.552 81.978 3.55 Z M 85.199 3.55 C 84.913 3.553 84.636 3.448 84.427 3.257 C 84.227 3.062 84.116 2.797 84.118 2.521 C 84.118 2.241 84.221 1.996 84.427 1.786 C 84.63 1.582 84.909 1.469 85.199 1.47 C 85.493 1.47 85.743 1.576 85.949 1.786 C 86.169 1.996 86.28 2.241 86.28 2.521 C 86.28 2.787 86.169 3.026 85.949 3.235 C 85.756 3.44 85.484 3.554 85.199 3.55 Z M 63.097 9.937 C 63.097 9.013 63.296 8.172 63.693 7.416 C 64.08 6.656 64.676 6.016 65.413 5.568 C 66.164 5.106 67.06 4.874 68.104 4.874 C 69.119 4.874 69.986 5.112 70.708 5.588 C 71.428 6.064 71.943 6.75 72.251 7.647 L 72.009 7.941 L 72.208 5.147 L 73.531 5.147 L 73.531 15 C 73.531 16.008 73.318 16.883 72.891 17.626 C 72.478 18.37 71.848 18.976 71.083 19.37 C 70.318 19.79 69.413 20 68.369 20 C 67.001 20 65.869 19.65 64.972 18.95 C 64.075 18.25 63.517 17.29 63.296 16.072 L 64.818 16.072 C 64.98 16.898 65.369 17.535 65.987 17.983 C 66.619 18.446 67.42 18.677 68.391 18.677 C 69.494 18.677 70.376 18.354 71.038 17.71 C 71.7 17.066 72.031 16.212 72.031 15.147 L 72.031 11.954 L 72.251 12.227 C 71.959 13.061 71.393 13.778 70.641 14.265 C 69.891 14.754 69.009 15 67.994 15 C 66.979 15 66.105 14.769 65.369 14.307 C 64.646 13.858 64.059 13.226 63.67 12.479 C 63.288 11.709 63.097 10.861 63.097 9.937 Z M 64.62 9.917 C 64.62 10.616 64.759 11.254 65.039 11.828 C 65.316 12.384 65.743 12.856 66.274 13.193 C 66.818 13.53 67.465 13.697 68.215 13.697 C 68.98 13.697 69.634 13.537 70.178 13.214 C 70.724 12.891 71.167 12.426 71.458 11.87 C 71.751 11.296 71.898 10.644 71.898 9.916 C 71.898 9.188 71.751 8.543 71.458 7.983 C 71.187 7.433 70.758 6.973 70.222 6.659 C 69.693 6.323 69.031 6.156 68.237 6.156 C 67.472 6.156 66.818 6.33 66.274 6.68 C 65.743 7.018 65.316 7.49 65.039 8.046 C 64.759 8.606 64.619 9.23 64.619 9.916 Z M 53.966 5.147 L 59.745 5.147 L 59.745 6.366 L 53.966 6.366 L 53.966 5.147 Z M 57.606 15.315 L 56.106 15.315 L 56.106 1.932 L 57.606 1.932 Z M 44.687 15.568 C 43.555 15.568 42.665 15.287 42.018 14.727 C 41.386 14.167 41.069 13.446 41.069 12.563 C 41.069 11.625 41.422 10.875 42.128 10.314 C 42.834 9.755 43.812 9.426 45.062 9.328 L 48.591 9.054 L 48.591 8.719 C 48.591 8.046 48.466 7.521 48.216 7.143 C 47.983 6.764 47.625 6.475 47.201 6.323 C 46.775 6.17 46.297 6.092 45.768 6.092 C 44.826 6.092 44.099 6.281 43.584 6.659 C 43.07 7.038 42.812 7.57 42.812 8.257 L 41.422 8.257 C 41.422 7.57 41.606 6.974 41.974 6.47 C 42.342 5.967 42.856 5.574 43.517 5.294 C 44.18 5.014 44.944 4.874 45.812 4.874 C 46.651 4.874 47.385 5.014 48.018 5.294 C 48.64 5.552 49.164 5.992 49.518 6.554 C 49.9 7.115 50.091 7.843 50.091 8.739 L 50.091 15.315 L 48.812 15.315 L 48.613 13.529 C 48.29 14.174 47.774 14.678 47.069 15.042 C 46.379 15.392 45.584 15.568 44.687 15.568 Z M 45.039 14.391 C 46.172 14.391 47.047 14.048 47.665 13.361 C 48.283 12.675 48.591 11.786 48.591 10.693 L 48.591 10.147 L 45.437 10.378 C 44.437 10.462 43.717 10.7 43.276 11.092 C 42.834 11.485 42.613 11.961 42.613 12.521 C 42.613 13.137 42.834 13.606 43.276 13.928 C 43.716 14.237 44.305 14.39 45.04 14.39 Z M 30.725 15.568 C 29.695 15.568 28.813 15.336 28.078 14.874 C 27.342 14.412 26.776 13.781 26.379 12.983 C 25.982 12.171 25.784 11.261 25.784 10.252 C 25.784 9.23 25.983 8.312 26.379 7.5 C 26.776 6.688 27.342 6.05 28.078 5.588 C 28.828 5.112 29.732 4.874 30.791 4.874 C 31.673 4.874 32.452 5.056 33.129 5.42 C 33.82 5.784 34.349 6.337 34.717 7.08 L 34.717 0 L 36.239 0 L 36.239 15.315 L 34.916 15.315 L 34.761 13.235 C 34.379 14.019 33.835 14.608 33.129 15 C 32.423 15.378 31.622 15.568 30.725 15.568 Z M 30.99 14.243 C 31.783 14.243 32.452 14.076 32.997 13.74 C 33.543 13.387 33.979 12.892 34.254 12.311 C 34.548 11.694 34.695 10.994 34.695 10.21 C 34.695 9.426 34.548 8.732 34.254 8.13 C 33.979 7.549 33.543 7.054 32.997 6.701 C 32.452 6.352 31.784 6.177 30.99 6.177 C 30.225 6.177 29.563 6.352 29.004 6.701 C 28.457 7.054 28.022 7.549 27.747 8.13 C 27.467 8.732 27.328 9.426 27.328 10.21 C 27.328 10.994 27.467 11.694 27.747 12.311 C 28.022 12.892 28.458 13.387 29.004 13.739 C 29.563 14.076 30.225 14.243 30.99 14.243 Z M 17.152 15.568 C 16.123 15.568 15.211 15.343 14.417 14.895 C 13.641 14.45 13.007 13.803 12.586 13.026 C 12.145 12.227 11.924 11.295 11.924 10.231 C 11.924 9.181 12.137 8.257 12.564 7.458 C 13.005 6.646 13.608 6.015 14.373 5.567 C 15.137 5.105 16.027 4.874 17.042 4.874 C 18.012 4.874 18.858 5.077 19.578 5.483 C 20.301 5.877 20.892 6.468 21.277 7.185 C 21.689 7.899 21.895 8.739 21.895 9.706 L 21.895 10.42 L 12.763 10.42 L 12.807 9.37 L 20.372 9.37 C 20.372 8.39 20.063 7.605 19.445 7.017 C 18.842 6.414 18.041 6.113 17.041 6.113 C 16.306 6.113 15.659 6.274 15.1 6.597 C 14.556 6.919 14.136 7.381 13.842 7.983 C 13.549 8.572 13.401 9.272 13.401 10.084 C 13.401 11.429 13.725 12.472 14.372 13.214 C 15.034 13.957 15.968 14.328 17.173 14.328 C 18.041 14.328 18.754 14.152 19.313 13.803 C 19.872 13.452 20.247 12.941 20.438 12.269 L 21.894 12.269 C 21.614 13.333 21.07 14.152 20.261 14.727 C 19.453 15.287 18.416 15.568 17.151 15.568 Z M 0 12.458 L 1.456 12.458 C 1.456 13.046 1.676 13.515 2.118 13.866 C 2.559 14.201 3.147 14.37 3.882 14.37 C 4.705 14.37 5.345 14.216 5.801 13.908 C 6.272 13.586 6.507 13.151 6.507 12.605 C 6.507 12.185 6.382 11.849 6.132 11.597 C 5.882 11.345 5.441 11.141 4.809 10.988 L 2.978 10.546 C 2.051 10.322 1.36 9.979 0.904 9.517 C 0.448 9.054 0.221 8.481 0.221 7.794 C 0.221 7.206 0.383 6.694 0.706 6.261 C 1.03 5.812 1.478 5.469 2.052 5.231 C 2.64 4.993 3.316 4.874 4.081 4.874 C 4.831 4.874 5.485 5 6.044 5.252 C 6.603 5.504 7.036 5.861 7.345 6.323 C 7.669 6.772 7.838 7.311 7.853 7.941 L 6.375 7.941 C 6.36 7.339 6.147 6.877 5.735 6.555 C 5.324 6.232 4.757 6.072 4.036 6.072 C 3.286 6.072 2.705 6.219 2.294 6.513 C 1.897 6.807 1.698 7.227 1.698 7.773 C 1.698 8.557 2.279 9.09 3.441 9.37 L 5.272 9.811 C 6.198 10.035 6.874 10.364 7.301 10.798 C 7.742 11.232 7.963 11.814 7.963 12.542 C 7.963 13.144 7.794 13.677 7.456 14.139 C 7.118 14.601 6.64 14.958 6.022 15.21 C 5.419 15.448 4.713 15.568 3.905 15.568 C 2.713 15.568 1.764 15.287 1.059 14.727 C 0.353 14.152 0 13.396 0 12.458 Z\" fill=\"rgb(232,72,72)\"></path></svg>',svgContentId:12630016769}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q7v1ur\",\"data-framer-name\":\"Siyah Logo\",layoutDependency:layoutDependency,layoutId:\"t2eEuFCAj\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hjbpwz\",\"data-framer-name\":\"Siyah Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IUAGu3Pak\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 187 29\"><path d=\"M 180.125 22.573 C 178.633 22.573 177.312 22.247 176.16 21.598 C 175.036 20.953 174.117 20.014 173.506 18.887 C 172.867 17.729 172.547 16.378 172.547 14.835 C 172.547 13.312 172.856 11.972 173.475 10.814 C 174.114 9.636 174.988 8.722 176.097 8.072 C 177.204 7.402 178.494 7.067 179.966 7.067 C 181.373 7.067 182.598 7.362 183.642 7.951 C 184.69 8.522 185.546 9.379 186.105 10.418 C 186.702 11.454 187 12.672 187 14.073 L 187 15.109 L 173.762 15.109 L 173.826 13.586 L 184.794 13.586 C 184.794 12.165 184.346 11.027 183.451 10.174 C 182.576 9.301 181.415 8.864 179.966 8.864 C 178.9 8.864 177.962 9.098 177.151 9.565 C 176.362 10.032 175.755 10.702 175.329 11.575 C 174.902 12.429 174.69 13.444 174.69 14.622 C 174.69 16.572 175.159 18.084 176.097 19.161 C 177.055 20.237 178.409 20.775 180.158 20.775 C 181.415 20.775 182.449 20.521 183.259 20.014 C 184.069 19.506 184.613 18.764 184.89 17.79 L 187 17.79 C 186.595 19.333 185.806 20.521 184.633 21.354 C 183.461 22.166 181.958 22.573 180.125 22.573 Z M 152.737 14.866 C 152.737 13.322 153.047 11.972 153.665 10.814 C 154.305 9.636 155.178 8.722 156.287 8.072 C 157.416 7.402 158.727 7.067 160.22 7.067 C 162.01 7.067 163.514 7.524 164.729 8.438 C 165.965 9.352 166.732 10.57 167.031 12.093 L 164.824 12.093 C 164.525 11.078 163.961 10.296 163.129 9.748 C 162.298 9.2 161.339 8.925 160.252 8.925 C 159.228 8.925 158.311 9.169 157.502 9.656 C 156.692 10.144 156.052 10.834 155.583 11.728 C 155.135 12.601 154.912 13.637 154.912 14.835 C 154.912 16.013 155.125 17.038 155.551 17.912 C 155.977 18.785 156.574 19.465 157.342 19.952 C 158.13 20.44 159.047 20.684 160.091 20.684 C 161.265 20.684 162.277 20.41 163.129 19.861 C 163.96 19.321 164.572 18.513 164.856 17.577 L 167.094 17.577 C 166.874 18.545 166.413 19.445 165.752 20.197 C 165.076 20.959 164.234 21.562 163.289 21.963 C 162.33 22.369 161.265 22.573 160.091 22.573 C 158.621 22.573 157.331 22.258 156.223 21.628 C 155.135 20.978 154.283 20.075 153.665 18.917 C 153.047 17.759 152.737 16.409 152.737 14.865 Z M 158.493 27.325 L 158.493 26.045 C 158.792 26.187 159.079 26.299 159.357 26.38 C 159.655 26.482 159.964 26.533 160.284 26.533 C 160.71 26.533 161.062 26.441 161.339 26.258 C 161.637 26.076 161.787 25.822 161.787 25.497 C 161.787 25.152 161.659 24.897 161.402 24.735 C 161.168 24.573 160.87 24.492 160.507 24.492 C 160.209 24.492 159.953 24.512 159.74 24.552 C 159.467 24.636 159.2 24.738 158.941 24.857 L 158.621 24.096 L 159.995 21.293 L 160.859 21.323 L 160.859 22.146 L 159.932 24.066 L 159.612 23.791 C 160.103 23.547 160.603 23.425 161.115 23.425 C 161.52 23.425 161.883 23.497 162.203 23.639 C 162.543 23.801 162.81 24.035 163.002 24.339 C 163.214 24.644 163.322 25.009 163.322 25.436 C 163.322 26.228 163.033 26.816 162.458 27.203 C 161.883 27.589 161.222 27.782 160.476 27.782 C 160.07 27.782 159.708 27.741 159.388 27.66 C 159.072 27.6 158.769 27.487 158.493 27.325 Z M 138.065 22.207 L 135.859 22.207 L 135.859 0 L 138.065 0 L 138.065 15.079 L 145.739 7.463 L 148.522 7.463 L 142.575 13.343 L 148.554 22.207 L 145.996 22.207 L 141.072 14.835 L 138.065 17.79 Z M 113.306 14.835 C 113.306 13.312 113.646 11.972 114.329 10.815 C 114.997 9.67 115.97 8.722 117.143 8.072 C 118.336 7.402 119.679 7.067 121.171 7.067 C 122.685 7.067 124.028 7.402 125.2 8.072 C 126.373 8.722 127.345 9.669 128.014 10.814 C 128.696 11.972 129.037 13.312 129.037 14.835 C 129.037 16.318 128.696 17.648 128.014 18.825 C 127.345 19.97 126.373 20.917 125.2 21.567 C 124.028 22.237 122.685 22.573 121.171 22.573 C 119.679 22.573 118.336 22.237 117.143 21.567 C 115.97 20.918 114.998 19.971 114.329 18.826 C 113.646 17.648 113.306 16.318 113.306 14.836 Z M 115.544 14.805 C 115.544 15.962 115.779 16.988 116.248 17.881 C 116.713 18.729 117.396 19.443 118.23 19.953 C 119.082 20.44 120.063 20.683 121.171 20.683 C 122.28 20.683 123.249 20.44 124.081 19.953 C 124.925 19.455 125.611 18.737 126.064 17.881 C 126.554 16.988 126.799 15.962 126.799 14.805 C 126.799 13.667 126.554 12.662 126.064 11.789 C 125.611 10.933 124.925 10.215 124.081 9.717 C 123.249 9.21 122.28 8.956 121.171 8.956 C 120.063 8.956 119.082 9.21 118.23 9.717 C 117.396 10.227 116.713 10.941 116.248 11.789 C 115.779 12.662 115.544 13.667 115.544 14.805 Z M 118.837 5.148 C 118.411 5.148 118.038 5.006 117.718 4.722 C 117.429 4.439 117.267 4.055 117.27 3.655 C 117.27 3.249 117.42 2.894 117.718 2.589 C 118.012 2.295 118.416 2.13 118.837 2.132 C 119.263 2.132 119.636 2.285 119.956 2.589 C 120.276 2.894 120.436 3.249 120.436 3.655 C 120.436 4.041 120.276 4.387 119.956 4.691 C 119.662 4.985 119.258 5.15 118.837 5.148 Z M 123.506 5.148 C 123.09 5.152 122.689 5 122.386 4.722 C 122.097 4.439 121.935 4.055 121.938 3.655 C 121.938 3.249 122.087 2.894 122.386 2.589 C 122.681 2.295 123.085 2.13 123.506 2.132 C 123.932 2.132 124.295 2.285 124.593 2.589 C 124.912 2.894 125.072 3.249 125.072 3.655 C 125.072 4.041 124.912 4.387 124.593 4.691 C 124.313 4.988 123.918 5.154 123.506 5.148 Z M 91.466 14.409 C 91.466 13.069 91.755 11.849 92.33 10.753 C 92.892 9.651 93.755 8.723 94.823 8.073 C 95.912 7.403 97.211 7.067 98.725 7.067 C 100.196 7.067 101.453 7.412 102.498 8.103 C 103.543 8.793 104.289 9.788 104.736 11.088 L 104.385 11.515 L 104.673 7.463 L 106.591 7.463 L 106.591 21.75 C 106.591 23.212 106.282 24.481 105.664 25.558 C 105.065 26.636 104.152 27.516 103.042 28.086 C 101.933 28.696 100.622 29 99.108 29 C 97.126 29 95.484 28.492 94.185 27.477 C 92.884 26.462 92.075 25.07 91.755 23.304 L 93.961 23.304 C 94.196 24.502 94.76 25.426 95.655 26.076 C 96.572 26.746 97.734 27.081 99.141 27.081 C 100.74 27.081 102.018 26.614 102.978 25.68 C 103.937 24.745 104.417 23.507 104.417 21.963 L 104.417 17.333 L 104.736 17.729 C 104.312 18.939 103.492 19.977 102.402 20.684 C 101.315 21.394 100.036 21.75 98.565 21.75 C 97.094 21.75 95.827 21.415 94.76 20.745 C 93.711 20.094 92.861 19.178 92.297 18.095 C 91.743 16.978 91.466 15.749 91.466 14.409 Z M 93.674 14.379 C 93.674 15.393 93.876 16.318 94.281 17.15 C 94.683 17.956 95.302 18.641 96.071 19.13 C 96.86 19.618 97.798 19.861 98.885 19.861 C 99.994 19.861 100.942 19.628 101.731 19.161 C 102.523 18.692 103.165 18.017 103.586 17.211 C 104.012 16.379 104.224 15.434 104.224 14.378 C 104.224 13.322 104.012 12.388 103.586 11.576 C 103.194 10.778 102.571 10.11 101.794 9.656 C 101.028 9.169 100.067 8.926 98.917 8.926 C 97.808 8.926 96.86 9.179 96.071 9.686 C 95.302 10.175 94.683 10.86 94.281 11.667 C 93.876 12.479 93.673 13.383 93.673 14.378 Z M 78.229 7.463 L 86.608 7.463 L 86.608 9.23 L 78.23 9.23 L 78.23 7.463 Z M 83.506 22.207 L 81.332 22.207 L 81.332 2.802 L 83.506 2.802 Z M 64.779 22.573 C 63.138 22.573 61.848 22.166 60.91 21.354 C 59.993 20.542 59.534 19.496 59.534 18.216 C 59.534 16.856 60.046 15.769 61.069 14.956 C 62.093 14.145 63.511 13.667 65.322 13.526 L 70.439 13.129 L 70.439 12.642 C 70.439 11.667 70.257 10.905 69.895 10.357 C 69.557 9.808 69.038 9.389 68.424 9.169 C 67.805 8.946 67.113 8.834 66.345 8.834 C 64.981 8.834 63.926 9.108 63.18 9.656 C 62.434 10.205 62.06 10.976 62.06 11.972 L 60.046 11.972 C 60.046 10.977 60.312 10.113 60.846 9.382 C 61.379 8.652 62.125 8.082 63.083 7.676 C 64.044 7.27 65.152 7.067 66.41 7.067 C 67.626 7.067 68.69 7.27 69.608 7.677 C 70.509 8.05 71.269 8.689 71.781 9.504 C 72.335 10.317 72.613 11.373 72.613 12.672 L 72.613 22.207 L 70.759 22.207 L 70.47 19.617 C 70.001 20.552 69.254 21.283 68.233 21.811 C 67.231 22.319 66.079 22.573 64.779 22.573 Z M 65.29 20.867 C 66.932 20.867 68.2 20.369 69.096 19.374 C 69.991 18.379 70.439 17.089 70.439 15.505 L 70.439 14.713 L 65.866 15.048 C 64.417 15.17 63.373 15.515 62.733 16.084 C 62.093 16.653 61.772 17.344 61.772 18.155 C 61.772 19.049 62.093 19.729 62.733 20.196 C 63.372 20.643 64.225 20.866 65.291 20.866 Z M 44.539 22.573 C 43.047 22.573 41.767 22.237 40.702 21.567 C 39.636 20.897 38.815 19.983 38.239 18.826 C 37.664 17.648 37.376 16.328 37.376 14.866 C 37.376 13.383 37.665 12.053 38.24 10.875 C 38.815 9.697 39.636 8.773 40.703 8.103 C 41.789 7.413 43.1 7.067 44.635 7.067 C 45.914 7.067 47.043 7.331 48.024 7.859 C 49.026 8.387 49.793 9.189 50.327 10.266 L 50.327 0 L 52.533 0 L 52.533 22.207 L 50.615 22.207 L 50.39 19.191 C 49.836 20.328 49.047 21.181 48.024 21.75 C 47.001 22.298 45.84 22.573 44.54 22.573 Z M 44.923 20.653 C 46.074 20.653 47.043 20.41 47.832 19.923 C 48.625 19.411 49.256 18.694 49.655 17.851 C 50.081 16.957 50.295 15.941 50.295 14.805 C 50.295 13.667 50.081 12.662 49.655 11.789 C 49.256 10.946 48.625 10.229 47.832 9.717 C 47.043 9.21 46.075 8.956 44.923 8.956 C 43.814 8.956 42.855 9.21 42.044 9.717 C 41.252 10.229 40.621 10.946 40.222 11.789 C 39.817 12.662 39.614 13.667 39.614 14.805 C 39.614 15.942 39.817 16.957 40.222 17.851 C 40.622 18.693 41.252 19.41 42.044 19.922 C 42.855 20.41 43.814 20.653 44.923 20.653 Z M 24.864 22.573 C 23.372 22.573 22.05 22.247 20.899 21.598 C 19.774 20.953 18.855 20.014 18.245 18.887 C 17.606 17.729 17.285 16.378 17.285 14.835 C 17.285 13.312 17.594 11.972 18.213 10.814 C 18.852 9.636 19.727 8.722 20.835 8.072 C 21.943 7.402 23.233 7.067 24.704 7.067 C 26.111 7.067 27.337 7.362 28.381 7.951 C 29.429 8.522 30.285 9.379 30.844 10.418 C 31.441 11.454 31.739 12.672 31.739 14.073 L 31.739 15.109 L 18.501 15.109 L 18.565 13.586 L 29.532 13.586 C 29.532 12.165 29.083 11.027 28.188 10.174 C 27.314 9.301 26.152 8.864 24.703 8.864 C 23.638 8.864 22.7 9.098 21.889 9.565 C 21.1 10.032 20.492 10.702 20.066 11.575 C 19.64 12.429 19.427 13.444 19.427 14.622 C 19.427 16.572 19.897 18.084 20.834 19.161 C 21.793 20.237 23.147 20.775 24.895 20.775 C 26.152 20.775 27.187 20.521 27.996 20.014 C 28.806 19.506 29.35 18.764 29.627 17.79 L 31.738 17.79 C 31.332 19.333 30.543 20.521 29.371 21.354 C 28.199 22.166 26.696 22.573 24.863 22.573 Z M 0 18.064 L 2.11 18.064 C 2.11 18.917 2.43 19.597 3.07 20.105 C 3.709 20.592 4.562 20.836 5.627 20.836 C 6.821 20.836 7.749 20.613 8.41 20.166 C 9.091 19.699 9.433 19.069 9.433 18.277 C 9.433 17.668 9.252 17.181 8.889 16.815 C 8.526 16.45 7.888 16.155 6.971 15.932 L 4.316 15.292 C 2.974 14.967 1.972 14.47 1.311 13.799 C 0.65 13.129 0.32 12.297 0.32 11.301 C 0.32 10.448 0.555 9.707 1.023 9.078 C 1.493 8.428 2.143 7.93 2.975 7.585 C 3.827 7.24 4.807 7.067 5.916 7.067 C 7.003 7.067 7.951 7.25 8.761 7.616 C 9.572 7.981 10.2 8.499 10.648 9.169 C 11.117 9.819 11.362 10.601 11.383 11.515 L 9.241 11.515 C 9.22 10.641 8.911 9.971 8.314 9.505 C 7.717 9.037 6.897 8.804 5.851 8.804 C 4.764 8.804 3.922 9.017 3.325 9.444 C 2.75 9.87 2.462 10.479 2.462 11.271 C 2.462 12.408 3.304 13.18 4.988 13.586 L 7.642 14.226 C 8.985 14.551 9.965 15.028 10.583 15.657 C 11.223 16.287 11.544 17.13 11.544 18.186 C 11.544 19.059 11.299 19.831 10.808 20.501 C 10.318 21.171 9.625 21.689 8.73 22.055 C 7.855 22.4 6.832 22.573 5.66 22.573 C 3.933 22.573 2.558 22.166 1.535 21.354 C 0.512 20.521 0 19.424 0 18.064 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9675496938,withExternalLayout:true,...addPropertyOverrides({A24y2y9al:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 129 20\"><path d=\"M 124.257 15.568 C 123.228 15.568 122.317 15.343 121.522 14.895 C 120.746 14.45 120.113 13.803 119.692 13.026 C 119.25 12.227 119.03 11.295 119.03 10.231 C 119.03 9.181 119.243 8.257 119.67 7.458 C 120.111 6.646 120.714 6.015 121.479 5.567 C 122.243 5.105 123.132 4.874 124.147 4.874 C 125.118 4.874 125.963 5.077 126.684 5.483 C 127.407 5.877 127.997 6.468 128.383 7.185 C 128.794 7.899 129 8.739 129 9.706 L 129 10.42 L 119.868 10.42 L 119.912 9.37 L 127.478 9.37 C 127.478 8.39 127.169 7.605 126.552 7.017 C 125.948 6.414 125.147 6.113 124.147 6.113 C 123.412 6.113 122.765 6.274 122.206 6.597 C 121.662 6.919 121.243 7.381 120.949 7.983 C 120.654 8.572 120.508 9.272 120.508 10.084 C 120.508 11.429 120.831 12.472 121.479 13.214 C 122.14 13.957 123.074 14.328 124.28 14.328 C 125.147 14.328 125.86 14.152 126.419 13.803 C 126.978 13.452 127.353 12.941 127.544 12.269 L 129 12.269 C 128.721 13.333 128.177 14.152 127.367 14.727 C 126.559 15.287 125.522 15.568 124.257 15.568 Z M 105.364 10.252 C 105.364 9.188 105.578 8.257 106.004 7.458 C 106.445 6.646 107.048 6.015 107.813 5.567 C 108.592 5.105 109.496 4.874 110.526 4.874 C 111.761 4.874 112.798 5.189 113.636 5.819 C 114.489 6.45 115.019 7.29 115.225 8.34 L 113.702 8.34 C 113.496 7.64 113.107 7.101 112.533 6.723 C 111.959 6.345 111.298 6.155 110.548 6.155 C 109.842 6.155 109.209 6.323 108.651 6.659 C 108.092 6.996 107.651 7.472 107.327 8.088 C 107.019 8.69 106.864 9.405 106.864 10.231 C 106.864 11.043 107.012 11.75 107.305 12.353 C 107.599 12.955 108.011 13.424 108.54 13.76 C 109.085 14.097 109.717 14.265 110.437 14.265 C 111.247 14.265 111.945 14.076 112.533 13.697 C 113.106 13.325 113.528 12.767 113.724 12.122 L 115.268 12.122 C 115.116 12.79 114.798 13.411 114.342 13.929 C 113.876 14.454 113.295 14.87 112.643 15.147 C 111.982 15.427 111.247 15.568 110.437 15.568 C 109.423 15.568 108.533 15.35 107.769 14.916 C 107.019 14.468 106.431 13.845 106.004 13.046 C 105.578 12.248 105.364 11.317 105.364 10.252 Z M 109.335 18.845 L 109.335 17.962 C 109.541 18.06 109.739 18.137 109.931 18.193 C 110.136 18.263 110.349 18.299 110.57 18.299 C 110.864 18.299 111.107 18.235 111.298 18.109 C 111.504 17.983 111.607 17.808 111.607 17.584 C 111.607 17.346 111.519 17.17 111.342 17.059 C 111.18 16.947 110.975 16.891 110.724 16.891 C 110.518 16.891 110.342 16.905 110.195 16.932 C 110.007 16.99 109.822 17.061 109.644 17.143 L 109.423 16.618 L 110.371 14.685 L 110.967 14.706 L 110.967 15.273 L 110.327 16.597 L 110.107 16.408 C 110.445 16.239 110.791 16.155 111.144 16.155 C 111.423 16.155 111.673 16.205 111.894 16.303 C 112.128 16.414 112.312 16.576 112.445 16.786 C 112.592 16.996 112.666 17.248 112.666 17.542 C 112.666 18.088 112.467 18.494 112.07 18.761 C 111.673 19.027 111.217 19.16 110.702 19.16 C 110.423 19.16 110.173 19.132 109.952 19.076 C 109.734 19.035 109.525 18.957 109.335 18.845 Z M 95.243 15.315 L 93.721 15.315 L 93.721 0 L 95.243 0 L 95.243 10.399 L 100.537 5.147 L 102.456 5.147 L 98.354 9.202 L 102.478 15.315 L 100.714 15.315 L 97.317 10.231 L 95.243 12.269 Z M 78.163 10.231 C 78.163 9.181 78.397 8.257 78.868 7.459 C 79.33 6.669 80 6.015 80.81 5.567 C 81.633 5.105 82.559 4.874 83.588 4.874 C 84.633 4.874 85.559 5.105 86.368 5.567 C 87.177 6.015 87.848 6.668 88.309 7.458 C 88.78 8.257 89.015 9.181 89.015 10.231 C 89.015 11.254 88.78 12.171 88.309 12.983 C 87.848 13.772 87.177 14.426 86.368 14.874 C 85.559 15.336 84.633 15.568 83.588 15.568 C 82.559 15.568 81.633 15.336 80.81 14.874 C 80.001 14.426 79.33 13.773 78.868 12.983 C 78.397 12.171 78.163 11.254 78.163 10.232 Z M 79.706 10.21 C 79.706 11.008 79.869 11.716 80.192 12.332 C 80.513 12.916 80.984 13.409 81.56 13.761 C 82.148 14.097 82.824 14.264 83.588 14.264 C 84.353 14.264 85.022 14.097 85.596 13.761 C 86.178 13.417 86.651 12.922 86.964 12.332 C 87.302 11.716 87.471 11.008 87.471 10.21 C 87.471 9.426 87.302 8.732 86.964 8.13 C 86.651 7.54 86.178 7.045 85.596 6.701 C 85.022 6.352 84.353 6.177 83.588 6.177 C 82.824 6.177 82.148 6.352 81.56 6.701 C 80.984 7.053 80.513 7.546 80.192 8.13 C 79.869 8.732 79.706 9.426 79.706 10.21 Z M 81.978 3.55 C 81.684 3.55 81.427 3.452 81.207 3.257 C 81.007 3.062 80.896 2.797 80.898 2.521 C 80.898 2.241 81.001 1.996 81.207 1.786 C 81.41 1.583 81.688 1.469 81.978 1.47 C 82.272 1.47 82.53 1.576 82.75 1.786 C 82.971 1.996 83.082 2.241 83.082 2.521 C 83.082 2.787 82.971 3.026 82.75 3.235 C 82.547 3.438 82.269 3.552 81.978 3.55 Z M 85.199 3.55 C 84.913 3.553 84.636 3.448 84.427 3.257 C 84.227 3.062 84.116 2.797 84.118 2.521 C 84.118 2.241 84.221 1.996 84.427 1.786 C 84.63 1.582 84.909 1.469 85.199 1.47 C 85.493 1.47 85.743 1.576 85.949 1.786 C 86.169 1.996 86.28 2.241 86.28 2.521 C 86.28 2.787 86.169 3.026 85.949 3.235 C 85.756 3.44 85.484 3.554 85.199 3.55 Z M 63.097 9.937 C 63.097 9.013 63.296 8.172 63.693 7.416 C 64.08 6.656 64.676 6.016 65.413 5.568 C 66.164 5.106 67.06 4.874 68.104 4.874 C 69.119 4.874 69.986 5.112 70.708 5.588 C 71.428 6.064 71.943 6.75 72.251 7.647 L 72.009 7.941 L 72.208 5.147 L 73.531 5.147 L 73.531 15 C 73.531 16.008 73.318 16.883 72.891 17.626 C 72.478 18.37 71.848 18.976 71.083 19.37 C 70.318 19.79 69.413 20 68.369 20 C 67.001 20 65.869 19.65 64.972 18.95 C 64.075 18.25 63.517 17.29 63.296 16.072 L 64.818 16.072 C 64.98 16.898 65.369 17.535 65.987 17.983 C 66.619 18.446 67.42 18.677 68.391 18.677 C 69.494 18.677 70.376 18.354 71.038 17.71 C 71.7 17.066 72.031 16.212 72.031 15.147 L 72.031 11.954 L 72.251 12.227 C 71.959 13.061 71.393 13.778 70.641 14.265 C 69.891 14.754 69.009 15 67.994 15 C 66.979 15 66.105 14.769 65.369 14.307 C 64.646 13.858 64.059 13.226 63.67 12.479 C 63.288 11.709 63.097 10.861 63.097 9.937 Z M 64.62 9.917 C 64.62 10.616 64.759 11.254 65.039 11.828 C 65.316 12.384 65.743 12.856 66.274 13.193 C 66.818 13.53 67.465 13.697 68.215 13.697 C 68.98 13.697 69.634 13.537 70.178 13.214 C 70.724 12.891 71.167 12.426 71.458 11.87 C 71.751 11.296 71.898 10.644 71.898 9.916 C 71.898 9.188 71.751 8.543 71.458 7.983 C 71.187 7.433 70.758 6.973 70.222 6.659 C 69.693 6.323 69.031 6.156 68.237 6.156 C 67.472 6.156 66.818 6.33 66.274 6.68 C 65.743 7.018 65.316 7.49 65.039 8.046 C 64.759 8.606 64.619 9.23 64.619 9.916 Z M 53.966 5.147 L 59.745 5.147 L 59.745 6.366 L 53.966 6.366 L 53.966 5.147 Z M 57.606 15.315 L 56.106 15.315 L 56.106 1.932 L 57.606 1.932 Z M 44.687 15.568 C 43.555 15.568 42.665 15.287 42.018 14.727 C 41.386 14.167 41.069 13.446 41.069 12.563 C 41.069 11.625 41.422 10.875 42.128 10.314 C 42.834 9.755 43.812 9.426 45.062 9.328 L 48.591 9.054 L 48.591 8.719 C 48.591 8.046 48.466 7.521 48.216 7.143 C 47.983 6.764 47.625 6.475 47.201 6.323 C 46.775 6.17 46.297 6.092 45.768 6.092 C 44.826 6.092 44.099 6.281 43.584 6.659 C 43.07 7.038 42.812 7.57 42.812 8.257 L 41.422 8.257 C 41.422 7.57 41.606 6.974 41.974 6.47 C 42.342 5.967 42.856 5.574 43.517 5.294 C 44.18 5.014 44.944 4.874 45.812 4.874 C 46.651 4.874 47.385 5.014 48.018 5.294 C 48.64 5.552 49.164 5.992 49.518 6.554 C 49.9 7.115 50.091 7.843 50.091 8.739 L 50.091 15.315 L 48.812 15.315 L 48.613 13.529 C 48.29 14.174 47.774 14.678 47.069 15.042 C 46.379 15.392 45.584 15.568 44.687 15.568 Z M 45.039 14.391 C 46.172 14.391 47.047 14.048 47.665 13.361 C 48.283 12.675 48.591 11.786 48.591 10.693 L 48.591 10.147 L 45.437 10.378 C 44.437 10.462 43.717 10.7 43.276 11.092 C 42.834 11.485 42.613 11.961 42.613 12.521 C 42.613 13.137 42.834 13.606 43.276 13.928 C 43.716 14.237 44.305 14.39 45.04 14.39 Z M 30.725 15.568 C 29.695 15.568 28.813 15.336 28.078 14.874 C 27.342 14.412 26.776 13.781 26.379 12.983 C 25.982 12.171 25.784 11.261 25.784 10.252 C 25.784 9.23 25.983 8.312 26.379 7.5 C 26.776 6.688 27.342 6.05 28.078 5.588 C 28.828 5.112 29.732 4.874 30.791 4.874 C 31.673 4.874 32.452 5.056 33.129 5.42 C 33.82 5.784 34.349 6.337 34.717 7.08 L 34.717 0 L 36.239 0 L 36.239 15.315 L 34.916 15.315 L 34.761 13.235 C 34.379 14.019 33.835 14.608 33.129 15 C 32.423 15.378 31.622 15.568 30.725 15.568 Z M 30.99 14.243 C 31.783 14.243 32.452 14.076 32.997 13.74 C 33.543 13.387 33.979 12.892 34.254 12.311 C 34.548 11.694 34.695 10.994 34.695 10.21 C 34.695 9.426 34.548 8.732 34.254 8.13 C 33.979 7.549 33.543 7.054 32.997 6.701 C 32.452 6.352 31.784 6.177 30.99 6.177 C 30.225 6.177 29.563 6.352 29.004 6.701 C 28.457 7.054 28.022 7.549 27.747 8.13 C 27.467 8.732 27.328 9.426 27.328 10.21 C 27.328 10.994 27.467 11.694 27.747 12.311 C 28.022 12.892 28.458 13.387 29.004 13.739 C 29.563 14.076 30.225 14.243 30.99 14.243 Z M 17.152 15.568 C 16.123 15.568 15.211 15.343 14.417 14.895 C 13.641 14.45 13.007 13.803 12.586 13.026 C 12.145 12.227 11.924 11.295 11.924 10.231 C 11.924 9.181 12.137 8.257 12.564 7.458 C 13.005 6.646 13.608 6.015 14.373 5.567 C 15.137 5.105 16.027 4.874 17.042 4.874 C 18.012 4.874 18.858 5.077 19.578 5.483 C 20.301 5.877 20.892 6.468 21.277 7.185 C 21.689 7.899 21.895 8.739 21.895 9.706 L 21.895 10.42 L 12.763 10.42 L 12.807 9.37 L 20.372 9.37 C 20.372 8.39 20.063 7.605 19.445 7.017 C 18.842 6.414 18.041 6.113 17.041 6.113 C 16.306 6.113 15.659 6.274 15.1 6.597 C 14.556 6.919 14.136 7.381 13.842 7.983 C 13.549 8.572 13.401 9.272 13.401 10.084 C 13.401 11.429 13.725 12.472 14.372 13.214 C 15.034 13.957 15.968 14.328 17.173 14.328 C 18.041 14.328 18.754 14.152 19.313 13.803 C 19.872 13.452 20.247 12.941 20.438 12.269 L 21.894 12.269 C 21.614 13.333 21.07 14.152 20.261 14.727 C 19.453 15.287 18.416 15.568 17.151 15.568 Z M 0 12.458 L 1.456 12.458 C 1.456 13.046 1.676 13.515 2.118 13.866 C 2.559 14.201 3.147 14.37 3.882 14.37 C 4.705 14.37 5.345 14.216 5.801 13.908 C 6.272 13.586 6.507 13.151 6.507 12.605 C 6.507 12.185 6.382 11.849 6.132 11.597 C 5.882 11.345 5.441 11.141 4.809 10.988 L 2.978 10.546 C 2.051 10.322 1.36 9.979 0.904 9.517 C 0.448 9.054 0.221 8.481 0.221 7.794 C 0.221 7.206 0.383 6.694 0.706 6.261 C 1.03 5.812 1.478 5.469 2.052 5.231 C 2.64 4.993 3.316 4.874 4.081 4.874 C 4.831 4.874 5.485 5 6.044 5.252 C 6.603 5.504 7.036 5.861 7.345 6.323 C 7.669 6.772 7.838 7.311 7.853 7.941 L 6.375 7.941 C 6.36 7.339 6.147 6.877 5.735 6.555 C 5.324 6.232 4.757 6.072 4.036 6.072 C 3.286 6.072 2.705 6.219 2.294 6.513 C 1.897 6.807 1.698 7.227 1.698 7.773 C 1.698 8.557 2.279 9.09 3.441 9.37 L 5.272 9.811 C 6.198 10.035 6.874 10.364 7.301 10.798 C 7.742 11.232 7.963 11.814 7.963 12.542 C 7.963 13.144 7.794 13.677 7.456 14.139 C 7.118 14.601 6.64 14.958 6.022 15.21 C 5.419 15.448 4.713 15.568 3.905 15.568 C 2.713 15.568 1.764 15.287 1.059 14.727 C 0.353 14.152 0 13.396 0 12.458 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12503316348}},baseVariant,gestureVariant)})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ctd24m\",layoutDependency:layoutDependency,layoutId:\"tsXSVcyFM\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vebwnc\",layoutDependency:layoutDependency,layoutId:\"H8HVzXwze\",...addPropertyOverrides({A24y2y9al:{\"data-highlight\":true,onTap:onTap12158t4},lSq9KDaKT:{\"data-highlight\":true,onTap:onTapkiqtyv},pD72JYD7U:{\"data-highlight\":true,onTap:onTap19o8eku},SlSkx1g4I:{\"data-highlight\":true,onTap:onTap9biyz0},vDMn2tpnF:{\"data-highlight\":true,onTap:onTaplavvhp},Z6bJPFh7Y:{\"data-highlight\":true,onTap:onTap1bj63k2},ZAMpCp1AF:{\"data-highlight\":true,onTap:onTap172310t}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:\"51px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+0+0+0+0,...addPropertyOverrides({A24y2y9al:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+0+0+0+0},lSq9KDaKT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14g4zfp-container\",layoutDependency:layoutDependency,layoutId:\"UIXPkXGV0-container\",style:{rotate:180},children:/*#__PURE__*/_jsx(MenuIcon,{height:\"100%\",id:\"UIXPkXGV0\",layoutId:\"UIXPkXGV0\",style:{height:\"100%\",width:\"100%\"},variant:\"vbz6CtZUM\",width:\"100%\",xKXsSjOmu:xKXsSjOmub5df76,...addPropertyOverrides({A24y2y9al:{variant:\"sO5U41GJw\",xKXsSjOmu:undefined},av6XSyDTb:{xKXsSjOmu:xKXsSjOmu1k9oz3},dPqEkSO65:{xKXsSjOmu:xKXsSjOmu1rejkzo},Ir01EcvZY:{variant:\"WzpqP5PcX\",xKXsSjOmu:xKXsSjOmu172310t},kjlGWkCP6:{variant:\"WzpqP5PcX\",xKXsSjOmu:xKXsSjOmu19o8eku},Kvwl4Pt6U:{variant:\"WzpqP5PcX\",xKXsSjOmu:xKXsSjOmu9biyz0},lSq9KDaKT:{xKXsSjOmu:undefined},pD72JYD7U:{variant:\"sO5U41GJw\",xKXsSjOmu:undefined},qkguocPE2:{xKXsSjOmu:xKXsSjOmu7bx4ps},s0wOXnqmN:{variant:\"WzpqP5PcX\",xKXsSjOmu:xKXsSjOmu1bj63k2},SlSkx1g4I:{variant:\"sO5U41GJw\",xKXsSjOmu:undefined},vDMn2tpnF:{variant:\"sO5U41GJw\",xKXsSjOmu:undefined},wqR1hB61m:{variant:\"WzpqP5PcX\",xKXsSjOmu:xKXsSjOmulavvhp},YsL6kEURw:{xKXsSjOmu:xKXsSjOmuohl73u},Z6bJPFh7Y:{variant:\"sO5U41GJw\",xKXsSjOmu:undefined},ZAMpCp1AF:{variant:\"sO5U41GJw\",xKXsSjOmu:undefined}},baseVariant,gestureVariant)})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15jcq2v\",layoutDependency:layoutDependency,layoutId:\"le_bAj5dS\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ybct8k\",\"data-framer-name\":\"Main\",layoutDependency:layoutDependency,layoutId:\"Sc8lyKERW\",style:{opacity:0},variants:{A24y2y9al:{opacity:1},Ir01EcvZY:{opacity:1},kjlGWkCP6:{opacity:1},Kvwl4Pt6U:{opacity:1},lSq9KDaKT:{opacity:1},pD72JYD7U:{opacity:1},s0wOXnqmN:{opacity:1},SlSkx1g4I:{opacity:1},vDMn2tpnF:{opacity:1},wqR1hB61m:{opacity:1},Z6bJPFh7Y:{opacity:1},ZAMpCp1AF:{opacity:1}},children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uukuhh\",layoutDependency:layoutDependency,layoutId:\"q3gs84hL9\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15o0hpw\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"LdyL5oqn2\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"ipb5LBCI5\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-i4ud2m framer-lbojjm\",\"data-framer-name\":\"Ana Sayfa\",layoutDependency:layoutDependency,layoutId:\"ipb5LBCI5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+51+100+0+0+0,...addPropertyOverrides({A24y2y9al:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+51+50+0+0+0},lSq9KDaKT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+51+50+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-146luou-container\",layoutDependency:layoutDependency,layoutId:\"tNhu7VLgM-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"tNhu7VLgM\",layoutId:\"tNhu7VLgM\",variant:\"tfc4dj68c\",vs0QqrsoM:\"Ana Sayfa\",width:\"100%\",...addPropertyOverrides({av6XSyDTb:{variant:\"CcUVntybH\"},dPqEkSO65:{variant:\"CcUVntybH\"},Ir01EcvZY:{variant:\"CcUVntybH\"},kjlGWkCP6:{variant:\"nfPhZhO7Z\"},Kvwl4Pt6U:{variant:\"CcUVntybH\"},lSq9KDaKT:{variant:\"CcUVntybH\"},pD72JYD7U:{variant:\"VScAvofcP\"},qkguocPE2:{variant:\"CcUVntybH\"},s0wOXnqmN:{variant:\"CcUVntybH\"},wqR1hB61m:{variant:\"CcUVntybH\"},YsL6kEURw:{variant:\"CcUVntybH\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"esQpJxy7Y\"},nodeId:\"HopkFO_eG\",openInNewTab:false,...addPropertyOverrides({A24y2y9al:{href:{webPageId:\"n3zgcaeGQ\"}},pD72JYD7U:{href:{webPageId:\"n3zgcaeGQ\"}},SlSkx1g4I:{href:{webPageId:\"n3zgcaeGQ\"}},vDMn2tpnF:{href:{webPageId:\"n3zgcaeGQ\"}},Z6bJPFh7Y:{href:{webPageId:\"n3zgcaeGQ\"}},ZAMpCp1AF:{href:{webPageId:\"n3zgcaeGQ\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r0ogmu framer-lbojjm\",\"data-framer-name\":\"\\xc7al\u0131\u015Fmalar\",layoutDependency:layoutDependency,layoutId:\"HopkFO_eG\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+51+100+0+89+0+0,...addPropertyOverrides({A24y2y9al:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+51+50+0+89+0+0},lSq9KDaKT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+51+50+0+89+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gcuxi7-container\",layoutDependency:layoutDependency,layoutId:\"MRCJ_M8R2-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"MRCJ_M8R2\",layoutId:\"MRCJ_M8R2\",variant:\"CcUVntybH\",vs0QqrsoM:\"\\xc7al\u0131\u015Fmalar\",width:\"100%\",...addPropertyOverrides({A24y2y9al:{variant:\"tfc4dj68c\"},pD72JYD7U:{variant:\"tfc4dj68c\"},qkguocPE2:{variant:\"uPRvklGQ6\"},SlSkx1g4I:{variant:\"tfc4dj68c\"},vDMn2tpnF:{variant:\"VScAvofcP\"},wqR1hB61m:{variant:\"nfPhZhO7Z\"},Z6bJPFh7Y:{variant:\"tfc4dj68c\"},ZAMpCp1AF:{variant:\"tfc4dj68c\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oggG8YZDT\"},nodeId:\"Gup9OtknL\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ucvkp8 framer-lbojjm\",\"data-framer-name\":\"\\xd6d\\xfcller\",layoutDependency:layoutDependency,layoutId:\"Gup9OtknL\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+51+100+0+178+0+0,...addPropertyOverrides({A24y2y9al:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+51+50+0+178+0+0},lSq9KDaKT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+51+50+0+178+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1szqfe3-container\",layoutDependency:layoutDependency,layoutId:\"GbPiKQSr2-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"GbPiKQSr2\",layoutId:\"GbPiKQSr2\",variant:\"CcUVntybH\",vs0QqrsoM:\"\\xd6d\\xfcller\",width:\"100%\",...addPropertyOverrides({A24y2y9al:{variant:\"tfc4dj68c\"},pD72JYD7U:{variant:\"tfc4dj68c\"},SlSkx1g4I:{variant:\"tfc4dj68c\"},vDMn2tpnF:{variant:\"tfc4dj68c\"},Z6bJPFh7Y:{variant:\"tfc4dj68c\"},ZAMpCp1AF:{variant:\"VScAvofcP\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u6hU8G1Ue\"},nodeId:\"DoHsmGbbR\",openInNewTab:false,...addPropertyOverrides({kjlGWkCP6:{href:{webPageId:\"It1ytSfWi\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12czhrr framer-lbojjm\",\"data-framer-name\":\"Hakk\u0131mda\",layoutDependency:layoutDependency,layoutId:\"DoHsmGbbR\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+51+100+0+267+0,...addPropertyOverrides({A24y2y9al:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+51+50+0+267+0},lSq9KDaKT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+51+50+0+267+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dypke7-container\",layoutDependency:layoutDependency,layoutId:\"t6kmfpViz-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"t6kmfpViz\",layoutId:\"t6kmfpViz\",variant:\"CcUVntybH\",vs0QqrsoM:\"Hakk\u0131mda\",width:\"100%\",...addPropertyOverrides({A24y2y9al:{variant:\"tfc4dj68c\"},av6XSyDTb:{variant:\"uPRvklGQ6\"},pD72JYD7U:{variant:\"tfc4dj68c\"},s0wOXnqmN:{variant:\"nfPhZhO7Z\"},SlSkx1g4I:{variant:\"tfc4dj68c\"},vDMn2tpnF:{variant:\"tfc4dj68c\"},Z6bJPFh7Y:{variant:\"VScAvofcP\"},ZAMpCp1AF:{variant:\"tfc4dj68c\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"frKcwcKGt\"},nodeId:\"FjIW8Ofu9\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rdltrk framer-lbojjm\",\"data-framer-name\":\"\u0130leti\u015Fim\",layoutDependency:layoutDependency,layoutId:\"FjIW8Ofu9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+0+0+51+100+0+356+0,...addPropertyOverrides({A24y2y9al:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+51+50+0+356+0},lSq9KDaKT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0+51+50+0+356+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-byzov3-container\",layoutDependency:layoutDependency,layoutId:\"gZxJa2AOx-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"gZxJa2AOx\",layoutId:\"gZxJa2AOx\",variant:\"CcUVntybH\",vs0QqrsoM:\"\u0130leti\u015Fim\",width:\"100%\",...addPropertyOverrides({A24y2y9al:{variant:\"tfc4dj68c\"},dPqEkSO65:{variant:\"uPRvklGQ6\"},Ir01EcvZY:{variant:\"nfPhZhO7Z\"},Kvwl4Pt6U:{variant:\"nfPhZhO7Z\"},pD72JYD7U:{variant:\"tfc4dj68c\"},SlSkx1g4I:{variant:\"VScAvofcP\"},vDMn2tpnF:{variant:\"tfc4dj68c\"},YsL6kEURw:{variant:\"uPRvklGQ6\"},Z6bJPFh7Y:{variant:\"tfc4dj68c\"},ZAMpCp1AF:{variant:\"tfc4dj68c\"}},baseVariant,gestureVariant)})})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ysrujb\",layoutDependency:layoutDependency,layoutId:\"h49cR58KS\"})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-i4QVV.framer-lbojjm, .framer-i4QVV .framer-lbojjm { display: block; }\",\".framer-i4QVV.framer-6n95ha { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: flex-start; overflow: hidden; padding: 50px 100px 0px 100px; position: relative; width: 1200px; }\",\".framer-i4QVV .framer-pupki4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-i4QVV .framer-8l8afo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 51px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-i4QVV .framer-1ilab0i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 49px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-i4QVV .framer-yt7omy { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 83px); overflow: visible; position: relative; text-decoration: none; width: 83px; }\",\".framer-i4QVV .framer-dthf8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 29px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-i4QVV .framer-11111pk, .framer-i4QVV .framer-1q7v1ur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 129px; }\",\".framer-i4QVV .framer-11bhovi, .framer-i4QVV .framer-hjbpwz { flex: none; height: 29px; position: relative; width: 187px; }\",\".framer-i4QVV .framer-1ctd24m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-i4QVV .framer-vebwnc { flex: none; height: 51px; overflow: visible; position: relative; width: 51px; }\",\".framer-i4QVV .framer-14g4zfp-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-i4QVV .framer-15jcq2v { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 33px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-i4QVV .framer-1ybct8k { 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: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-i4QVV .framer-1uukuhh, .framer-i4QVV .framer-1ysrujb { flex: 1 0 0px; height: 91px; overflow: hidden; position: relative; width: 1px; }\",\".framer-i4QVV .framer-15o0hpw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-i4QVV .framer-i4ud2m, .framer-i4QVV .framer-12czhrr, .framer-i4QVV .framer-rdltrk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 53px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 169px; }\",\".framer-i4QVV .framer-146luou-container, .framer-i4QVV .framer-gcuxi7-container, .framer-i4QVV .framer-1szqfe3-container, .framer-i4QVV .framer-dypke7-container, .framer-i4QVV .framer-byzov3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-i4QVV .framer-r0ogmu, .framer-i4QVV .framer-ucvkp8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 53px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 169px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-i4QVV.framer-6n95ha, .framer-i4QVV .framer-pupki4, .framer-i4QVV .framer-1ilab0i, .framer-i4QVV .framer-dthf8, .framer-i4QVV .framer-11111pk, .framer-i4QVV .framer-1q7v1ur, .framer-i4QVV .framer-1ctd24m, .framer-i4QVV .framer-15jcq2v, .framer-i4QVV .framer-1ybct8k, .framer-i4QVV .framer-15o0hpw, .framer-i4QVV .framer-i4ud2m, .framer-i4QVV .framer-r0ogmu, .framer-i4QVV .framer-ucvkp8, .framer-i4QVV .framer-12czhrr, .framer-i4QVV .framer-rdltrk { gap: 0px; } .framer-i4QVV.framer-6n95ha > *, .framer-i4QVV .framer-r0ogmu > *, .framer-i4QVV .framer-ucvkp8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-i4QVV.framer-6n95ha > :first-child, .framer-i4QVV .framer-pupki4 > :first-child, .framer-i4QVV .framer-15o0hpw > :first-child, .framer-i4QVV .framer-r0ogmu > :first-child, .framer-i4QVV .framer-ucvkp8 > :first-child { margin-top: 0px; } .framer-i4QVV.framer-6n95ha > :last-child, .framer-i4QVV .framer-pupki4 > :last-child, .framer-i4QVV .framer-15o0hpw > :last-child, .framer-i4QVV .framer-r0ogmu > :last-child, .framer-i4QVV .framer-ucvkp8 > :last-child { margin-bottom: 0px; } .framer-i4QVV .framer-pupki4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-i4QVV .framer-1ilab0i > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-i4QVV .framer-1ilab0i > :first-child, .framer-i4QVV .framer-dthf8 > :first-child, .framer-i4QVV .framer-11111pk > :first-child, .framer-i4QVV .framer-1q7v1ur > :first-child, .framer-i4QVV .framer-1ctd24m > :first-child, .framer-i4QVV .framer-15jcq2v > :first-child, .framer-i4QVV .framer-1ybct8k > :first-child, .framer-i4QVV .framer-i4ud2m > :first-child, .framer-i4QVV .framer-12czhrr > :first-child, .framer-i4QVV .framer-rdltrk > :first-child { margin-left: 0px; } .framer-i4QVV .framer-1ilab0i > :last-child, .framer-i4QVV .framer-dthf8 > :last-child, .framer-i4QVV .framer-11111pk > :last-child, .framer-i4QVV .framer-1q7v1ur > :last-child, .framer-i4QVV .framer-1ctd24m > :last-child, .framer-i4QVV .framer-15jcq2v > :last-child, .framer-i4QVV .framer-1ybct8k > :last-child, .framer-i4QVV .framer-i4ud2m > :last-child, .framer-i4QVV .framer-12czhrr > :last-child, .framer-i4QVV .framer-rdltrk > :last-child { margin-right: 0px; } .framer-i4QVV .framer-dthf8 > *, .framer-i4QVV .framer-11111pk > *, .framer-i4QVV .framer-1q7v1ur > *, .framer-i4QVV .framer-1ctd24m > *, .framer-i4QVV .framer-1ybct8k > *, .framer-i4QVV .framer-i4ud2m > *, .framer-i4QVV .framer-12czhrr > *, .framer-i4QVV .framer-rdltrk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-i4QVV .framer-15jcq2v > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-i4QVV .framer-15o0hpw > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }\",\".framer-i4QVV.framer-v-vq5us2.framer-6n95ha, .framer-i4QVV.framer-v-100i268.framer-6n95ha, .framer-i4QVV.framer-v-ysafaq.framer-6n95ha, .framer-i4QVV.framer-v-15mxb4o.framer-6n95ha, .framer-i4QVV.framer-v-1vnz35j.framer-6n95ha, .framer-i4QVV.framer-v-1k2fgxu.framer-6n95ha { height: min-content; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 50px 100px 100px 100px; }\",\".framer-i4QVV.framer-v-vq5us2 .framer-1ilab0i, .framer-i4QVV.framer-v-100i268 .framer-1ilab0i, .framer-i4QVV.framer-v-ysafaq .framer-1ilab0i, .framer-i4QVV.framer-v-15mxb4o .framer-1ilab0i, .framer-i4QVV.framer-v-1vnz35j .framer-1ilab0i, .framer-i4QVV.framer-v-1k2fgxu .framer-1ilab0i { height: 29px; }\",\".framer-i4QVV.framer-v-vq5us2 .framer-i4ud2m, .framer-i4QVV.framer-v-1p43sqd .framer-i4ud2m, .framer-i4QVV.framer-v-wshni2 .framer-i4ud2m, .framer-i4QVV.framer-v-du7l1n .framer-i4ud2m, .framer-i4QVV.framer-v-1cm7swq .framer-i4ud2m, .framer-i4QVV.framer-v-100i268 .framer-i4ud2m, .framer-i4QVV.framer-v-ysafaq .framer-i4ud2m, .framer-i4QVV.framer-v-15mxb4o .framer-i4ud2m, .framer-i4QVV.framer-v-1vnz35j .framer-i4ud2m, .framer-i4QVV.framer-v-1k2fgxu .framer-i4ud2m { order: 0; }\",\".framer-i4QVV.framer-v-vq5us2 .framer-r0ogmu, .framer-i4QVV.framer-v-1p43sqd .framer-r0ogmu, .framer-i4QVV.framer-v-wshni2 .framer-r0ogmu, .framer-i4QVV.framer-v-du7l1n .framer-r0ogmu, .framer-i4QVV.framer-v-1cm7swq .framer-r0ogmu, .framer-i4QVV.framer-v-100i268 .framer-r0ogmu, .framer-i4QVV.framer-v-ysafaq .framer-r0ogmu, .framer-i4QVV.framer-v-15mxb4o .framer-r0ogmu, .framer-i4QVV.framer-v-1vnz35j .framer-r0ogmu, .framer-i4QVV.framer-v-1k2fgxu .framer-r0ogmu { order: 1; }\",\".framer-i4QVV.framer-v-vq5us2 .framer-ucvkp8, .framer-i4QVV.framer-v-1p43sqd .framer-ucvkp8, .framer-i4QVV.framer-v-wshni2 .framer-ucvkp8, .framer-i4QVV.framer-v-du7l1n .framer-ucvkp8, .framer-i4QVV.framer-v-1cm7swq .framer-ucvkp8, .framer-i4QVV.framer-v-100i268 .framer-ucvkp8, .framer-i4QVV.framer-v-ysafaq .framer-ucvkp8, .framer-i4QVV.framer-v-15mxb4o .framer-ucvkp8, .framer-i4QVV.framer-v-1vnz35j .framer-ucvkp8, .framer-i4QVV.framer-v-1k2fgxu .framer-ucvkp8 { order: 2; }\",\".framer-i4QVV.framer-v-vq5us2 .framer-12czhrr, .framer-i4QVV.framer-v-1p43sqd .framer-12czhrr, .framer-i4QVV.framer-v-wshni2 .framer-12czhrr, .framer-i4QVV.framer-v-du7l1n .framer-12czhrr, .framer-i4QVV.framer-v-1cm7swq .framer-12czhrr, .framer-i4QVV.framer-v-100i268 .framer-12czhrr, .framer-i4QVV.framer-v-ysafaq .framer-12czhrr, .framer-i4QVV.framer-v-15mxb4o .framer-12czhrr, .framer-i4QVV.framer-v-1vnz35j .framer-12czhrr, .framer-i4QVV.framer-v-1k2fgxu .framer-12czhrr { order: 3; }\",\".framer-i4QVV.framer-v-vq5us2 .framer-rdltrk, .framer-i4QVV.framer-v-1p43sqd .framer-rdltrk, .framer-i4QVV.framer-v-wshni2 .framer-rdltrk, .framer-i4QVV.framer-v-du7l1n .framer-rdltrk, .framer-i4QVV.framer-v-1cm7swq .framer-rdltrk, .framer-i4QVV.framer-v-100i268 .framer-rdltrk, .framer-i4QVV.framer-v-ysafaq .framer-rdltrk, .framer-i4QVV.framer-v-15mxb4o .framer-rdltrk, .framer-i4QVV.framer-v-1vnz35j .framer-rdltrk, .framer-i4QVV.framer-v-1k2fgxu .framer-rdltrk { order: 4; }\",\".framer-i4QVV.framer-v-1p43sqd.framer-6n95ha, .framer-i4QVV.framer-v-wshni2.framer-6n95ha, .framer-i4QVV.framer-v-du7l1n.framer-6n95ha, .framer-i4QVV.framer-v-1cm7swq.framer-6n95ha { height: min-content; min-height: calc(var(--framer-viewport-height, 100vh) * 1); }\",\".framer-i4QVV.framer-v-100i268 .framer-vebwnc, .framer-i4QVV.framer-v-ysafaq .framer-vebwnc, .framer-i4QVV.framer-v-15mxb4o .framer-vebwnc, .framer-i4QVV.framer-v-1vnz35j .framer-vebwnc, .framer-i4QVV.framer-v-676pnt .framer-vebwnc, .framer-i4QVV.framer-v-1mrbl6k .framer-vebwnc, .framer-i4QVV.framer-v-1k2fgxu .framer-vebwnc { cursor: pointer; }\",\".framer-i4QVV.framer-v-676pnt.framer-6n95ha { align-content: flex-start; align-items: flex-start; height: 100px; padding: 30px 20px 0px 20px; width: 360px; }\",\".framer-i4QVV.framer-v-676pnt .framer-yt7omy, .framer-i4QVV.framer-v-1mrbl6k .framer-yt7omy { height: 51px; width: var(--framer-aspect-ratio-supported, 51px); }\",\".framer-i4QVV.framer-v-676pnt .framer-11bhovi, .framer-i4QVV.framer-v-1mrbl6k .framer-hjbpwz { height: 20px; width: 129px; }\",\".framer-i4QVV.framer-v-676pnt .framer-1ctd24m, .framer-i4QVV.framer-v-1mrbl6k .framer-1ctd24m { justify-content: flex-end; }\",\".framer-i4QVV.framer-v-676pnt .framer-1ybct8k, .framer-i4QVV.framer-v-1mrbl6k .framer-1ybct8k { padding: 50px 0px 50px 0px; }\",\".framer-i4QVV.framer-v-1mrbl6k.framer-6n95ha { align-content: flex-start; align-items: flex-start; height: 1164px; padding: 30px 20px 0px 20px; width: 360px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 150\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"kjlGWkCP6\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"qkguocPE2\":{\"layout\":[\"fixed\",\"fixed\"]},\"wqR1hB61m\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"YsL6kEURw\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ir01EcvZY\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"av6XSyDTb\":{\"layout\":[\"fixed\",\"fixed\"]},\"s0wOXnqmN\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"dPqEkSO65\":{\"layout\":[\"fixed\",\"fixed\"]},\"Kvwl4Pt6U\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"pD72JYD7U\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"vDMn2tpnF\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"Z6bJPFh7Y\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"SlSkx1g4I\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"lSq9KDaKT\":{\"layout\":[\"fixed\",\"fixed\"]},\"A24y2y9al\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZAMpCp1AF\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerE79NGpQX1=withCSS(Component,css,\"framer-i4QVV\");export default FramerE79NGpQX1;FramerE79NGpQX1.displayName=\"Navbar\";FramerE79NGpQX1.defaultProps={height:150,width:1200};addPropertyControls(FramerE79NGpQX1,{variant:{options:[\"UdpdCZAxa\",\"kjlGWkCP6\",\"qkguocPE2\",\"wqR1hB61m\",\"YsL6kEURw\",\"Ir01EcvZY\",\"av6XSyDTb\",\"s0wOXnqmN\",\"dPqEkSO65\",\"Kvwl4Pt6U\",\"pD72JYD7U\",\"vDMn2tpnF\",\"Z6bJPFh7Y\",\"SlSkx1g4I\",\"lSq9KDaKT\",\"A24y2y9al\",\"ZAMpCp1AF\"],optionTitles:[\"Navbar/Home\",\"Active\",\"Navbar/\\xc7al\u0131\u015Fmalar\",\"Variant 4\",\"Navbar/\\xd6d\\xfcller\",\"Variant 8\",\"Navbar/Hakk\u0131mda\",\"Variant 6\",\"Navbar/\u0130leti\u015Fim\",\"Variant 8\",\"K\u0131rm\u0131z\u0131 active\",\"K\u0131rm\u0131z\u0131 active\",\"K\u0131rm\u0131z\u0131 active\",\"K\u0131rm\u0131z\u0131 active\",\"Home/mobile\",\"Variant 11\",\"K\u0131rm\u0131z\u0131 active\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerE79NGpQX1,[{explicitInter:true,fonts:[]},...MenuIconFonts,...NavButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerE79NGpQX1\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"150\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kjlGWkCP6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"qkguocPE2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wqR1hB61m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"YsL6kEURw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ir01EcvZY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"av6XSyDTb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s0wOXnqmN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"dPqEkSO65\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Kvwl4Pt6U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"pD72JYD7U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"vDMn2tpnF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"Z6bJPFh7Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"SlSkx1g4I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"lSq9KDaKT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A24y2y9al\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZAMpCp1AF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./E79NGpQX1.map"],
  "mappings": "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",
  "names": ["Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "j", "customShape", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "fontStore", "fonts", "css", "className", "AnimatorFonts", "getFonts", "Animator", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "RichText2", "ComponentViewportProvider", "css", "FramerdusFwSi8i", "withCSS", "dusFwSi8i_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xKXsSjOmu", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapf2tgxa", "args", "onAppearo7ivo8", "onAppear1xqk78m", "onAppear1l15kf6", "onAppeary2fpoi", "onAppear1lepwcu", "onAppear1g4aupm", "onAppear1cyixk9", "onAppear1tjjkif", "onAppear1ayadx7", "onAppear1wzvhi1", "onAppear1aqqyhn", "onAppear1mocfvy", "onAppear1mc2y6e", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerixQz0LEzL", "withCSS", "ixQz0LEzL_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vs0QqrsoM", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnteru0l4m0", "args", "onMouseLeavetetd19", "onMouseEnter35ikxj", "onMouseLeaveu2a8z9", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FrameroNcHkJo90", "withCSS", "oNcHkJo90_default", "addPropertyControls", "ControlType", "addFonts", "MenuIconFonts", "getFonts", "ixQz0LEzL_default", "NavButtonFonts", "oNcHkJo90_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "onTap19o8eku", "args", "onTaplavvhp", "onTap1bj63k2", "onTap9biyz0", "onTapkiqtyv", "onTap12158t4", "onTap172310t", "xKXsSjOmub5df76", "xKXsSjOmu19o8eku", "xKXsSjOmu7bx4ps", "xKXsSjOmulavvhp", "xKXsSjOmuohl73u", "xKXsSjOmu172310t", "xKXsSjOmu1k9oz3", "xKXsSjOmu1bj63k2", "xKXsSjOmu1rejkzo", "xKXsSjOmu9biyz0", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "SVG", "ComponentViewportProvider", "css", "FramerE79NGpQX1", "withCSS", "E79NGpQX1_default", "addPropertyControls", "ControlType", "addFonts"]
}
