{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:lenis@1.1.9/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/lmxTNY42iOAFohUikImm/uW5G2AQ7Mqvd1ZuHOq2L/v9S8L1MxM.js", "ssg:https://framerusercontent.com/modules/iLM9KULU9VpCl53Ssg5l/xgOpkyhE0BCrOXY0zrWI/BlPDydIwy.js", "ssg:https://framerusercontent.com/modules/5kPYYhDz3uU7qczvZ0Qa/8WesNmMPOHKgLIieEq8k/QJiuFXkdI.js", "ssg:https://framerusercontent.com/modules/Jz6H7HFQhTchUp6uXcdd/lLG55dzzmG6WaJFQOMN3/AutoYearCopyright.js", "ssg:https://framerusercontent.com/modules/yqTOlAjrbCzcU50tOBWs/iMV7yQYo0OQuALRqVpee/G8MpIW_mB.js"],
  "sourcesContent": ["function clamp(t,i,e){return Math.max(t,Math.min(i,e))}class Animate{constructor(){this.isRunning=!1,this.value=0,this.from=0,this.to=0,this.duration=0,this.currentTime=0}advance(t){var i;if(!this.isRunning)return;let e=!1;if(this.duration&&this.easing){this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}else this.lerp?(this.value=function damp(t,i,e,s){return function lerp(t,i,e){return(1-e)*t+e*i}(t,i,1-Math.exp(-e*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0)):(this.value=this.to,e=!0);e&&this.stop(),null===(i=this.onUpdate)||void 0===i||i.call(this,this.value,e)}stop(){this.isRunning=!1}fromTo(t,i,{lerp:e,duration:s,easing:o,onStart:n,onUpdate:l}){this.from=this.value=t,this.to=i,this.lerp=e,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,null==n||n(),this.onUpdate=l}}class Dimensions{constructor({wrapper:t,content:i,autoResize:e=!0,debounce:s=250}={}){this.width=0,this.height=0,this.scrollWidth=0,this.scrollHeight=0,this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):this.wrapper instanceof HTMLElement&&(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):this.wrapper instanceof HTMLElement&&(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)},this.wrapper=t,this.content=i,e&&(this.debouncedResize=function debounce(t,i){let e;return function(){let s=arguments,o=this;clearTimeout(e),e=setTimeout((function(){t.apply(o,s)}),i)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){var t,i;null===(t=this.wrapperResizeObserver)||void 0===t||t.disconnect(),null===(i=this.contentResizeObserver)||void 0===i||i.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...i){let e=this.events[t]||[];for(let t=0,s=e.length;t<s;t++)e[t](...i)}on(t,i){var e;return(null===(e=this.events[t])||void 0===e?void 0:e.push(i))||(this.events[t]=[i]),()=>{var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}}off(t,i){var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(i,{wheelMultiplier:e=1,touchMultiplier:s=1}){this.lastDelta={x:0,y:0},this.windowWidth=0,this.windowHeight=0,this.onTouchStart=t=>{const{clientX:i,clientY:e}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=i,this.touchStart.y=e,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})},this.onTouchMove=t=>{var i,e,s,o;const{clientX:n,clientY:l}=t.targetTouches?t.targetTouches[0]:t,r=-(n-(null!==(e=null===(i=this.touchStart)||void 0===i?void 0:i.x)&&void 0!==e?e:0))*this.touchMultiplier,h=-(l-(null!==(o=null===(s=this.touchStart)||void 0===s?void 0:s.y)&&void 0!==o?o:0))*this.touchMultiplier;this.touchStart.x=n,this.touchStart.y=l,this.lastDelta={x:r,y:h},this.emitter.emit(\"scroll\",{deltaX:r,deltaY:h,event:t})},this.onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})},this.onWheel=i=>{let{deltaX:e,deltaY:s,deltaMode:o}=i;e*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,e*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:e,deltaY:s,event:i})},this.onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight},this.element=i,this.wheelMultiplier=e,this.touchMultiplier=s,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,i){return this.emitter.on(t,i)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel),this.element.removeEventListener(\"touchstart\",this.onTouchStart),this.element.removeEventListener(\"touchmove\",this.onTouchMove),this.element.removeEventListener(\"touchend\",this.onTouchEnd)}}class Lenis{constructor({wrapper:t=window,content:i=document.documentElement,wheelEventsTarget:e=t,eventsTarget:s=e,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:l=.075,touchInertiaMultiplier:r=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=.1,infinite:d=!1,orientation:u=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.userData={},this.lastVelocity=0,this.velocity=0,this.direction=0,this.onPointerDown=t=>{1===t.button&&this.reset()},this.onVirtualScroll=t=>{if(\"function\"==typeof this.options.virtualScroll&&!1===this.options.virtualScroll(t))return;const{deltaX:i,deltaY:e,event:s}=t;if(this.emitter.emit(\"virtual-scroll\",{deltaX:i,deltaY:e,event:s}),s.ctrlKey)return;const o=s.type.includes(\"touch\"),n=s.type.includes(\"wheel\");this.isTouching=\"touchstart\"===s.type||\"touchmove\"===s.type;if(this.options.syncTouch&&o&&\"touchstart\"===s.type&&!this.isStopped&&!this.isLocked)return void this.reset();const l=0===i&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===i;if(l||r)return;let h=s.composedPath();h=h.slice(0,h.indexOf(this.rootElement));const a=this.options.prevent;if(h.find((t=>{var i,e,s,l,r;return t instanceof Element&&(\"function\"==typeof a&&(null==a?void 0:a(t))||(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent\"))||o&&(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent-touch\"))||n&&(null===(s=t.hasAttribute)||void 0===s?void 0:s.call(t,\"data-lenis-prevent-wheel\"))||(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis\"))&&!(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis-stopped\")))})))return;if(this.isStopped||this.isLocked)return void s.preventDefault();if(!(this.options.syncTouch&&o||this.options.smoothWheel&&n))return this.isScrolling=\"native\",void this.animate.stop();s.preventDefault();let c=e;\"both\"===this.options.gestureOrientation?c=Math.abs(e)>Math.abs(i)?e:i:\"horizontal\"===this.options.gestureOrientation&&(c=i);const d=o&&this.options.syncTouch,u=o&&\"touchend\"===s.type&&Math.abs(c)>5;u&&(c=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+c,Object.assign({programmatic:!1},d?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.9\",t&&t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:i,wheelEventsTarget:e,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:l,touchInertiaMultiplier:r,duration:h,easing:a,lerp:c,infinite:d,gestureOrientation:p,orientation:u,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:i,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.addEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.removeEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,i){return this.emitter.on(t,i)}off(t,i){return this.emitter.off(t,i)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const i=t-(this.time||t);this.time=t,this.animate.advance(.001*i)}scrollTo(t,{offset:i=0,immediate:e=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:l=this.options.lerp,onStart:r,onComplete:h,force:a=!1,programmatic:c=!0,userData:d={}}={}){if(!this.isStopped&&!this.isLocked||a){if(\"string\"==typeof t&&[\"top\",\"left\",\"start\"].includes(t))t=0;else if(\"string\"==typeof t&&[\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let e;if(\"string\"==typeof t?e=document.querySelector(t):t instanceof HTMLElement&&(null==t?void 0:t.nodeType)&&(e=t),e){if(this.options.wrapper!==window){const t=this.rootElement.getBoundingClientRect();i-=this.isHorizontal?t.left:t.top}const s=e.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t&&(t+=i,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),t!==this.targetScroll)){if(this.userData=d,e)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),null==h||h(this),void(this.userData={});c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:l,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==r||r(this)},onUpdate:(t,i)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),i||this.emit(),i&&(this.reset(),this.emit(),null==h||h(this),this.userData={},this.preventNextNativeScrollEvent())}})}}}preventNextNativeScrollEvent(){this.__preventNextNativeScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextNativeScrollEvent}))}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,i){return(t%i+i)%i}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"lenis\";// import Lenis from \"@studio-freight/lenis\"\nimport{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);// Check Overlay overflow\nuseEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const checkOverflow=()=>{const htmlStyle=window.getComputedStyle(document.documentElement);const isOverflowHidden=htmlStyle.overflow===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}};// Set up MutationObserver for the html element\nconst htmlObserver=new MutationObserver(mutations=>{for(const mutation of mutations){if(mutation.type===\"attributes\"&&mutation.attributeName===\"style\"){checkOverflow();}}});// Observe the html element for style changes\nhtmlObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});// Initial check\ncheckOverflow();return()=>{htmlObserver.disconnect();};}},[]);// useEffect(() => {\n//     const overlayElement = document.getElementById(\"overlay\")\n//     if (overlayElement) {\n//         const handleMutation = (mutationsList, observer) => {\n//             for (const mutation of mutationsList) {\n//                 if (\n//                     mutation.type === \"childList\" &&\n//                     overlayElement.children.length > 0\n//                 ) {\n//                     // Check if the html tag has the style \"overflow: hidden;\"\n//                     const htmlElement = document.documentElement\n//                     console.log(htmlElement, \"htmlElement\")\n//                     const computedStyle =\n//                         window.getComputedStyle(htmlElement)\n//                     console.log(\"computedStyle\", computedStyle)\n//                     const isOverflowHidden =\n//                         computedStyle.overflow === \"hidden\"\n//                     console.log(\"isOverflowHidden\", isOverflowHidden)\n//                     if (isOverflowHidden) {\n//                         overlayElement.setAttribute(\n//                             \"data-lenis-prevent\",\n//                             \"true\"\n//                         )\n//                     }\n//                 }\n//             }\n//         }\n//         const observer = new MutationObserver(handleMutation)\n//         observer.observe(overlayElement, {\n//             childList: true,\n//             attributes: true,\n//             subtree: true,\n//         })\n//         return () => observer.disconnect()\n//     }\n// }, [])\nuseEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=[...document.querySelectorAll(\"a[href]\")].filter(anchor=>anchor.href.includes(\"#\")).map(anchor=>{const href=`#${anchor.href.split(\"#\").pop()}`;const decodedHref=decodeURIComponent(href);let scrollMargin=0;const targetElement=document.querySelector(decodedHref);if(targetElement){scrollMargin=parseInt(window.getComputedStyle(targetElement).scrollMarginTop);}return{href,scrollMargin,anchorElement:anchor};});const handleClick=(e,href,scrollMargin)=>{e.preventDefault();lenis.current.scrollTo(href,{offset:-scrollMargin});};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.addEventListener(\"click\",handlers[index]);});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.removeEventListener(\"click\",handlers[index]);});};},[lenis]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "// Generated by Framer (48da836)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-600\",\"GF;DM Sans-900\",\"GF;DM Sans-900italic\",\"GF;DM Sans-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAC5thS2f3ZGMZpg.woff2\",weight:\"900\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8gCm32RmYJpso5.woff2\",weight:\"900\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9XCm32RmYJpso5.woff2\",weight:\"600\"}]}];export const css=['.framer-1wvyg .framer-styles-preset-1edq59k:not(.rich-text-wrapper), .framer-1wvyg .framer-styles-preset-1edq59k.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.5px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-1wvyg .framer-styles-preset-1edq59k:not(.rich-text-wrapper), .framer-1wvyg .framer-styles-preset-1edq59k.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.5px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-1wvyg .framer-styles-preset-1edq59k:not(.rich-text-wrapper), .framer-1wvyg .framer-styles-preset-1edq59k.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.5px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-1wvyg\";\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 (ddd30d5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/lmxTNY42iOAFohUikImm/uW5G2AQ7Mqvd1ZuHOq2L/v9S8L1MxM.js\";const enabledGestures={ccSuq7b7N:{hover:true},Db74Kc4as:{hover:true},JPzolXcJk:{hover:true},U0DZWiP4e:{hover:true}};const cycleOrder=[\"ccSuq7b7N\",\"U0DZWiP4e\",\"SnbMXicwZ\",\"JPzolXcJk\",\"Db74Kc4as\",\"rtmkiZObQ\"];const serializationHash=\"framer-Q9ICH\";const variantClassNames={ccSuq7b7N:\"framer-v-1dwclwa\",Db74Kc4as:\"framer-v-mjbe33\",JPzolXcJk:\"framer-v-2kghuc\",rtmkiZObQ:\"framer-v-dc3uec\",SnbMXicwZ:\"framer-v-15xhpcr\",U0DZWiP4e:\"framer-v-1ncqk7l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Secondary Mobile\":\"rtmkiZObQ\",\"Secondary-Desktop\":\"JPzolXcJk\",\"Secondary-Tablet\":\"Db74Kc4as\",Desktop:\"ccSuq7b7N\",Mobile:\"SnbMXicwZ\",Tablet:\"U0DZWiP4e\"};const getProps=({buttonText,click,height,id,link,link2,width,...props})=>{return{...props,bDPcCemYJ:link??props.bDPcCemYJ,iQU51397O:click??props.iQU51397O,MrpUfPOP2:buttonText??props.MrpUfPOP2??\"Contact Us\",QTLf4qyKq:link2??props.QTLf4qyKq,variant:humanReadableVariantMap[props.variant]??props.variant??\"ccSuq7b7N\"};};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,MrpUfPOP2,bDPcCemYJ,iQU51397O,QTLf4qyKq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ccSuq7b7N\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap17o0twm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(iQU51397O){const res=await iQU51397O(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:bDPcCemYJ,nodeId:\"ccSuq7b7N\",openInNewTab:false,smoothScroll:true,...addPropertyOverrides({\"U0DZWiP4e-hover\":{href:undefined},JPzolXcJk:{href:QTLf4qyKq},U0DZWiP4e:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1dwclwa\",className,classNames)} framer-16boq2m`,\"data-border\":true,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"ccSuq7b7N\",onTap:onTap17o0twm,ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(117, 255, 186, 0.61)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(0, 137, 69, 1) 0%, rgba(0, 97, 49, 1) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\",...style},variants:{\"ccSuq7b7N-hover\":{boxShadow:\"0px 7px 7px 0px rgba(0, 134, 68, 0.24), 0px 15px 9px 0px rgba(0, 134, 68, 0.14), 0px 27px 11px 0px rgba(0, 134, 68, 0.06), 0px 41px 12px 0px rgba(0, 134, 68, 0.01)\"},\"Db74Kc4as-hover\":{\"--border-color\":\"rgba(117, 255, 186, 0.61)\",background:\"linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%)\",backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 7px 7px 0px rgba(0, 134, 68, 0.24), 0px 15px 9px 0px rgba(0, 134, 68, 0.14), 0px 27px 11px 0px rgba(0, 134, 68, 0.06), 0px 41px 12px 0px rgba(0, 134, 68, 0.01)\"},\"JPzolXcJk-hover\":{\"--border-color\":\"rgba(117, 255, 186, 0.61)\",background:\"linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%)\",backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 7px 7px 0px rgba(0, 134, 68, 0.24), 0px 15px 9px 0px rgba(0, 134, 68, 0.14), 0px 27px 11px 0px rgba(0, 134, 68, 0.06), 0px 41px 12px 0px rgba(0, 134, 68, 0.01)\"},\"U0DZWiP4e-hover\":{boxShadow:\"0px 7px 7px 0px rgba(0, 134, 68, 0.24), 0px 15px 9px 0px rgba(0, 134, 68, 0.14), 0px 27px 11px 0px rgba(0, 134, 68, 0.06), 0px 41px 12px 0px rgba(0, 134, 68, 0.01)\"},Db74Kc4as:{\"--border-color\":\"rgb(0, 134, 68)\",background:\"linear-gradient(180deg, var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) 0%, var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) 100%)\",backgroundColor:\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238))\"},JPzolXcJk:{\"--border-color\":\"rgb(0, 134, 68)\",background:\"linear-gradient(180deg, var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) 0%, var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) 100%)\",backgroundColor:\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238))\"},rtmkiZObQ:{\"--border-color\":\"rgb(0, 134, 68)\",background:\"linear-gradient(180deg, var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) 0%, var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) 100%)\",backgroundColor:\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238))\"}},...addPropertyOverrides({\"ccSuq7b7N-hover\":{\"data-framer-name\":undefined},\"Db74Kc4as-hover\":{\"data-framer-name\":undefined},\"JPzolXcJk-hover\":{\"data-framer-name\":undefined,\"data-highlight\":undefined,onTap:undefined},\"U0DZWiP4e-hover\":{\"data-framer-name\":undefined},Db74Kc4as:{\"data-framer-name\":\"Secondary-Tablet\"},JPzolXcJk:{\"data-framer-name\":\"Secondary-Desktop\",\"data-highlight\":undefined,onTap:undefined},rtmkiZObQ:{\"data-framer-name\":\"Secondary Mobile\"},SnbMXicwZ:{\"data-framer-name\":\"Mobile\"},U0DZWiP4e:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1edq59k\",\"data-styles-preset\":\"v9S8L1MxM\",children:\"Explore\"})}),className:\"framer-105gfhw\",\"data-framer-name\":\"Explore\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l_r13CcDb\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:MrpUfPOP2,variants:{Db74Kc4as:{\"--extracted-r6o4lv\":\"rgb(0, 87, 43)\"},JPzolXcJk:{\"--extracted-r6o4lv\":\"rgb(0, 87, 43)\"},rtmkiZObQ:{\"--extracted-r6o4lv\":\"rgb(0, 87, 43)\"},SnbMXicwZ:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Db74Kc4as:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1edq59k\",\"data-styles-preset\":\"v9S8L1MxM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 87, 43))\"},children:\"Contact Us\"})})},JPzolXcJk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1edq59k\",\"data-styles-preset\":\"v9S8L1MxM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 87, 43))\"},children:\"Contact Us\"})})},rtmkiZObQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 87, 43))\"},children:\"Contact Us\"})}),fonts:[\"GF;DM Sans-600\"]},SnbMXicwZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact Us\"})}),fonts:[\"GF;DM Sans-600\"]}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Q9ICH.framer-16boq2m, .framer-Q9ICH .framer-16boq2m { display: block; }\",\".framer-Q9ICH.framer-1dwclwa { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 48px; justify-content: center; overflow: hidden; padding: 16px 36px 16px 36px; position: relative; text-decoration: none; width: 138px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q9ICH .framer-105gfhw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Q9ICH.framer-1dwclwa { gap: 0px; } .framer-Q9ICH.framer-1dwclwa > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Q9ICH.framer-1dwclwa > :first-child { margin-left: 0px; } .framer-Q9ICH.framer-1dwclwa > :last-child { margin-right: 0px; } }\",\".framer-Q9ICH.framer-v-1ncqk7l.framer-1dwclwa { height: 40px; width: 120px; }\",\".framer-Q9ICH.framer-v-15xhpcr.framer-1dwclwa { height: 32px; width: 104px; }\",\".framer-Q9ICH.framer-v-2kghuc.framer-1dwclwa { padding: 16px 24px 16px 24px; width: min-content; }\",\".framer-Q9ICH.framer-v-mjbe33.framer-1dwclwa { height: 40px; padding: 16px 24px 16px 24px; width: min-content; }\",\".framer-Q9ICH.framer-v-dc3uec.framer-1dwclwa { height: 32px; padding: 16px 24px 16px 24px; width: min-content; }\",...sharedStyle.css,'.framer-Q9ICH[data-border=\"true\"]::after, .framer-Q9ICH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 138\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"U0DZWiP4e\":{\"layout\":[\"fixed\",\"fixed\"]},\"SnbMXicwZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"JPzolXcJk\":{\"layout\":[\"auto\",\"fixed\"]},\"Db74Kc4as\":{\"layout\":[\"auto\",\"fixed\"]},\"rtmkiZObQ\":{\"layout\":[\"auto\",\"fixed\"]},\"QINPhxwDF\":{\"layout\":[\"fixed\",\"fixed\"]},\"TuKtMoLy0\":{\"layout\":[\"fixed\",\"fixed\"]},\"k2d9DJcJf\":{\"layout\":[\"auto\",\"fixed\"]},\"coJQpePPs\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"MrpUfPOP2\":\"buttonText\",\"bDPcCemYJ\":\"link\",\"iQU51397O\":\"click\",\"QTLf4qyKq\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBlPDydIwy=withCSS(Component,css,\"framer-Q9ICH\");export default FramerBlPDydIwy;FramerBlPDydIwy.displayName=\"Button\";FramerBlPDydIwy.defaultProps={height:48,width:138};addPropertyControls(FramerBlPDydIwy,{variant:{options:[\"ccSuq7b7N\",\"U0DZWiP4e\",\"SnbMXicwZ\",\"JPzolXcJk\",\"Db74Kc4as\",\"rtmkiZObQ\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\",\"Secondary-Desktop\",\"Secondary-Tablet\",\"Secondary Mobile\"],title:\"Variant\",type:ControlType.Enum},MrpUfPOP2:{defaultValue:\"Contact Us\",displayTextArea:false,title:\"Button Text\",type:ControlType.String},bDPcCemYJ:{title:\"Link\",type:ControlType.Link},iQU51397O:{title:\"Click\",type:ControlType.EventHandler},QTLf4qyKq:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramerBlPDydIwy,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBlPDydIwy\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"U0DZWiP4e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SnbMXicwZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JPzolXcJk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Db74Kc4as\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"rtmkiZObQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"QINPhxwDF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TuKtMoLy0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k2d9DJcJf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"coJQpePPs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"MrpUfPOP2\\\":\\\"buttonText\\\",\\\"bDPcCemYJ\\\":\\\"link\\\",\\\"iQU51397O\\\":\\\"click\\\",\\\"QTLf4qyKq\\\":\\\"link2\\\"}\",\"framerIntrinsicWidth\":\"138\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7f69244)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-b3T9w .framer-styles-preset-5ukc8u:not(.rich-text-wrapper), .framer-b3T9w .framer-styles-preset-5ukc8u.rich-text-wrapper a { --framer-link-current-text-color: #fffae9; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #fffae9; --framer-link-hover-text-decoration: none; --framer-link-text-color: #fffae9; --framer-link-text-decoration: none; }\"];export const className=\"framer-b3T9w\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth 100%\n * @framerSupportedLayoutHeight 100%\n */export default function AutoYearCopyright(props){const{companyName,rightsText,showSymbol,showTrademark,trademarkType,yearPlacement,font,color,fontSize}=props;const currentYear=new Date().getFullYear();const symbol=showSymbol===\"yes\"?\"\\xa9\":\"\";const trademarkOptionActive=showTrademark===\"yes\";const trademarkSymbol=trademarkOptionActive?trademarkType===\"trademark\"?\"\u2122\":\"\\xae\":\"\";let finalCompanyName=companyName.trim();let finalRightsText=rightsText.trim();let dotAfterCompanyName=\"\";if(yearPlacement===\"beforeCompanyName\"){finalCompanyName=`${currentYear} ${finalCompanyName}`;}else if(yearPlacement===\"afterCompanyName\"&&finalCompanyName){finalCompanyName+=` ${currentYear}`;}else if(yearPlacement===\"beforeRightsText\"&&finalRightsText){finalRightsText=`${currentYear}. ${finalRightsText}`;}else if(yearPlacement===\"afterRightsText\"&&finalRightsText){finalRightsText+=` ${currentYear}`;dotAfterCompanyName=!trademarkOptionActive&&finalCompanyName&&finalRightsText?\".\":\"\";}else if(!finalCompanyName&&!finalRightsText){finalCompanyName=`${currentYear}`;}finalCompanyName+=trademarkSymbol?`${trademarkSymbol}`:\"\";let displayText=symbol?`${symbol} `:\"\";displayText+=finalCompanyName?`${finalCompanyName}${dotAfterCompanyName}`:\"\";if(finalCompanyName&&finalRightsText)displayText+=\" \";displayText+=finalRightsText;const textStyle={fontSize:`${fontSize}px`,color:color,...font};return /*#__PURE__*/_jsx(\"div\",{style:textStyle,children:displayText.trim()});}AutoYearCopyright.defaultProps={companyName:\"Company Name\",rightsText:\"All rights reserved\",showSymbol:\"yes\",showTrademark:\"no\",trademarkType:\"trademark\",yearPlacement:\"afterRightsText\",color:\"#999999\",fontSize:18,font:{family:\"Inter\"}};addPropertyControls(AutoYearCopyright,{font:{type:ControlType.Font,title:\"Font\",defaultValue:\"Inter\",controls:\"extended\"},color:{type:ControlType.Color,title:\"Font Color\",defaultValue:\"#999999\"},companyName:{type:ControlType.String,title:\"Company Name\",defaultValue:\"Company Name\"},rightsText:{type:ControlType.String,title:\"Rights Text\",defaultValue:\"All rights reserved\"},showSymbol:{type:ControlType.SegmentedEnum,title:\"Symbol\",options:[\"yes\",\"no\"],optionTitles:[\"Yes\",\"No\"],defaultValue:\"yes\"},showTrademark:{type:ControlType.SegmentedEnum,title:\"Trademark\",options:[\"yes\",\"no\"],optionTitles:[\"Yes\",\"No\"],defaultValue:\"no\"},trademarkType:{type:ControlType.Enum,options:[\"trademark\",\"registered\"],optionTitles:[\"Trademark\",\"Registered\"],defaultValue:\"trademark\",hidden:({showTrademark})=>showTrademark!==\"yes\"},yearPlacement:{type:ControlType.Enum,options:[\"beforeCompanyName\",\"afterCompanyName\",\"beforeRightsText\",\"afterRightsText\"],optionTitles:[\"Before Company\",\"After Company\",\"Before Rights\",\"After Rights\"],defaultValue:\"afterRightsText\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AutoYearCopyright\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"100%\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"100%\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AutoYearCopyright.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AutoYearCopyright from\"https://framerusercontent.com/modules/Jz6H7HFQhTchUp6uXcdd/lLG55dzzmG6WaJFQOMN3/AutoYearCopyright.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/5kPYYhDz3uU7qczvZ0Qa/8WesNmMPOHKgLIieEq8k/QJiuFXkdI.js\";const AutoYearCopyrightFonts=getFonts(AutoYearCopyright);const cycleOrder=[\"rwbOvfCWA\",\"xPFpc04yI\",\"pmIsQvJLa\",\"D7xfr4qcv\"];const serializationHash=\"framer-qRQNN\";const variantClassNames={D7xfr4qcv:\"framer-v-1wm7o87\",pmIsQvJLa:\"framer-v-guh3nk\",rwbOvfCWA:\"framer-v-fm7arv\",xPFpc04yI:\"framer-v-1bq19ps\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop-2\":\"xPFpc04yI\",Desktop:\"rwbOvfCWA\",Mobile:\"D7xfr4qcv\",Tablet:\"pmIsQvJLa\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rwbOvfCWA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rwbOvfCWA\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"D7xfr4qcv\")return true;return false;};const isDisplayed1=()=>{if([\"pmIsQvJLa\",\"D7xfr4qcv\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"pmIsQvJLa\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,as:\"footer\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1078,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mkDRXw4AgLR6IEGIMpi5N2VnAg.webp\",srcSet:\"https://framerusercontent.com/images/mkDRXw4AgLR6IEGIMpi5N2VnAg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mkDRXw4AgLR6IEGIMpi5N2VnAg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkDRXw4AgLR6IEGIMpi5N2VnAg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/mkDRXw4AgLR6IEGIMpi5N2VnAg.webp 2880w\"},className:cx(scopingClassNames,\"framer-fm7arv\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"rwbOvfCWA\",ref:refBinding,style:{borderTopLeftRadius:80,borderTopRightRadius:80,...style},variants:{D7xfr4qcv:{borderTopLeftRadius:40,borderTopRightRadius:40},pmIsQvJLa:{borderTopLeftRadius:60,borderTopRightRadius:60}},...addPropertyOverrides({D7xfr4qcv:{\"data-framer-name\":\"Mobile\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},pmIsQvJLa:{\"data-framer-name\":\"Tablet\"},xPFpc04yI:{\"data-framer-name\":\"Desktop-2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2272,pixelWidth:1280,src:\"https://framerusercontent.com/images/Mrx7vH3XWA1HQcZdV8E2uqhWGj4.webp\",srcSet:\"https://framerusercontent.com/images/Mrx7vH3XWA1HQcZdV8E2uqhWGj4.webp?scale-down-to=1024 576w,https://framerusercontent.com/images/Mrx7vH3XWA1HQcZdV8E2uqhWGj4.webp?scale-down-to=2048 1153w,https://framerusercontent.com/images/Mrx7vH3XWA1HQcZdV8E2uqhWGj4.webp 1280w\"},className:\"framer-c57t3v\",\"data-framer-name\":\"Section- Footer\",layoutDependency:layoutDependency,layoutId:\"xIk_UMnfT\",style:{borderTopLeftRadius:40,borderTopRightRadius:40},...addPropertyOverrides({D7xfr4qcv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1178)-0-1598)/2+0+0)),pixelHeight:2272,pixelWidth:1280,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Mrx7vH3XWA1HQcZdV8E2uqhWGj4.webp\",srcSet:\"https://framerusercontent.com/images/Mrx7vH3XWA1HQcZdV8E2uqhWGj4.webp?scale-down-to=1024 576w,https://framerusercontent.com/images/Mrx7vH3XWA1HQcZdV8E2uqhWGj4.webp?scale-down-to=2048 1153w,https://framerusercontent.com/images/Mrx7vH3XWA1HQcZdV8E2uqhWGj4.webp 1280w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rcp79t\",layoutDependency:layoutDependency,layoutId:\"mAX8NceTR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bvh4u8\",\"data-framer-name\":\"Frame 1410125848\",layoutDependency:layoutDependency,layoutId:\"p_ncUVam1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vzktdo\",\"data-framer-name\":\"Frame 1410125847\",layoutDependency:layoutDependency,layoutId:\"ioFSFj5Kp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 243, 236))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B7pIVXu6v\"},motionChild:true,nodeId:\"GF6tkcvyU\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Privacy Policy      \"})})})}),className:\"framer-1rb7ogl\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"GF6tkcvyU\",style:{\"--extracted-r6o4lv\":\"rgb(230, 243, 236)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 243, 236))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TXvwZJ4hJ\"},motionChild:true,nodeId:\"TJzQsyqqG\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Terms & Conditions\"})})})}),className:\"framer-vjigtt\",\"data-framer-name\":\"Terms & Conditions\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"TJzQsyqqG\",style:{\"--extracted-r6o4lv\":\"rgb(230, 243, 236)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 243, 236))\"},children:\"Designed and Developed by Tape Cassette \"})}),className:\"framer-1clj836\",\"data-framer-name\":\"Designed and Developed by Tape Cassette Media\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"EgJaZxGRk\",style:{\"--extracted-r6o4lv\":\"rgb(230, 243, 236)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ov409h-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mZcpv73Wc-container\",nodeId:\"mZcpv73Wc\",rendersWithMotion:true,scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(AutoYearCopyright,{color:\"rgb(230, 243, 236)\",companyName:\"Daily Fresh Fruits India Private Limited\",font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"mZcpv73Wc\",layoutId:\"mZcpv73Wc\",rightsText:\"All rights reserved\",showSymbol:\"yes\",showTrademark:\"no\",trademarkType:\"trademark\",width:\"100%\",yearPlacement:\"beforeCompanyName\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tt9p6b\",layoutDependency:layoutDependency,layoutId:\"YIskirQpC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mos48p\",layoutDependency:layoutDependency,layoutId:\"phZHDy4FS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dxjnh8\",layoutDependency:layoutDependency,layoutId:\"p2uFP96t7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5j7fjw\",\"data-framer-name\":\"Group 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:154,intrinsicWidth:154,layoutDependency:layoutDependency,layoutId:\"JnHzrlYYr\",svg:'<svg width=\"154\" height=\"154\" viewBox=\"0 0 154 154\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"77\" cy=\"77\" r=\"77\" fill=\"#FFFAE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M83.4901 73.3486C83.2051 72.4882 82.7899 71.6918 82.6839 70.8557C82.3702 68.3827 82.971 66.1132 84.5547 64.1578C85.1754 63.3881 85.9197 62.751 86.8562 62.3993C88.0556 61.9392 88.8861 62.1339 89.4781 62.9479C90.0921 63.8039 90.0811 65.1554 89.35 65.9805C88.7735 66.622 88.0998 67.1728 87.4504 67.7457C85.7695 69.2299 84.3117 70.8646 83.6535 73.081C83.6248 73.1672 83.5652 73.2292 83.4901 73.3486Z\" fill=\"#03A550\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.8107 73.2585C80.8499 72.5329 79.962 71.8096 79.0188 71.1704C76.9404 69.7613 74.5858 69.0314 72.1539 68.5182C70.9833 68.2749 69.8016 68.0515 68.6552 67.7263C66.8485 67.2242 65.5917 65.4436 65.6911 63.5523C65.7463 62.5348 66.2167 61.723 67.1798 61.2806C69.7663 60.0751 72.2202 60.7298 74.577 61.9265C77.3512 63.3377 79.4208 65.521 80.6776 68.3523C81.2828 69.7149 81.4838 71.2611 81.8571 72.7298C81.8947 72.8758 81.8328 73.0505 81.8107 73.2585Z\" fill=\"#7FC343\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M44.3515 66.876C41.6987 66.8295 39.7395 67.4843 38.0498 68.4044C36.1922 69.4087 24.6293 74.0782 29.5504 89.9359C29.7956 90.7123 29.1793 91.482 28.6029 92.0594C27.7193 92.9331 25.8883 92.6212 24.4327 91.5019C22.8954 90.3207 22.1753 89.0267 21.6187 87.7416C20.4304 84.9987 20.3751 82.4549 20.8544 79.9908C21.3625 77.363 22.6325 75.0315 24.6005 72.9965C27.6774 69.8223 31.6554 67.2675 37.8488 66.3606C39.9759 66.0509 42.6551 66.25 44.3515 66.876Z\" fill=\"#EF5225\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M112.666 84.5436C114.543 84.7581 116.039 84.3799 117.386 83.765C118.859 83.0903 119.993 82.1281 121.013 81.0885C122.526 79.5423 123.759 77.8302 124.538 75.866C125.024 74.6383 125.446 73.3797 125.771 72.0857C126.175 70.4732 126.383 68.7854 126.793 67.1751C126.95 66.5624 127.301 65.9696 127.801 65.5493C128.563 64.9122 129.819 65.2927 130.676 66.2837C131.582 67.3388 131.889 68.4204 132.086 69.4888C132.499 71.7628 132.141 73.7933 131.412 75.7266C130.639 77.7904 129.371 79.5578 127.655 81.042C124.976 83.3668 121.746 85.1209 117.203 85.4063C115.65 85.5102 113.775 85.1585 112.666 84.5436Z\" fill=\"#EF5225\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M123.864 65.943C123.546 64.9919 123.027 64.3637 122.432 63.8593C121.776 63.3041 121.058 62.9767 120.33 62.7246C119.252 62.3507 118.158 62.1472 117.047 62.2202C116.349 62.2667 115.651 62.3463 114.96 62.4857C114.101 62.656 113.246 62.9347 112.385 63.1006C112.053 63.1648 111.693 63.1316 111.382 62.9856C110.9 62.7644 110.794 62.0809 111.084 61.446C111.382 60.7714 111.824 60.3755 112.292 60.0459C113.284 59.3358 114.337 59.0438 115.422 58.9598C116.581 58.8625 117.714 59.0726 118.81 59.5526C120.522 60.3157 122.09 61.4637 123.256 63.5762C123.656 64.2995 123.91 65.2728 123.864 65.943Z\" fill=\"#EF5225\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M47.0293 95.9596C47.5727 95.9972 48.0851 96.0525 48.602 96.0636C49.7351 96.0835 50.8063 95.7827 51.8511 95.3757C52.3569 95.1855 52.8605 94.9753 53.3773 94.8138C54.1835 94.5617 55.098 94.9267 55.5243 95.6677C55.7496 96.068 55.7739 96.4949 55.5199 96.8997C54.8329 97.9902 53.744 98.3508 52.5557 98.4747C51.1597 98.6207 49.8367 98.3066 48.666 97.539C48.105 97.174 47.6455 96.6387 47.1464 96.172C47.0956 96.1233 47.0735 96.0437 47.0293 95.9596Z\" fill=\"#EB2227\"/>\\n<path d=\"M58.3804 71.5089C56.9292 70.7746 55.1887 70.4162 53.2074 70.445C51.2924 70.4804 49.7021 70.6219 48.4895 70.8719C47.2923 71.1152 46.2454 71.3718 45.3574 71.6372C39.5638 73.4157 35.5129 75.8179 33.3152 78.7775C32.023 80.5404 31.5636 82.3742 31.9435 84.2256L32.1224 84.7675C32.1312 84.8981 32.1489 85.0241 32.1732 85.1524C32.383 86.1655 33.1142 86.9287 34.3378 87.4131C35.4555 87.8511 36.5267 88.0147 37.5273 87.8842L37.5825 87.8776C37.6399 87.8732 37.693 87.8555 37.7526 87.8422C37.5096 87.9904 37.313 88.1519 37.1584 88.3266L37.101 88.404C36.6681 89.0632 36.8359 89.5919 36.9707 89.844L37.006 89.8993C37.2843 90.3174 37.3661 90.4988 37.3881 90.5497C37.4743 92.0604 37.6289 93.3589 37.8432 94.3985C38.0861 95.5487 38.5765 96.5043 39.3297 97.2299C39.9658 97.8492 40.5975 98.0925 41.227 97.9687C42.0266 97.8005 42.6671 97.0485 43.1884 95.6549C43.3276 95.2523 43.4645 94.8409 43.5926 94.4096C45.4193 95.0975 47.553 95.1926 49.9473 94.6971C52.6177 94.1463 55.0297 93.0182 57.1346 91.3504C59.2352 89.6737 60.8498 87.5613 61.9233 85.0816C63.0078 82.5733 63.2883 79.9852 62.7516 77.3884C62.2038 74.7251 60.7372 72.7476 58.3804 71.5089ZM46.6606 83.8717C47.2945 81.9251 48.0146 80.2927 48.7921 79.0208C49.6204 77.6649 50.2477 77.2269 50.6519 77.1141C50.7888 77.1517 50.9501 77.1849 51.1268 77.1495C51.2328 77.1207 51.3388 77.0765 51.4161 77.0123C51.7695 76.7358 51.679 76.3045 51.6414 76.1231L51.6326 76.0656L51.6083 76.0125C51.4426 75.5945 51.0472 75.0592 50.0886 74.8468C49.4437 74.7008 48.918 74.6721 48.4873 74.7628C47.4337 74.9751 46.3403 76.0435 45.1476 78.0166C43.9659 79.9675 43.4314 81.2793 43.4623 82.1463L43.4667 82.3299L43.5639 82.4848C43.5639 82.4848 43.6059 82.5534 43.6456 82.7414C43.6456 82.7546 43.681 82.9183 43.5308 83.4868C42.6384 87.0614 42.0155 89.7091 41.671 91.3681C41.481 91.2619 41.2292 91.1137 40.9045 90.908C39.8774 90.2687 39.767 89.9701 39.7648 89.9679C39.7096 89.7091 39.7272 89.3884 39.8112 89.03C39.9923 88.2205 39.8443 87.7073 39.3672 87.4927C39.0734 87.3556 38.7245 87.3711 38.3092 87.5524C38.3799 87.4817 38.4395 87.4042 38.4881 87.3091C38.603 87.0769 38.603 86.8136 38.4837 86.5659L38.4594 86.515C38.3269 86.2894 38.0927 86.1301 37.7614 86.0571C37.5936 86.0151 37.2821 85.9731 36.8161 85.9134C36.3809 85.8581 36.0209 85.7939 35.747 85.7386C35.5549 85.701 35.3384 85.5793 35.1109 85.3958C34.9143 85.2254 34.795 85.0374 34.7398 84.772C34.4549 83.3873 35.049 81.8256 36.5046 80.118C38.0442 78.3152 40.0652 76.7358 42.5125 75.4241C44.9731 74.1014 47.4182 73.1834 49.7772 72.699L50.1969 72.6083C53.1036 72.104 55.3654 72.3605 56.9204 73.3758C58.4908 74.4022 59.4207 75.6896 59.7543 77.3132C60.2225 79.5915 59.7211 82.1486 58.27 84.9268C57.3621 86.6411 56.0082 88.2868 54.2456 89.8241C52.5095 91.3327 50.5392 92.3325 48.3967 92.7793C46.9743 93.0757 45.5408 92.9497 44.1338 92.4144C44.7323 89.9569 45.5761 87.0813 46.6606 83.8717ZM41.1254 93.5513C41.015 94.2459 40.9045 94.717 40.8184 95.0289C40.6682 94.6352 40.465 93.9893 40.2154 92.9342C40.6373 93.2284 40.9222 93.4208 41.1254 93.5513Z\" fill=\"#F27A21\"/>\\n<path d=\"M123.486 69.843C123.249 69.7125 123.037 69.7213 122.891 69.7479C122.58 69.8142 122.333 70.0332 122.163 70.4048L122.143 70.4358C120.945 73.4684 118.834 76.0211 115.859 78.0118C114.862 78.6821 113.948 79.1068 113.137 79.2749C112.517 79.4032 112.042 79.3567 111.724 79.1223C111.384 78.8856 111.189 78.6224 111.13 78.3237C111.046 77.9234 111.028 77.492 111.072 77.0474C111.123 76.5011 111.238 75.937 111.417 75.3442C111.651 75.6074 112.029 75.7822 112.596 75.6627C112.649 75.6517 112.7 75.6362 112.762 75.6251C113.988 75.2668 115.406 74.4705 116.972 73.2561C118.549 72.024 119.636 70.7189 120.206 69.3652C120.612 68.6286 120.716 67.7792 120.521 66.8236C120.126 64.8992 118.816 64.0653 116.833 64.4767C115.238 64.8041 113.394 66.149 111.194 68.5888C109.038 70.9755 107.73 73.1831 107.315 75.1562L107.311 75.1805C107.275 75.3707 107.249 75.5521 107.227 75.7313C106.246 77.7309 104.715 79.4452 102.661 80.8189C101.886 81.3431 101.168 81.6727 100.547 81.8032C100.09 81.9005 99.7478 81.8651 99.5225 81.7059C99.2862 81.5377 99.147 81.3519 99.1073 81.1484C99.041 80.8476 99.0322 80.518 99.0609 80.1774C99.0962 79.8146 99.1691 79.4364 99.2751 79.0515C99.485 79.1975 99.7809 79.2771 100.167 79.1953C100.216 79.1864 100.26 79.1753 100.318 79.1577C101.318 78.8679 102.425 78.2463 103.704 77.2553C104.978 76.2666 105.857 75.2093 106.317 74.1143C106.652 73.4994 106.739 72.7916 106.582 72.0019C106.25 70.4093 105.126 69.6926 103.487 70.031C102.191 70.3009 100.702 71.3803 98.9306 73.3446C97.6097 74.8 96.7085 76.1427 96.1917 77.3991C95.7853 78.2574 95.1933 79.2351 94.418 80.3145C93.5632 81.509 92.8343 82.3628 92.2424 82.8539L92.2269 82.8694C91.8536 83.1967 91.6107 83.2985 91.4693 83.3294C91.3368 83.356 91.2241 83.3405 91.0717 83.1835C90.8398 82.9379 90.6896 82.657 90.6189 82.3075C90.5261 81.8563 90.4643 81.5046 90.4378 81.248C90.4245 81.1507 90.4135 80.8277 90.5394 79.8633C94.8907 74.3665 97.8924 69.1484 99.4695 64.3617L99.4828 64.3153C99.7147 63.3951 99.7787 62.6983 99.6705 62.1873C99.5645 61.6697 99.3944 61.2782 99.147 60.9884C98.4976 60.2541 97.5302 60.0196 96.2756 60.2762C95.0917 60.5217 94.0602 61.2782 93.2076 62.5059C92.7791 63.0876 92.4699 63.5654 92.2556 63.9569L91.4163 65.6181C90.4687 67.6354 89.53 70.553 88.62 74.2891C88.1451 76.24 87.8314 77.9057 87.668 79.3103C87.213 80.2327 86.6011 81.2214 85.8502 82.2522C84.9865 83.4334 84.2885 84.2496 83.7827 84.681C83.5552 84.8668 83.4072 84.9221 83.3432 84.9331C83.2769 84.9464 83.2283 84.9398 83.1488 84.8823C83.0826 84.8292 82.9898 84.7429 82.9412 84.5107C82.8749 84.201 82.8352 83.9422 82.8197 83.7387C82.7755 83.3693 82.8595 82.1615 83.8711 78.3569C83.9462 78.1092 84.0191 77.8504 84.092 77.5871L84.1074 77.492C84.1185 77.4279 84.1317 77.3328 84.1516 77.2266C84.1649 77.1514 84.198 77.0165 84.2687 76.7621C84.3813 76.3927 84.3526 76.0078 84.198 75.6649L84.1715 75.6141C83.9749 75.2579 83.4647 74.6939 82.2719 74.9372L81.9583 75.008L81.8986 75.0279C81.3023 75.2845 80.9467 76.1162 80.6971 77.8747C80.6463 78.0893 80.6352 78.2883 80.6661 78.4653C80.22 79.5447 79.5861 80.8808 78.7843 82.4491C78.7821 82.4557 78.7821 82.4668 78.7732 82.4756C78.4861 82.9512 78.1636 83.4268 77.808 83.9156C76.9399 85.1012 76.2442 85.9197 75.7339 86.3488C75.5197 86.5302 75.3717 86.5833 75.2878 86.6054C75.2171 86.6142 75.1508 86.612 75.0691 86.5501C75.0006 86.5036 74.9079 86.4129 74.8637 86.1851C74.7996 85.8732 74.7532 85.6188 74.74 85.433C74.603 83.7586 74.952 81.9691 75.7627 80.111L75.7781 80.0646C75.8753 79.7814 75.851 79.4961 75.7163 79.2461C75.6125 79.0603 75.449 78.9165 75.2303 78.8148C75.2392 78.7993 75.2502 78.7838 75.2613 78.7683C75.4181 78.525 75.3938 78.2706 75.3474 78.0494C75.2303 77.4743 74.8018 77.0165 74.0774 76.6979C73.4324 76.4214 72.7212 76.3529 71.9569 76.5165C71.2744 76.6537 70.5853 76.8948 69.9072 77.2155C69.2114 77.5495 68.3544 78.1822 67.292 79.1377C66.2539 80.0668 65.282 81.144 64.3963 82.3296C63.4774 83.5639 62.8656 84.7871 62.5807 85.9506C62.4305 86.5258 62.415 87.1031 62.5343 87.6848C62.6602 88.302 62.9782 88.8395 63.4818 89.2907C63.9523 89.7088 64.4868 90.003 65.0699 90.1689C65.6553 90.3326 66.2008 90.3613 66.6846 90.2618C67.6631 90.0627 68.646 89.3659 69.6068 88.2002C70.3445 87.3044 70.9939 86.3908 71.5483 85.4751C71.5792 85.8555 71.63 86.2183 71.7007 86.5766C71.7891 86.9836 71.9105 87.353 72.0629 87.6738L72.0872 87.7202C72.7322 88.813 73.7019 89.2598 74.8902 89.012C75.9791 88.7864 77.0614 88.0808 78.0951 86.9195C78.5435 86.4262 79.1112 85.641 79.8158 84.5394C79.8268 84.8026 79.8511 85.0371 79.8975 85.2539C79.9615 85.5569 80.0433 85.8069 80.1559 86.0192L80.1736 86.0502C80.8163 87.1407 81.8103 87.5809 83.045 87.3221C83.5309 87.2247 84.0677 86.9903 84.6994 86.6076C85.6381 86.0126 86.6431 84.8778 87.7497 83.1348C88.2467 85.088 89.6493 85.9175 91.7321 85.4906C92.6554 85.2981 93.5124 84.7694 94.2656 83.92C94.8023 83.3184 95.37 82.5663 95.9664 81.6882C96.1232 82.0996 96.3595 82.4535 96.6533 82.7565C97.7157 83.7984 99.2398 84.1258 101.175 83.7276C103.324 83.2786 105.347 81.8585 107.187 79.4872C107.306 79.3302 107.43 79.1731 107.543 79.0072C107.733 79.4629 107.995 79.8566 108.327 80.1907C109.625 81.4648 111.481 81.8585 113.86 81.3652C116.519 80.8122 119.028 79.0448 121.314 76.0963C122.485 74.5943 123.388 72.9575 123.996 71.2211C124.111 70.9645 124.144 70.7212 124.1 70.5C124.058 70.3473 123.938 70.0001 123.486 69.843ZM113.04 71.909C114.215 70.0288 115.41 68.6198 116.632 67.7129C117.297 67.1886 117.668 67.0559 117.824 67.0183C117.855 67.0139 117.88 67.0095 117.895 67.0072C117.904 67.0271 117.911 67.0647 117.924 67.1024C117.995 67.4563 117.926 67.8721 117.712 68.3588C117.056 69.6041 115.863 70.9578 114.153 72.389C113.31 73.1212 112.594 73.5812 112.022 73.7715C112.303 73.1676 112.643 72.546 113.04 71.909ZM103.436 72.8402C103.858 72.504 104.119 72.3801 104.265 72.3337C104.296 72.5704 104.238 72.8579 104.092 73.1831C103.587 74.1608 102.646 75.2248 101.296 76.3529C100.72 76.8528 100.28 77.1359 99.9643 77.2952C100.152 76.9169 100.371 76.532 100.611 76.1471C101.535 74.6695 102.476 73.5591 103.436 72.8402ZM97.1149 63.5322C96.5097 65.6712 95.4539 68.2283 93.9608 71.1259C93.0464 72.9066 92.1496 74.4129 91.2749 75.6362C91.5908 74.2448 92.0193 72.6854 92.556 70.9733C93.6494 67.5005 94.9835 64.8284 96.523 63.0367C96.9095 62.5943 97.1503 62.4594 97.2519 62.4262C97.2585 62.455 97.2718 62.4837 97.2784 62.5302C97.2938 62.5965 97.3204 62.8509 97.1149 63.5322ZM65.5007 87.8176C65.4675 87.6671 65.4521 87.1805 65.9733 85.8201C66.3798 84.7584 66.9032 83.7564 67.5394 82.8539C68.3235 81.812 69.207 80.8896 70.17 80.111C71.0911 79.3656 71.9591 78.8966 72.7455 78.7374C72.9222 78.6998 73.1187 78.6754 73.3131 78.66C72.9928 78.7639 72.6196 79.1953 70.1789 83.2188C69.715 83.9886 68.7851 85.2694 67.4135 87.0146C66.3577 88.271 65.8762 88.4568 65.748 88.4789C65.7083 88.4303 65.5934 88.2754 65.5007 87.8176Z\" fill=\"#F27A21\"/>\\n<path d=\"M58.4118 70.3408C56.9849 69.5666 55.2577 69.1574 53.2698 69.1286C51.3548 69.1087 49.76 69.2016 48.5408 69.4184C47.3436 69.6285 46.2834 69.8519 45.391 70.0842C39.5488 71.7034 35.4317 73.9861 33.15 76.8772C31.8048 78.6047 31.2946 80.4274 31.6171 82.2899L31.7827 82.8363C31.7894 82.9623 31.8004 83.0906 31.8225 83.2189C31.9992 84.2386 32.7104 85.0195 33.9208 85.5393C35.0252 86.0149 36.0921 86.2007 37.0971 86.1078L37.1479 86.1033C37.2053 86.0901 37.2649 86.079 37.3268 86.0657C37.0728 86.2117 36.874 86.3644 36.7172 86.5369L36.6553 86.6099C36.2025 87.2602 36.3527 87.7889 36.483 88.0455L36.5162 88.1008C36.7856 88.5299 36.8629 88.7113 36.8806 88.7622C36.9226 90.2774 37.0396 91.5714 37.2252 92.6221C37.4328 93.7811 37.9011 94.7456 38.6278 95.4998C39.2396 96.1347 39.8735 96.3979 40.5052 96.2895C41.3114 96.1457 41.9741 95.4114 42.5307 94.0355C42.6831 93.6418 42.8311 93.2281 42.9702 92.799C44.7814 93.5378 46.9107 93.6971 49.3205 93.268C51.9953 92.799 54.4493 91.7395 56.594 90.1292C58.7475 88.5122 60.424 86.4528 61.5637 84.002C62.7211 81.529 63.0768 78.9498 62.6151 76.3397C62.1424 73.661 60.731 71.6436 58.4118 70.3408ZM46.3408 82.3585C47.0322 80.434 47.7986 78.8193 48.6114 77.5673C49.4795 76.2379 50.12 75.8198 50.522 75.7115C50.659 75.7579 50.8202 75.7911 50.9969 75.7645C51.1074 75.7469 51.209 75.7004 51.2907 75.6385C51.6463 75.3708 51.5734 74.9351 51.5447 74.7515L51.5315 74.6984L51.5116 74.6409C51.3592 74.225 50.9793 73.672 50.0251 73.4265C49.3867 73.2606 48.861 73.2163 48.4281 73.296C47.3679 73.4862 46.2481 74.5192 44.9957 76.4569C43.7588 78.3769 43.1867 79.6709 43.1867 80.5336L43.1911 80.7238L43.2861 80.8742C43.2861 80.8742 43.3214 80.9428 43.359 81.1397C43.359 81.1397 43.3855 81.3144 43.2242 81.8763C42.2259 85.4243 41.5257 88.0477 41.1325 89.7022C40.947 89.5872 40.6996 89.4302 40.3859 89.22C39.3765 88.5476 39.2705 88.2534 39.2683 88.249C39.2263 87.9813 39.2462 87.6628 39.3434 87.3022C39.5466 86.5104 39.4163 85.9883 38.948 85.7583C38.6543 85.6145 38.3075 85.6234 37.8878 85.787C37.9563 85.7229 38.0181 85.6433 38.0689 85.5459C38.1948 85.3159 38.2015 85.0527 38.0888 84.8027L38.0645 84.754C37.943 84.5218 37.7089 84.3581 37.382 84.2718C37.2163 84.232 36.9049 84.1745 36.4411 84.1015C36.0104 84.0374 35.6525 83.9688 35.3786 83.9024C35.1865 83.856 34.9789 83.7343 34.7513 83.5374C34.5592 83.3671 34.4421 83.1658 34.4002 82.9026C34.1528 81.5135 34.7933 79.9695 36.2975 78.3061C37.8878 76.5498 39.9508 75.028 42.4379 73.7848C44.9405 72.5395 47.4055 71.6901 49.7799 71.2698L50.1974 71.1968C53.1196 70.7765 55.3725 71.0973 56.8988 72.1634C58.4427 73.2252 59.3307 74.5435 59.6178 76.1804C60.0242 78.4632 59.4477 81.0114 57.917 83.741C56.9606 85.4287 55.5581 87.0368 53.7513 88.5188C51.9688 89.9876 49.9765 90.921 47.8229 91.2993C46.3894 91.5559 44.9581 91.3922 43.5732 90.8193C44.2381 88.3795 45.1702 85.5327 46.3408 82.3585ZM40.5229 91.8722C40.3948 92.5668 40.2755 93.0313 40.1783 93.3387C40.0414 92.945 39.8603 92.2925 39.6372 91.2351C40.0502 91.536 40.3329 91.7351 40.5229 91.8722Z\" fill=\"#05914D\"/>\\n<path d=\"M123.541 70.5559C123.309 70.4232 123.093 70.4232 122.951 70.4453C122.635 70.5029 122.381 70.713 122.198 71.0802L122.18 71.1156C120.901 74.1106 118.71 76.5947 115.678 78.5058C114.664 79.1429 113.741 79.5454 112.923 79.6826C112.298 79.7998 111.823 79.7379 111.514 79.499C111.185 79.2468 110.997 78.9836 110.942 78.6761C110.871 78.2758 110.863 77.8466 110.922 77.4065C110.988 76.8645 111.121 76.296 111.32 75.7099C111.538 75.9819 111.918 76.1633 112.488 76.0638C112.539 76.0549 112.594 76.0417 112.656 76.0284C113.891 75.7099 115.329 74.9556 116.93 73.781C118.545 72.6042 119.669 71.3257 120.274 69.9919C120.703 69.2642 120.831 68.4147 120.663 67.4592C120.323 65.5237 119.039 64.6477 117.047 65.0039C115.444 65.2826 113.562 66.5766 111.289 68.9501C109.065 71.2748 107.697 73.4448 107.22 75.4046L107.216 75.4267C107.178 75.6103 107.147 75.7939 107.121 75.9753C106.078 77.9572 104.495 79.614 102.405 80.9279C101.614 81.4367 100.892 81.7464 100.269 81.8548C99.8076 81.9344 99.4652 81.8924 99.2487 81.7242C99.0124 81.5495 98.8777 81.3681 98.8401 81.158C98.7849 80.8505 98.7827 80.5231 98.8246 80.1847C98.8732 79.8219 98.9528 79.4525 99.072 79.0654C99.2841 79.2225 99.5756 79.3043 99.9622 79.2336C100.009 79.2269 100.057 79.2159 100.108 79.2048C101.124 78.9416 102.246 78.351 103.556 77.3998C104.855 76.4442 105.76 75.4068 106.255 74.3362C106.608 73.7279 106.717 73.0245 106.58 72.2326C106.293 70.6267 105.19 69.8769 103.543 70.1666C102.239 70.3967 100.72 71.4385 98.8887 73.3475C97.5281 74.7698 96.5849 76.0837 96.0394 77.3268C95.6087 78.1696 94.9858 79.1274 94.1796 80.1936C93.2916 81.3548 92.5362 82.191 91.9333 82.6665L91.9178 82.6754C91.5379 82.9983 91.2883 83.0913 91.1447 83.1156C91.0122 83.1421 90.8973 83.1222 90.7516 82.9585C90.524 82.7108 90.3871 82.4188 90.323 82.0649C90.2435 81.6225 90.1927 81.2575 90.1684 81.0009C90.164 80.9036 90.1596 80.5895 90.3142 79.6251C94.8201 74.2566 97.9765 69.1336 99.6883 64.3889L99.7059 64.3447C99.9622 63.4289 100.046 62.7388 99.9577 62.2212C99.865 61.697 99.7059 61.3032 99.4674 61.009C98.8401 60.2592 97.8815 59.9893 96.6159 60.2149C95.4297 60.4251 94.374 61.1484 93.486 62.3517C93.0354 62.9246 92.7129 63.3913 92.4876 63.7807L91.6041 65.4197C90.5991 67.4061 89.5743 70.2971 88.5604 74C88.0303 75.9377 87.6637 77.5923 87.4649 78.9902C86.9767 79.906 86.3428 80.8748 85.5587 81.8813C84.6619 83.0382 83.9375 83.8345 83.4206 84.2437C83.1887 84.4251 83.0407 84.4737 82.9744 84.487C82.9082 84.4959 82.8618 84.4914 82.7823 84.4273C82.7182 84.3786 82.6277 84.2857 82.5879 84.0535C82.5305 83.7394 82.4973 83.4828 82.4863 83.2793C82.4554 82.901 82.5769 81.7043 83.6945 77.9307C83.7784 77.683 83.8602 77.4352 83.9375 77.1676L83.9573 77.068C83.9662 77.0061 83.9838 76.9176 84.0081 76.8026C84.0258 76.7362 84.0567 76.5991 84.1362 76.3469C84.2599 75.9775 84.2401 75.5971 84.0987 75.2454L84.0744 75.1967C83.8867 74.8295 83.3941 74.2522 82.1992 74.4623L81.8811 74.5198L81.8192 74.5442C81.2096 74.7808 80.8385 75.5948 80.5315 77.3578C80.4719 77.5701 80.4608 77.7582 80.4851 77.9418C80.008 79.0079 79.3366 80.3285 78.4928 81.868C78.4862 81.8791 78.4862 81.8857 78.4796 81.8946C78.177 82.3591 77.8412 82.8258 77.4657 83.3102C76.569 84.4671 75.8445 85.2612 75.3276 85.6726C75.1068 85.8496 74.9566 85.9049 74.8748 85.9182C74.7997 85.9336 74.7357 85.9248 74.6517 85.8629C74.5921 85.8142 74.4971 85.7235 74.4596 85.489C74.4044 85.1771 74.369 84.9184 74.3558 84.7325C74.2696 83.0581 74.6672 81.2774 75.5375 79.4437L75.5529 79.3995C75.6634 79.1141 75.6479 78.8288 75.5154 78.581C75.416 78.393 75.257 78.2404 75.0361 78.1364C75.0537 78.1187 75.067 78.0988 75.0758 78.0877C75.2371 77.8533 75.2216 77.5923 75.1774 77.3733C75.078 76.7959 74.6672 76.327 73.9516 75.9864C73.3132 75.6855 72.5976 75.6037 71.8378 75.7408C71.1486 75.8625 70.4529 76.0793 69.7615 76.3845C69.0591 76.6986 68.1889 77.3025 67.0977 78.2271C66.0353 79.1274 65.0303 80.1781 64.107 81.3372C63.155 82.5449 62.5101 83.746 62.192 84.9051C62.0241 85.4736 61.991 86.0597 62.0926 86.6371C62.1986 87.2586 62.5012 87.8072 62.9894 88.2651C63.451 88.7031 63.9745 89.0105 64.5532 89.1875C65.1363 89.3689 65.6775 89.4197 66.1656 89.3312C67.1507 89.1609 68.1513 88.4951 69.1453 87.356C69.9073 86.48 70.592 85.5842 71.1641 84.6883C71.1884 85.0621 71.2259 85.4337 71.2878 85.7854C71.3607 86.1969 71.4711 86.5729 71.6169 86.8959L71.6412 86.9445C72.253 88.0549 73.2116 88.5305 74.4088 88.316C75.5043 88.1235 76.6043 87.4511 77.6667 86.3163C78.1328 85.8407 78.7225 85.0732 79.4558 83.9871C79.4581 84.2481 79.4801 84.4914 79.5177 84.706C79.5751 85.009 79.6502 85.2634 79.754 85.4802L79.7695 85.5067C80.3813 86.6194 81.362 87.0927 82.6056 86.8693C83.0893 86.7853 83.6349 86.5663 84.2754 86.1991C85.234 85.635 86.2677 84.5246 87.4229 82.8192C87.8669 84.779 89.243 85.6616 91.3413 85.2877C92.269 85.1241 93.1348 84.6242 93.9189 83.7947C94.4689 83.2085 95.0631 82.4675 95.6816 81.6092C95.834 82.0251 96.0482 82.39 96.3376 82.7019C97.3713 83.7725 98.8799 84.1464 100.828 83.7969C102.993 83.4186 105.051 82.0516 106.96 79.7357C107.083 79.5786 107.209 79.4216 107.328 79.2623C107.51 79.7224 107.755 80.125 108.079 80.4723C109.341 81.7729 111.189 82.2264 113.575 81.8017C116.248 81.3283 118.81 79.6273 121.18 76.7495C122.397 75.2874 123.34 73.6748 123.998 71.9561C124.122 71.7062 124.164 71.4629 124.124 71.2417C124.102 71.0824 123.989 70.7307 123.541 70.5559ZM113.04 72.3211C114.271 70.4807 115.512 69.1093 116.747 68.2312C117.429 67.7268 117.802 67.6074 117.968 67.5764C117.997 67.5698 118.019 67.5653 118.034 67.5653C118.045 67.583 118.052 67.6162 118.063 67.6627C118.123 68.0144 118.039 68.4302 117.814 68.908C117.124 70.1313 115.89 71.4562 114.14 72.8343C113.281 73.5421 112.552 73.9779 111.969 74.1571C112.269 73.5598 112.621 72.9471 113.04 72.3211ZM103.41 72.9736C103.843 72.6529 104.108 72.5335 104.252 72.4936C104.278 72.7303 104.212 73.0201 104.059 73.343C103.518 74.3008 102.553 75.3338 101.17 76.4265C100.578 76.9088 100.134 77.1808 99.8164 77.3268C100.009 76.9574 100.238 76.5792 100.494 76.1987C101.46 74.7432 102.436 73.6616 103.41 72.9736ZM97.3624 63.482C96.6954 65.6077 95.5667 68.1338 93.9918 70.9851C93.0288 72.737 92.0901 74.219 91.1801 75.4245C91.5379 74.0398 92.0083 72.4914 92.5937 70.7926C93.793 67.3596 95.2 64.7274 96.7859 62.9799C97.1857 62.5441 97.4309 62.4225 97.5369 62.3937C97.5436 62.4181 97.5502 62.4535 97.5634 62.4977C97.5701 62.5596 97.5877 62.8118 97.3624 63.482ZM65.0568 86.8494C65.0325 86.7034 65.0325 86.2079 65.5913 84.8675C66.0242 83.8168 66.5809 82.8302 67.2413 81.9388C68.0541 80.9213 68.9641 80.0299 69.9493 79.28C70.8924 78.5567 71.7737 78.1209 72.5667 77.9816C72.7456 77.9506 72.9399 77.9263 73.1321 77.9219C72.8118 78.0125 72.4209 78.4328 69.8675 82.3856C69.3816 83.1399 68.4141 84.3853 66.9939 86.1018C65.905 87.3228 65.4124 87.4909 65.2909 87.5152C65.2512 87.4688 65.1407 87.3051 65.0568 86.8494Z\" fill=\"#05914D\"/>\\n<path d=\"M127.229 58.6311C127.441 58.5957 127.754 58.5625 128.083 58.5625C128.529 58.5625 128.834 58.6421 129.04 58.8213C129.21 58.9651 129.307 59.1774 129.307 59.4451C129.307 59.841 129.038 60.1153 128.744 60.2215V60.2392C128.971 60.3188 129.104 60.5378 129.181 60.832C129.278 61.2213 129.362 61.5818 129.426 61.7013H128.837C128.795 61.604 128.724 61.3496 128.636 60.9625C128.543 60.5621 128.401 60.4316 128.074 60.425H127.79V61.7013H127.229V58.6311ZM127.79 60.0069H128.123C128.505 60.0069 128.744 59.8034 128.744 59.4915C128.744 59.1575 128.507 58.9983 128.139 58.9983C127.962 58.9983 127.847 59.0071 127.792 59.0226V60.0069H127.79Z\" fill=\"black\"/>\\n<path d=\"M128.171 62.8622C126.669 62.8622 125.441 61.639 125.441 60.1326C125.441 58.6219 126.669 57.4053 128.171 57.4053C129.673 57.4053 130.897 58.6219 130.897 60.1326C130.897 61.639 129.673 62.8622 128.171 62.8622ZM128.171 57.8079C126.888 57.8079 125.846 58.8497 125.846 60.1326C125.846 61.4178 126.888 62.4619 128.171 62.4619C129.455 62.4619 130.495 61.4156 130.495 60.1326C130.495 58.8497 129.453 57.8079 128.171 57.8079Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k5pgyu\",layoutDependency:layoutDependency,layoutId:\"cw3_eGw3n\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/dailee_india/\",motionChild:true,nodeId:\"BP_wspfoV\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-nh7tjz framer-19nat08\",\"data-framer-name\":\"bxl-linkedin-square.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BP_wspfoV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 13.988 2.329 C 7.718 2.329 2.634 7.554 2.634 13.998 C 2.634 19.822 6.785 24.649 12.214 25.528 L 12.214 17.372 L 9.33 17.372 L 9.33 13.998 L 12.214 13.998 L 12.214 11.427 C 12.214 8.5 13.91 6.886 16.502 6.886 C 17.744 6.886 19.046 7.114 19.046 7.114 L 19.046 9.984 L 17.61 9.984 C 16.202 9.984 15.762 10.885 15.762 11.808 L 15.762 13.996 L 18.908 13.996 L 18.405 17.37 L 15.762 17.37 L 15.762 25.526 C 21.191 24.651 25.342 19.823 25.342 13.998 C 25.342 7.554 20.258 2.329 13.988 2.329 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:10654543007,tabIndex:-1,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\" https://www.linkedin.com/company/daily-fresh-fruits-india-private-limited/ \",motionChild:true,nodeId:\"uDgMAGEss\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1fanxfx framer-19nat08\",\"data-framer-name\":\"bxl-linkedin-square.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"uDgMAGEss\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 23.085 3.497 L 4.916 3.497 C 4.615 3.497 4.326 3.62 4.113 3.839 C 3.9 4.058 3.781 4.355 3.781 4.664 L 3.781 23.337 C 3.781 23.647 3.9 23.944 4.113 24.162 C 4.326 24.381 4.615 24.504 4.916 24.504 L 23.085 24.504 C 23.386 24.504 23.675 24.381 23.888 24.162 C 24.101 23.944 24.22 23.647 24.22 23.337 L 24.22 4.664 C 24.22 4.355 24.101 4.058 23.888 3.839 C 23.675 3.62 23.386 3.497 23.085 3.497 Z M 9.843 21.396 L 6.809 21.396 L 6.809 11.371 L 9.843 11.371 Z M 8.326 10.002 C 7.86 10.002 7.413 9.812 7.083 9.473 C 6.754 9.134 6.569 8.675 6.569 8.196 C 6.569 7.716 6.754 7.257 7.083 6.918 C 7.413 6.579 7.86 6.389 8.326 6.389 C 8.793 6.389 9.24 6.579 9.569 6.918 C 9.899 7.257 10.084 7.716 10.084 8.196 C 10.084 8.675 9.899 9.134 9.569 9.473 C 9.24 9.812 8.793 10.002 8.326 10.002 Z M 21.198 21.396 L 18.167 21.396 L 18.167 16.521 C 18.167 15.359 18.146 13.864 16.591 13.864 C 15.012 13.864 14.773 15.132 14.773 16.44 L 14.773 21.398 L 11.744 21.398 L 11.744 11.372 L 14.651 11.372 L 14.651 12.742 L 14.693 12.742 C 15.096 11.955 16.087 11.124 17.559 11.124 C 20.63 11.124 21.196 13.199 21.196 15.899 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:8601247488,tabIndex:-1,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\" https://www.youtube.com/@Dailee_India\",motionChild:true,nodeId:\"fYntLQ8Kh\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-60an8a framer-19nat08\",\"data-framer-name\":\"icons8-youtube 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"fYntLQ8Kh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 24.869 8.267 C 24.651 7.066 23.614 6.191 22.412 5.918 C 20.611 5.537 17.28 5.264 13.676 5.264 C 10.073 5.264 6.688 5.537 4.886 5.918 C 3.685 6.191 2.647 7.01 2.429 8.267 C 2.21 9.632 1.992 11.543 1.992 14 C 1.992 16.457 2.21 18.368 2.483 19.733 C 2.702 20.933 3.739 21.808 4.94 22.081 C 6.851 22.463 10.127 22.736 13.731 22.736 C 17.335 22.736 20.611 22.463 22.522 22.081 C 23.723 21.808 24.76 20.989 24.979 19.733 C 25.197 18.368 25.47 16.401 25.525 14 C 25.415 11.543 25.142 9.632 24.869 8.267 Z M 10.728 17.822 L 10.728 10.178 L 17.389 14 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:8961905752,tabIndex:-1,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dailee_india \",motionChild:true,nodeId:\"d1g7vp60F\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-nfo9sp framer-19nat08\",\"data-framer-name\":\"icons8-twitterx 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"d1g7vp60F\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28.875 28\"><path d=\"M 6.603 2.24 C 4.438 2.24 2.683 3.995 2.683 6.16 L 2.683 21.84 C 2.683 24.005 4.438 25.76 6.603 25.76 L 22.283 25.76 C 24.448 25.76 26.203 24.005 26.203 21.84 L 26.203 6.16 C 26.203 3.995 24.448 2.24 22.283 2.24 Z M 7.771 7.28 L 12.216 7.28 L 15.373 11.765 L 19.203 7.28 L 20.603 7.28 L 16.005 12.663 L 21.675 20.72 L 17.231 20.72 L 13.568 15.516 L 9.123 20.72 L 7.723 20.72 L 12.936 14.618 Z M 9.915 8.4 L 17.815 19.6 L 19.531 19.6 L 11.631 8.4 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:10472681121,tabIndex:-1,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/dailee_india/\",motionChild:true,nodeId:\"eBz2iT1Ul\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-16xhyzp framer-19nat08\",\"data-framer-name\":\"bxl-instagram-alt.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"eBz2iT1Ul\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 24.171 9.688 C 24.16 8.804 23.998 7.929 23.695 7.101 C 23.432 6.404 23.03 5.77 22.516 5.241 C 22.001 4.712 21.384 4.299 20.705 4.029 C 19.911 3.722 19.071 3.556 18.223 3.538 C 17.131 3.488 16.784 3.474 14.011 3.474 C 11.238 3.474 10.883 3.474 9.799 3.538 C 8.951 3.556 8.112 3.722 7.317 4.029 C 6.638 4.299 6.022 4.712 5.507 5.241 C 4.992 5.77 4.59 6.404 4.328 7.101 C 4.029 7.917 3.868 8.78 3.852 9.652 C 3.803 10.775 3.788 11.131 3.788 13.981 C 3.788 16.831 3.788 17.195 3.852 18.311 C 3.869 19.184 4.029 20.045 4.328 20.864 C 4.591 21.561 4.993 22.195 5.508 22.724 C 6.023 23.253 6.64 23.665 7.319 23.935 C 8.111 24.254 8.95 24.432 9.8 24.46 C 10.893 24.511 11.24 24.526 14.013 24.526 C 16.785 24.526 17.141 24.526 18.225 24.46 C 19.074 24.443 19.913 24.278 20.708 23.972 C 21.386 23.701 22.003 23.288 22.517 22.759 C 23.032 22.23 23.434 21.596 23.697 20.899 C 23.996 20.082 24.156 19.22 24.173 18.346 C 24.222 17.223 24.237 16.868 24.237 14.016 C 24.235 11.166 24.235 10.805 24.171 9.688 Z M 14.005 19.371 C 11.104 19.371 8.755 16.956 8.755 13.976 C 8.755 10.995 11.104 8.58 14.005 8.58 C 15.397 8.58 16.732 9.149 17.717 10.16 C 18.701 11.172 19.254 12.545 19.254 13.976 C 19.254 15.406 18.701 16.779 17.717 17.791 C 16.732 18.802 15.397 19.371 14.005 19.371 Z M 19.463 9.639 C 19.302 9.639 19.143 9.606 18.994 9.543 C 18.846 9.48 18.711 9.387 18.597 9.27 C 18.483 9.154 18.393 9.015 18.332 8.862 C 18.27 8.709 18.239 8.546 18.239 8.381 C 18.239 8.215 18.271 8.052 18.332 7.899 C 18.394 7.747 18.484 7.608 18.597 7.491 C 18.711 7.375 18.846 7.282 18.994 7.219 C 19.143 7.156 19.302 7.123 19.462 7.123 C 19.623 7.123 19.782 7.156 19.931 7.219 C 20.079 7.282 20.214 7.375 20.328 7.491 C 20.441 7.608 20.531 7.747 20.593 7.899 C 20.654 8.052 20.686 8.215 20.686 8.381 C 20.686 9.076 20.139 9.639 19.463 9.639 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path><path d=\"M 14.003 17.481 C 15.886 17.481 17.413 15.911 17.413 13.976 C 17.413 12.04 15.886 10.471 14.003 10.471 C 12.12 10.471 10.593 12.04 10.593 13.976 C 10.593 15.911 12.12 17.481 14.003 17.481 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:10113769559,tabIndex:-1,withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a06xz8\",layoutDependency:layoutDependency,layoutId:\"HR2ouiKCw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y8tik1\",\"data-framer-name\":\"Frame 1410125809\",layoutDependency:layoutDependency,layoutId:\"Tkzaec3O9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"enBQuv_on\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Home\"})})})}),className:\"framer-45zzig\",\"data-framer-name\":\"Home\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"enBQuv_on\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f4HS2ulvM\"},motionChild:true,nodeId:\"HcgQeWjUd\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"About us\"})})})}),className:\"framer-1cq5yru\",\"data-framer-name\":\"About us\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"HcgQeWjUd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mwDjPSv20\"},motionChild:true,nodeId:\"MpdlMOprg\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Products\"})})})}),className:\"framer-1o2di2w\",\"data-framer-name\":\"Products\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"MpdlMOprg\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jU3cLiUL2\"},motionChild:true,nodeId:\"HNKRgTHen\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Insights\"})})})}),className:\"framer-nbvmax\",\"data-framer-name\":\"Insights\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"HNKRgTHen\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LP_LISXuI\"},motionChild:true,nodeId:\"cQ_UU1WIk\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"CSR\"})})})}),className:\"framer-5rrvsq\",\"data-framer-name\":\"CSR\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"cQ_UU1WIk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-olnve8\",layoutDependency:layoutDependency,layoutId:\"lVBQVKtYA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15a9vjg\",\"data-framer-name\":\"Frame 1410125944\",layoutDependency:layoutDependency,layoutId:\"s33mEK_w2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1udi7iu\",\"data-framer-name\":\"Frame 1410125945\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"G5acAf7WT\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.06022 4.85984C7.6356 3.28446 9.77228 2.39941 12.0002 2.39941C14.2281 2.39941 16.3648 3.28446 17.9402 4.85984C19.5156 6.43523 20.4006 8.57191 20.4006 10.7998C20.4006 13.0278 19.5156 15.1645 17.9402 16.7398L12.0002 22.6798L6.06022 16.7398C5.28011 15.9598 4.6613 15.0338 4.2391 14.0146C3.81691 12.9954 3.59961 11.903 3.59961 10.7998C3.59961 9.69667 3.81691 8.6043 4.2391 7.5851C4.6613 6.56591 5.28011 5.63987 6.06022 4.85984ZM12.0002 13.1998C12.6367 13.1998 13.2472 12.947 13.6973 12.4969C14.1474 12.0468 14.4002 11.4364 14.4002 10.7998C14.4002 10.1633 14.1474 9.55287 13.6973 9.10279C13.2472 8.6527 12.6367 8.39984 12.0002 8.39984C11.3637 8.39984 10.7532 8.6527 10.3032 9.10279C9.85307 9.55287 9.60022 10.1633 9.60022 10.7998C9.60022 11.4364 9.85307 12.0468 10.3032 12.4969C10.7532 12.947 11.3637 13.1998 12.0002 13.1998Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:\"Daily Fresh Fruits India Private Limited\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 250, 233))\"},children:\"73/2, Namakkal Main Road, A.K.Samuthiram Pachal, Namakkal, Tamil Nadu, India 637018.\"})]}),className:\"framer-3xycng\",\"data-framer-name\":\"Daily Fresh Fruits India Private Limited 73/2,Namakkal Main Road, A.K.Samuthiram Pachal, Namakkal, Tamil Nadu, 637018.\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"lr_j3X6Mh\",style:{\"--extracted-2gxw0f\":\"rgb(255, 250, 233)\",\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13ejm55\",\"data-framer-name\":\"Frame 1410125947\",layoutDependency:layoutDependency,layoutId:\"D910bsgXT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8zp13a\",\"data-framer-name\":\"Frame 1410125945\",layoutDependency:layoutDependency,layoutId:\"avtweiPQ9\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-twz088\",\"data-framer-name\":\"Phone\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"rCSSbaqgj\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.5 3C2.5 2.73478 2.60536 2.48043 2.79289 2.29289C2.98043 2.10536 3.23478 2 3.5 2H5.653C5.88971 2.00011 6.1187 2.08418 6.29924 2.23726C6.47979 2.39034 6.60018 2.6025 6.639 2.836L7.379 7.271C7.41436 7.48222 7.38097 7.69921 7.28376 7.89003C7.18655 8.08085 7.03065 8.23543 6.839 8.331L5.291 9.104C5.84611 10.4797 6.67283 11.7293 7.72178 12.7782C8.77072 13.8272 10.0203 14.6539 11.396 15.209L12.17 13.661C12.2655 13.4695 12.4199 13.3138 12.6106 13.2166C12.8012 13.1194 13.0179 13.0859 13.229 13.121L17.664 13.861C17.8975 13.8998 18.1097 14.0202 18.2627 14.2008C18.4158 14.3813 18.4999 14.6103 18.5 14.847V17C18.5 17.2652 18.3946 17.5196 18.2071 17.7071C18.0196 17.8946 17.7652 18 17.5 18H15.5C8.32 18 2.5 12.18 2.5 5V3Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:\"1800-889-9070\"})}),className:\"framer-18lxog8\",\"data-framer-name\":\"1800-889-9070\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"wVQuAiJfC\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d1ox4\",\"data-framer-name\":\"Frame 1410125946\",layoutDependency:layoutDependency,layoutId:\"ms33RnzNw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u1koiy\",\"data-framer-name\":\"Mail\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"FyExOXc3T\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.50391 5.884L10.5009 9.882L18.4979 5.884C18.4683 5.37444 18.245 4.89549 17.8737 4.54523C17.5025 4.19497 17.0113 3.99991 16.5009 4H4.50091C3.99049 3.99991 3.49935 4.19497 3.12808 4.54523C2.75681 4.89549 2.53351 5.37444 2.50391 5.884Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n<path d=\"M18.5 8.11816L10.5 12.1182L2.5 8.11816V14.0002C2.5 14.5306 2.71071 15.0393 3.08579 15.4144C3.46086 15.7895 3.96957 16.0002 4.5 16.0002H16.5C17.0304 16.0002 17.5391 15.7895 17.9142 15.4144C18.2893 15.0393 18.5 14.5306 18.5 14.0002V8.11816Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:\"customercare@dailee.in\"})}),className:\"framer-14c5k4u\",\"data-framer-name\":\"customercare@dailee.in\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"KGzcF7UR3\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x2b2y1\",layoutDependency:layoutDependency,layoutId:\"Xg9L6Nwuu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-144f9g4\",layoutDependency:layoutDependency,layoutId:\"kKi_yAN_I\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1az5brn\",layoutDependency:layoutDependency,layoutId:\"ThqWZVXd1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nb4wbs\",\"data-framer-name\":\"Group 4\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nfD02xw6K\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 200\"><path d=\"M 0 100 C 0 44.772 44.772 0 100 0 C 155.228 0 200 44.772 200 100 C 200 155.228 155.228 200 100 200 C 44.772 200 0 155.228 0 100 Z\" fill=\"rgb(255,250,233)\"></path><path d=\"M 108.429 95.258 C 108.059 94.141 107.519 93.106 107.382 92.02 C 106.974 88.809 107.755 85.861 109.811 83.322 C 110.617 82.322 111.584 81.495 112.8 81.038 C 114.358 80.441 115.436 80.693 116.205 81.751 C 117.003 82.862 116.988 84.617 116.039 85.689 C 115.29 86.522 114.415 87.237 113.572 87.981 C 111.389 89.909 109.496 92.032 108.641 94.91 C 108.604 95.022 108.526 95.103 108.429 95.258 Z\" fill=\"rgb(3,165,80)\"></path><path d=\"M 106.248 95.141 C 105 94.199 103.847 93.259 102.622 92.429 C 99.923 90.599 96.865 89.651 93.706 88.985 C 92.186 88.669 90.651 88.379 89.163 87.956 C 86.816 87.304 85.184 84.992 85.313 82.535 C 85.385 81.214 85.996 80.16 87.246 79.585 C 90.606 78.02 93.792 78.87 96.853 80.424 C 100.456 82.257 103.144 85.092 104.776 88.769 C 105.562 90.539 105.823 92.547 106.308 94.454 C 106.357 94.644 106.276 94.871 106.248 95.141 Z\" fill=\"rgb(127,195,67)\"></path><path d=\"M 57.599 86.852 C 54.154 86.792 51.61 87.642 49.415 88.837 C 47.003 90.141 31.986 96.205 38.377 116.8 C 38.696 117.808 37.895 118.808 37.147 119.558 C 35.999 120.692 33.621 120.287 31.731 118.834 C 29.734 117.3 28.799 115.619 28.076 113.95 C 26.533 110.388 26.461 107.084 27.084 103.884 C 27.744 100.471 29.393 97.444 31.949 94.801 C 35.945 90.678 41.111 87.36 49.154 86.183 C 51.917 85.78 55.396 86.039 57.599 86.852 Z\" fill=\"rgb(239,82,37)\"></path><path d=\"M 146.319 109.797 C 148.757 110.075 150.7 109.584 152.449 108.786 C 154.362 107.909 155.835 106.66 157.16 105.31 C 159.125 103.302 160.726 101.078 161.738 98.527 C 162.369 96.933 162.917 95.298 163.339 93.618 C 163.864 91.524 164.134 89.332 164.666 87.24 C 164.87 86.445 165.326 85.675 165.975 85.129 C 166.965 84.302 168.596 84.796 169.709 86.083 C 170.886 87.453 171.284 88.858 171.54 90.245 C 172.077 93.198 171.612 95.835 170.665 98.346 C 169.661 101.026 168.014 103.322 165.786 105.249 C 162.306 108.269 158.112 110.547 152.212 110.917 C 150.195 111.052 147.76 110.595 146.319 109.797 Z\" fill=\"rgb(239,82,37)\"></path><path d=\"M 160.862 85.64 C 160.449 84.405 159.775 83.589 159.003 82.934 C 158.151 82.213 157.218 81.788 156.273 81.461 C 154.873 80.975 153.452 80.711 152.009 80.805 C 151.103 80.866 150.196 80.969 149.299 81.15 C 148.183 81.371 147.073 81.733 145.955 81.949 C 145.523 82.032 145.056 81.989 144.652 81.799 C 144.026 81.512 143.888 80.625 144.265 79.8 C 144.652 78.924 145.226 78.41 145.834 77.982 C 147.122 77.059 148.49 76.68 149.899 76.571 C 151.404 76.445 152.875 76.718 154.299 77.341 C 156.522 78.332 158.558 79.823 160.073 82.566 C 160.592 83.506 160.922 84.77 160.862 85.64 Z\" fill=\"rgb(239,82,37)\"></path><path d=\"M 61.077 124.623 C 61.783 124.672 62.448 124.744 63.119 124.758 C 64.591 124.784 65.982 124.393 67.339 123.865 C 67.996 123.618 68.65 123.345 69.321 123.135 C 70.368 122.807 71.556 123.281 72.109 124.244 C 72.402 124.764 72.434 125.318 72.104 125.844 C 71.212 127.26 69.797 127.728 68.254 127.889 C 66.441 128.079 64.723 127.671 63.203 126.674 C 62.474 126.2 61.877 125.505 61.229 124.899 C 61.163 124.835 61.134 124.732 61.077 124.623 Z\" fill=\"rgb(235,34,39)\"></path><path d=\"M 75.819 92.869 C 73.934 91.915 71.674 91.45 69.101 91.487 C 66.614 91.533 64.548 91.717 62.973 92.041 C 61.419 92.357 60.059 92.691 58.906 93.035 C 51.382 95.345 46.121 98.465 43.266 102.308 C 41.588 104.598 40.992 106.979 41.485 109.384 L 41.717 110.088 C 41.729 110.257 41.752 110.421 41.783 110.588 C 42.056 111.903 43.005 112.894 44.595 113.524 C 46.046 114.092 47.437 114.305 48.737 114.135 L 48.808 114.127 C 48.883 114.121 48.952 114.098 49.029 114.081 C 48.714 114.273 48.458 114.483 48.258 114.71 L 48.183 114.81 C 47.621 115.666 47.839 116.353 48.014 116.681 L 48.06 116.752 C 48.421 117.295 48.527 117.531 48.556 117.597 C 48.668 119.559 48.869 121.245 49.147 122.595 C 49.462 124.089 50.099 125.33 51.078 126.273 C 51.904 127.077 52.724 127.393 53.542 127.232 C 54.58 127.014 55.412 126.037 56.089 124.227 C 56.27 123.704 56.447 123.17 56.614 122.61 C 58.986 123.503 61.757 123.627 64.867 122.983 C 68.335 122.268 71.467 120.803 74.201 118.637 C 76.929 116.459 79.026 113.716 80.42 110.496 C 81.828 107.238 82.193 103.877 81.496 100.504 C 80.784 97.046 78.879 94.477 75.819 92.869 Z M 60.598 108.924 C 61.421 106.396 62.357 104.276 63.366 102.624 C 64.442 100.864 65.257 100.295 65.782 100.148 C 65.959 100.197 66.169 100.24 66.398 100.194 C 66.536 100.157 66.674 100.099 66.774 100.016 C 67.233 99.657 67.116 99.097 67.067 98.861 L 67.055 98.786 L 67.024 98.718 C 66.809 98.175 66.295 97.479 65.05 97.204 C 64.213 97.014 63.53 96.977 62.971 97.095 C 61.602 97.37 60.182 98.758 58.633 101.32 C 57.099 103.854 56.404 105.558 56.445 106.684 L 56.45 106.922 L 56.576 107.123 C 56.576 107.123 56.631 107.212 56.683 107.456 C 56.683 107.474 56.729 107.686 56.534 108.424 C 55.375 113.067 54.566 116.505 54.118 118.66 C 53.871 118.522 53.544 118.329 53.123 118.062 C 51.789 117.232 51.645 116.844 51.643 116.841 C 51.571 116.505 51.594 116.089 51.703 115.623 C 51.938 114.572 51.746 113.906 51.126 113.627 C 50.745 113.449 50.292 113.469 49.752 113.704 C 49.844 113.613 49.921 113.512 49.985 113.388 C 50.134 113.087 50.134 112.745 49.979 112.423 L 49.947 112.357 C 49.775 112.064 49.471 111.857 49.041 111.762 C 48.823 111.708 48.418 111.653 47.813 111.576 C 47.248 111.504 46.78 111.421 46.425 111.349 C 46.175 111.3 45.894 111.142 45.599 110.904 C 45.343 110.682 45.188 110.438 45.117 110.094 C 44.747 108.295 45.518 106.267 47.409 104.049 C 49.408 101.708 52.033 99.657 55.211 97.953 C 58.407 96.236 61.582 95.043 64.646 94.414 L 65.191 94.296 C 68.966 93.642 71.903 93.975 73.923 95.293 C 75.962 96.626 77.17 98.298 77.603 100.407 C 78.211 103.366 77.56 106.686 75.675 110.295 C 74.496 112.521 72.738 114.658 70.449 116.655 C 68.194 118.614 65.635 119.912 62.853 120.493 C 61.006 120.878 59.144 120.714 57.317 120.019 C 58.094 116.827 59.19 113.093 60.598 108.924 Z M 53.41 121.495 C 53.266 122.397 53.123 123.009 53.011 123.414 C 52.816 122.903 52.552 122.064 52.228 120.694 C 52.776 121.076 53.146 121.326 53.41 121.495 Z\" fill=\"rgb(242,122,33)\"></path><path d=\"M 160.371 90.705 C 160.064 90.536 159.788 90.547 159.599 90.582 C 159.195 90.668 158.874 90.952 158.653 91.435 L 158.627 91.475 C 157.071 95.414 154.33 98.729 150.466 101.314 C 149.171 102.185 147.984 102.736 146.931 102.954 C 146.126 103.121 145.509 103.061 145.096 102.756 C 144.655 102.449 144.401 102.107 144.325 101.719 C 144.216 101.199 144.192 100.639 144.249 100.062 C 144.316 99.352 144.465 98.619 144.697 97.85 C 145.001 98.191 145.492 98.418 146.229 98.263 C 146.297 98.249 146.364 98.229 146.444 98.214 C 148.036 97.749 149.878 96.715 151.912 95.138 C 153.96 93.538 155.371 91.843 156.112 90.085 C 156.639 89.128 156.774 88.025 156.521 86.784 C 156.008 84.285 154.306 83.202 151.731 83.736 C 149.66 84.161 147.265 85.908 144.408 89.076 C 141.608 92.176 139.909 95.043 139.37 97.605 L 139.365 97.637 C 139.318 97.884 139.284 98.12 139.256 98.352 C 137.982 100.949 135.994 103.176 133.326 104.96 C 132.319 105.64 131.387 106.068 130.581 106.238 C 129.987 106.364 129.543 106.318 129.25 106.112 C 128.943 105.893 128.762 105.652 128.711 105.388 C 128.625 104.997 128.613 104.569 128.651 104.126 C 128.696 103.655 128.791 103.164 128.929 102.664 C 129.201 102.854 129.586 102.957 130.087 102.851 C 130.151 102.839 130.208 102.825 130.283 102.802 C 131.582 102.426 133.019 101.619 134.681 100.332 C 136.335 99.048 137.477 97.674 138.074 96.252 C 138.509 95.454 138.622 94.535 138.418 93.509 C 137.987 91.441 136.527 90.51 134.399 90.949 C 132.716 91.3 130.782 92.702 128.481 95.253 C 126.766 97.143 125.595 98.887 124.924 100.518 C 124.396 101.633 123.628 102.903 122.621 104.305 C 121.511 105.856 120.564 106.965 119.795 107.602 L 119.775 107.623 C 119.29 108.048 118.975 108.18 118.791 108.22 C 118.619 108.255 118.473 108.234 118.275 108.031 C 117.974 107.712 117.779 107.347 117.687 106.893 C 117.566 106.307 117.486 105.85 117.452 105.517 C 117.434 105.391 117.42 104.971 117.584 103.719 C 123.235 96.58 127.133 89.803 129.181 83.587 L 129.198 83.526 C 129.5 82.331 129.583 81.426 129.442 80.763 C 129.305 80.091 129.084 79.582 128.762 79.206 C 127.919 78.252 126.663 77.948 125.033 78.281 C 123.496 78.6 122.156 79.582 121.049 81.176 C 120.492 81.932 120.091 82.552 119.812 83.061 L 118.722 85.218 C 117.492 87.838 116.273 91.627 115.091 96.479 C 114.474 99.013 114.067 101.176 113.855 103 C 113.264 104.198 112.469 105.482 111.494 106.821 C 110.372 108.355 109.466 109.415 108.809 109.975 C 108.513 110.217 108.321 110.288 108.238 110.303 C 108.152 110.32 108.089 110.311 107.985 110.237 C 107.899 110.168 107.779 110.056 107.716 109.754 C 107.63 109.352 107.578 109.016 107.558 108.752 C 107.501 108.272 107.61 106.703 108.924 101.762 C 109.021 101.441 109.116 101.104 109.21 100.762 L 109.23 100.639 C 109.245 100.556 109.262 100.432 109.288 100.294 C 109.305 100.197 109.348 100.021 109.44 99.691 C 109.586 99.211 109.549 98.711 109.348 98.266 L 109.314 98.2 C 109.058 97.738 108.396 97.005 106.847 97.321 L 106.439 97.413 L 106.362 97.439 C 105.587 97.772 105.126 98.852 104.801 101.136 C 104.735 101.415 104.721 101.673 104.761 101.903 C 104.182 103.305 103.359 105.04 102.317 107.077 C 102.314 107.085 102.314 107.1 102.303 107.111 C 101.93 107.729 101.511 108.346 101.049 108.981 C 99.922 110.521 99.018 111.584 98.356 112.141 C 98.078 112.377 97.885 112.446 97.776 112.475 C 97.685 112.486 97.598 112.483 97.492 112.403 C 97.403 112.342 97.283 112.225 97.226 111.929 C 97.142 111.524 97.082 111.193 97.065 110.952 C 96.887 108.777 97.34 106.453 98.393 104.04 L 98.413 103.98 C 98.539 103.612 98.508 103.242 98.333 102.917 C 98.198 102.676 97.986 102.489 97.702 102.357 C 97.713 102.337 97.728 102.317 97.742 102.296 C 97.946 101.981 97.914 101.65 97.854 101.363 C 97.702 100.616 97.145 100.021 96.204 99.608 C 95.367 99.249 94.443 99.16 93.451 99.372 C 92.564 99.55 91.669 99.863 90.789 100.28 C 89.885 100.714 88.772 101.535 87.392 102.776 C 86.044 103.983 84.782 105.382 83.632 106.922 C 82.438 108.525 81.644 110.113 81.274 111.624 C 81.079 112.371 81.058 113.121 81.213 113.876 C 81.377 114.678 81.79 115.376 82.444 115.962 C 83.055 116.505 83.749 116.887 84.506 117.102 C 85.267 117.315 85.975 117.352 86.603 117.223 C 87.874 116.965 89.151 116.06 90.398 114.546 C 91.356 113.382 92.2 112.196 92.92 111.007 C 92.96 111.501 93.026 111.972 93.118 112.437 C 93.233 112.966 93.39 113.445 93.588 113.862 L 93.62 113.922 C 94.457 115.342 95.717 115.922 97.26 115.6 C 98.674 115.307 100.08 114.391 101.422 112.882 C 102.005 112.242 102.742 111.222 103.657 109.791 C 103.671 110.133 103.703 110.438 103.763 110.719 C 103.846 111.113 103.952 111.438 104.099 111.713 L 104.122 111.754 C 104.956 113.17 106.247 113.741 107.851 113.405 C 108.482 113.279 109.179 112.974 109.999 112.477 C 111.218 111.705 112.524 110.231 113.961 107.967 C 114.606 110.504 116.428 111.581 119.133 111.027 C 120.332 110.777 121.445 110.09 122.423 108.987 C 123.12 108.206 123.857 107.229 124.632 106.089 C 124.835 106.623 125.142 107.082 125.524 107.476 C 126.904 108.829 128.883 109.254 131.396 108.737 C 134.187 108.154 136.814 106.31 139.204 103.23 C 139.358 103.026 139.519 102.822 139.666 102.607 C 139.913 103.199 140.253 103.71 140.684 104.144 C 142.37 105.798 144.781 106.31 147.87 105.669 C 151.323 104.951 154.582 102.656 157.551 98.826 C 159.071 96.876 160.244 94.75 161.034 92.495 C 161.183 92.162 161.226 91.846 161.169 91.558 C 161.114 91.36 160.958 90.909 160.371 90.705 Z M 146.805 93.388 C 148.331 90.946 149.883 89.117 151.47 87.939 C 152.334 87.258 152.816 87.086 153.018 87.037 C 153.058 87.031 153.091 87.025 153.11 87.022 C 153.122 87.048 153.131 87.097 153.148 87.146 C 153.24 87.606 153.151 88.146 152.873 88.778 C 152.021 90.395 150.471 92.153 148.251 94.012 C 147.156 94.963 146.226 95.56 145.483 95.807 C 145.848 95.023 146.29 94.216 146.805 93.388 Z M 134.332 94.598 C 134.881 94.161 135.219 94 135.409 93.94 C 135.449 94.247 135.374 94.621 135.184 95.043 C 134.529 96.313 133.306 97.695 131.553 99.16 C 130.805 99.809 130.234 100.176 129.824 100.383 C 130.068 99.892 130.352 99.392 130.664 98.892 C 131.864 96.973 133.086 95.531 134.332 94.598 Z M 126.123 82.509 C 125.337 85.287 123.966 88.608 122.027 92.371 C 120.839 94.684 119.675 96.64 118.539 98.229 C 118.949 96.422 119.506 94.397 120.203 92.173 C 121.623 87.663 123.355 84.193 125.355 81.866 C 125.856 81.291 126.169 81.116 126.301 81.073 C 126.31 81.11 126.327 81.148 126.336 81.208 C 126.356 81.294 126.39 81.625 126.123 82.509 Z M 85.066 114.049 C 85.023 113.853 85.003 113.221 85.68 111.455 C 86.208 110.076 86.887 108.775 87.714 107.602 C 88.732 106.249 89.879 105.051 91.13 104.04 C 92.326 103.072 93.453 102.463 94.475 102.256 C 94.704 102.208 94.959 102.176 95.212 102.156 C 94.796 102.291 94.311 102.851 91.141 108.076 C 90.539 109.076 89.331 110.739 87.55 113.006 C 86.179 114.638 85.554 114.879 85.387 114.908 C 85.335 114.845 85.186 114.643 85.066 114.049 Z\" fill=\"rgb(242,122,33)\"></path><path d=\"M 75.859 91.352 C 74.006 90.346 71.763 89.815 69.182 89.777 C 66.695 89.752 64.623 89.872 63.04 90.154 C 61.485 90.427 60.108 90.717 58.949 91.018 C 51.362 93.121 46.015 96.086 43.052 99.841 C 41.305 102.084 40.642 104.451 41.061 106.87 L 41.276 107.58 C 41.285 107.743 41.299 107.91 41.328 108.076 C 41.557 109.401 42.481 110.415 44.053 111.09 C 45.487 111.708 46.873 111.949 48.178 111.828 L 48.244 111.822 C 48.319 111.805 48.396 111.791 48.476 111.774 C 48.146 111.963 47.888 112.162 47.685 112.386 L 47.604 112.48 C 47.016 113.325 47.211 114.012 47.381 114.345 L 47.424 114.417 C 47.774 114.974 47.874 115.209 47.897 115.276 C 47.951 117.243 48.103 118.924 48.344 120.288 C 48.614 121.794 49.222 123.046 50.166 124.026 C 50.961 124.85 51.784 125.192 52.604 125.051 C 53.651 124.865 54.512 123.911 55.235 122.124 C 55.433 121.613 55.625 121.075 55.805 120.518 C 58.158 121.478 60.923 121.685 64.053 121.127 C 67.526 120.518 70.713 119.142 73.499 117.051 C 76.295 114.951 78.473 112.276 79.953 109.094 C 81.456 105.882 81.918 102.532 81.318 99.142 C 80.704 95.664 78.871 93.044 75.859 91.352 Z M 60.183 106.959 C 61.081 104.46 62.076 102.363 63.132 100.737 C 64.259 99.01 65.091 98.467 65.613 98.327 C 65.791 98.387 66 98.43 66.23 98.395 C 66.373 98.373 66.505 98.312 66.611 98.232 C 67.073 97.884 66.978 97.318 66.941 97.08 L 66.924 97.011 L 66.898 96.936 C 66.7 96.396 66.207 95.678 64.968 95.359 C 64.139 95.144 63.456 95.086 62.894 95.19 C 61.517 95.437 60.062 96.778 58.436 99.295 C 56.83 101.788 56.087 103.469 56.087 104.589 L 56.092 104.836 L 56.216 105.031 C 56.216 105.031 56.262 105.121 56.31 105.376 C 56.31 105.376 56.345 105.603 56.135 106.333 C 54.839 110.941 53.929 114.348 53.419 116.496 C 53.178 116.347 52.857 116.143 52.449 115.87 C 51.138 114.997 51.001 114.615 50.998 114.609 C 50.943 114.261 50.969 113.848 51.095 113.379 C 51.359 112.351 51.19 111.673 50.582 111.374 C 50.2 111.188 49.75 111.199 49.205 111.412 C 49.294 111.328 49.374 111.225 49.44 111.099 C 49.604 110.8 49.612 110.458 49.466 110.133 L 49.434 110.07 C 49.277 109.769 48.973 109.556 48.548 109.444 C 48.333 109.392 47.928 109.318 47.326 109.223 C 46.767 109.139 46.302 109.05 45.946 108.964 C 45.697 108.904 45.427 108.746 45.132 108.49 C 44.882 108.269 44.73 108.008 44.676 107.666 C 44.354 105.862 45.186 103.856 47.14 101.696 C 49.205 99.415 51.884 97.439 55.114 95.824 C 58.364 94.207 61.566 93.104 64.649 92.558 L 65.191 92.463 C 68.986 91.918 71.912 92.334 73.895 93.719 C 75.9 95.098 77.053 96.81 77.426 98.936 C 77.954 101.9 77.205 105.21 75.217 108.755 C 73.975 110.946 72.153 113.035 69.807 114.959 C 67.492 116.867 64.905 118.079 62.108 118.571 C 60.246 118.904 58.387 118.691 56.589 117.947 C 57.452 114.779 58.663 111.081 60.183 106.959 Z M 52.627 119.315 C 52.461 120.217 52.306 120.82 52.18 121.219 C 52.002 120.708 51.767 119.86 51.477 118.487 C 52.013 118.878 52.38 119.136 52.627 119.315 Z\" fill=\"rgb(5,145,77)\"></path><path d=\"M 160.443 91.631 C 160.142 91.459 159.861 91.459 159.677 91.487 C 159.266 91.562 158.936 91.835 158.699 92.312 L 158.675 92.358 C 157.014 96.248 154.169 99.474 150.231 101.956 C 148.914 102.783 147.716 103.306 146.653 103.484 C 145.842 103.636 145.225 103.556 144.823 103.245 C 144.396 102.918 144.152 102.576 144.081 102.177 C 143.988 101.657 143.978 101.099 144.055 100.528 C 144.14 99.824 144.313 99.086 144.571 98.325 C 144.855 98.678 145.348 98.913 146.088 98.784 C 146.155 98.773 146.226 98.755 146.306 98.738 C 147.91 98.325 149.778 97.345 151.857 95.819 C 153.955 94.291 155.414 92.631 156.2 90.899 C 156.757 89.954 156.923 88.85 156.705 87.609 C 156.264 85.096 154.596 83.958 152.009 84.421 C 149.927 84.783 147.483 86.463 144.531 89.546 C 141.643 92.565 139.866 95.383 139.247 97.928 L 139.242 97.957 C 139.192 98.195 139.152 98.434 139.118 98.669 C 137.764 101.243 135.708 103.395 132.994 105.101 C 131.966 105.762 131.029 106.164 130.219 106.305 C 129.62 106.408 129.176 106.354 128.894 106.135 C 128.588 105.908 128.413 105.673 128.364 105.4 C 128.292 105.001 128.289 104.575 128.344 104.136 C 128.407 103.665 128.51 103.185 128.665 102.682 C 128.94 102.886 129.319 102.993 129.821 102.901 C 129.882 102.892 129.944 102.878 130.01 102.863 C 131.33 102.522 132.787 101.755 134.488 100.519 C 136.175 99.278 137.351 97.931 137.994 96.541 C 138.452 95.751 138.594 94.837 138.416 93.809 C 138.043 91.723 136.61 90.749 134.471 91.125 C 132.778 91.424 130.805 92.777 128.427 95.256 C 126.66 97.104 125.435 98.81 124.726 100.424 C 124.167 101.519 123.358 102.763 122.311 104.148 C 121.158 105.656 120.177 106.742 119.394 107.359 L 119.374 107.371 C 118.88 107.79 118.556 107.911 118.37 107.942 C 118.198 107.977 118.048 107.951 117.859 107.738 C 117.564 107.417 117.386 107.037 117.303 106.578 C 117.199 106.003 117.133 105.529 117.102 105.196 C 117.096 105.07 117.09 104.662 117.291 103.409 C 123.143 96.437 127.242 89.784 129.465 83.622 L 129.488 83.565 C 129.821 82.375 129.93 81.479 129.815 80.807 C 129.695 80.126 129.488 79.615 129.178 79.232 C 128.364 78.259 127.119 77.908 125.475 78.201 C 123.935 78.474 122.564 79.414 121.41 80.976 C 120.825 81.72 120.406 82.326 120.114 82.832 L 118.966 84.961 C 117.661 87.54 116.33 91.295 115.014 96.104 C 114.325 98.62 113.849 100.769 113.591 102.585 C 112.957 103.774 112.134 105.032 111.115 106.339 C 109.951 107.842 109.01 108.876 108.338 109.407 C 108.037 109.643 107.845 109.706 107.759 109.723 C 107.673 109.735 107.613 109.729 107.509 109.646 C 107.426 109.583 107.309 109.462 107.257 109.16 C 107.182 108.752 107.139 108.419 107.125 108.155 C 107.085 107.664 107.243 106.109 108.694 101.209 C 108.803 100.887 108.909 100.565 109.01 100.218 L 109.035 100.088 C 109.047 100.008 109.07 99.893 109.101 99.744 C 109.124 99.657 109.165 99.479 109.268 99.152 C 109.428 98.672 109.403 98.178 109.219 97.721 L 109.188 97.658 C 108.944 97.181 108.304 96.431 106.752 96.704 L 106.339 96.779 L 106.259 96.811 C 105.467 97.118 104.985 98.175 104.586 100.465 C 104.509 100.74 104.495 100.985 104.526 101.223 C 103.906 102.608 103.035 104.323 101.939 106.322 C 101.93 106.336 101.93 106.345 101.922 106.357 C 101.529 106.96 101.092 107.566 100.605 108.195 C 99.44 109.698 98.499 110.729 97.828 111.263 C 97.541 111.493 97.346 111.565 97.24 111.582 C 97.142 111.602 97.059 111.591 96.95 111.51 C 96.873 111.447 96.749 111.329 96.701 111.025 C 96.629 110.62 96.583 110.284 96.566 110.042 C 96.454 107.868 96.97 105.555 98.101 103.174 L 98.121 103.116 C 98.264 102.746 98.244 102.375 98.072 102.053 C 97.943 101.809 97.736 101.611 97.449 101.476 C 97.472 101.453 97.49 101.427 97.501 101.413 C 97.711 101.108 97.69 100.769 97.633 100.485 C 97.504 99.735 96.97 99.126 96.041 98.684 C 95.212 98.293 94.283 98.187 93.296 98.365 C 92.401 98.523 91.497 98.804 90.599 99.201 C 89.687 99.609 88.557 100.393 87.14 101.594 C 85.76 102.763 84.455 104.127 83.256 105.633 C 82.019 107.201 81.182 108.761 80.769 110.266 C 80.551 111.005 80.508 111.766 80.64 112.516 C 80.777 113.323 81.17 114.035 81.804 114.63 C 82.404 115.199 83.084 115.598 83.835 115.828 C 84.593 116.064 85.295 116.129 85.929 116.015 C 87.209 115.793 88.508 114.929 89.799 113.449 C 90.789 112.312 91.678 111.148 92.421 109.985 C 92.452 110.47 92.501 110.953 92.582 111.41 C 92.676 111.944 92.82 112.432 93.009 112.852 L 93.041 112.915 C 93.835 114.357 95.08 114.975 96.635 114.696 C 98.058 114.446 99.486 113.573 100.866 112.099 C 101.471 111.481 102.237 110.485 103.189 109.074 C 103.192 109.413 103.221 109.729 103.27 110.008 C 103.344 110.401 103.442 110.732 103.577 111.013 L 103.597 111.048 C 104.391 112.493 105.665 113.107 107.28 112.817 C 107.908 112.708 108.617 112.424 109.449 111.947 C 110.694 111.214 112.036 109.772 113.536 107.557 C 114.113 110.103 115.9 111.249 118.625 110.763 C 119.83 110.551 120.954 109.902 121.973 108.824 C 122.687 108.063 123.459 107.101 124.262 105.986 C 124.46 106.526 124.738 107 125.114 107.405 C 126.456 108.795 128.415 109.281 130.945 108.827 C 133.757 108.336 136.43 106.561 138.909 103.553 C 139.069 103.349 139.232 103.145 139.387 102.938 C 139.623 103.536 139.942 104.058 140.362 104.509 C 142.001 106.199 144.401 106.788 147.5 106.236 C 150.971 105.621 154.299 103.412 157.377 99.675 C 158.957 97.776 160.182 95.682 161.036 93.449 C 161.197 93.125 161.252 92.809 161.2 92.522 C 161.171 92.315 161.025 91.858 160.443 91.631 Z M 146.805 93.924 C 148.404 91.533 150.016 89.752 151.619 88.612 C 152.505 87.957 152.99 87.802 153.205 87.762 C 153.243 87.753 153.271 87.747 153.291 87.747 C 153.305 87.77 153.314 87.813 153.329 87.874 C 153.406 88.33 153.297 88.87 153.005 89.491 C 152.109 91.08 150.506 92.8 148.234 94.59 C 147.118 95.509 146.171 96.075 145.414 96.308 C 145.804 95.532 146.261 94.736 146.805 93.924 Z M 134.299 94.771 C 134.861 94.354 135.205 94.199 135.392 94.148 C 135.426 94.455 135.34 94.831 135.142 95.251 C 134.439 96.495 133.186 97.836 131.39 99.255 C 130.621 99.882 130.044 100.235 129.632 100.424 C 129.882 99.945 130.179 99.454 130.512 98.959 C 131.766 97.069 133.034 95.664 134.299 94.771 Z M 126.445 82.444 C 125.578 85.205 124.113 88.485 122.067 92.188 C 120.817 94.464 119.598 96.388 118.416 97.954 C 118.88 96.156 119.491 94.145 120.252 91.938 C 121.809 87.48 123.636 84.062 125.696 81.792 C 126.215 81.226 126.534 81.068 126.671 81.031 C 126.68 81.062 126.689 81.108 126.706 81.166 C 126.714 81.246 126.737 81.574 126.445 82.444 Z M 84.489 112.791 C 84.458 112.602 84.458 111.958 85.184 110.218 C 85.746 108.853 86.469 107.572 87.326 106.414 C 88.382 105.093 89.564 103.935 90.843 102.961 C 92.068 102.022 93.213 101.456 94.242 101.275 C 94.475 101.235 94.727 101.203 94.977 101.197 C 94.561 101.315 94.053 101.861 90.737 106.994 C 90.106 107.974 88.849 109.591 87.005 111.821 C 85.591 113.406 84.951 113.625 84.793 113.656 C 84.742 113.596 84.598 113.383 84.489 112.791 Z\" fill=\"rgb(5,145,77)\"></path><path d=\"M 165.232 76.144 C 165.508 76.098 165.914 76.055 166.342 76.055 C 166.921 76.055 167.317 76.159 167.584 76.391 C 167.805 76.578 167.931 76.854 167.931 77.201 C 167.931 77.716 167.582 78.072 167.2 78.21 L 167.2 78.233 C 167.495 78.336 167.668 78.621 167.768 79.003 C 167.894 79.508 168.003 79.976 168.086 80.132 L 167.321 80.132 C 167.266 80.005 167.174 79.675 167.06 79.172 C 166.939 78.652 166.755 78.483 166.33 78.474 L 165.961 78.474 L 165.961 80.132 L 165.232 80.132 Z M 165.961 77.931 L 166.394 77.931 C 166.89 77.931 167.2 77.667 167.2 77.262 C 167.2 76.828 166.892 76.621 166.414 76.621 C 166.184 76.621 166.035 76.633 165.964 76.653 L 165.964 77.931 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 166.456 81.639 C 164.505 81.639 162.91 80.051 162.91 78.094 C 162.91 76.132 164.505 74.552 166.456 74.552 C 168.406 74.552 169.996 76.132 169.996 78.094 C 169.996 80.051 168.406 81.639 166.456 81.639 Z M 166.456 75.075 C 164.79 75.075 163.436 76.428 163.436 78.094 C 163.436 79.763 164.79 81.119 166.456 81.119 C 168.123 81.119 169.474 79.761 169.474 78.094 C 169.474 76.428 168.121 75.075 166.456 75.075 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:10625255800,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{\"aria-label\":\"Social Media Icons\",className:\"framer-14siqw4\",layoutDependency:layoutDependency,layoutId:\"XuR9RMdg3\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/daileeindia\",motionChild:true,nodeId:\"Tm34Ndrpv\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1wx8w0x framer-19nat08\",\"data-framer-name\":\"bxl-linkedin-square.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Tm34Ndrpv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 13.988 2.329 C 7.718 2.329 2.634 7.554 2.634 13.998 C 2.634 19.822 6.785 24.649 12.214 25.528 L 12.214 17.372 L 9.33 17.372 L 9.33 13.998 L 12.214 13.998 L 12.214 11.427 C 12.214 8.5 13.91 6.886 16.502 6.886 C 17.744 6.886 19.046 7.114 19.046 7.114 L 19.046 9.984 L 17.61 9.984 C 16.202 9.984 15.762 10.885 15.762 11.808 L 15.762 13.996 L 18.908 13.996 L 18.405 17.37 L 15.762 17.37 L 15.762 25.526 C 21.191 24.651 25.342 19.823 25.342 13.998 C 25.342 7.554 20.258 2.329 13.988 2.329 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:11469466143,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\" https://www.linkedin.com/company/daily-fresh-fruits-india-private-limited/ \",motionChild:true,nodeId:\"UaLmD3ZBt\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1dc2e82 framer-19nat08\",\"data-framer-name\":\"bxl-linkedin-square.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UaLmD3ZBt\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 23.085 3.497 L 4.916 3.497 C 4.615 3.497 4.326 3.62 4.113 3.839 C 3.9 4.058 3.781 4.355 3.781 4.664 L 3.781 23.337 C 3.781 23.647 3.9 23.944 4.113 24.162 C 4.326 24.381 4.615 24.504 4.916 24.504 L 23.085 24.504 C 23.386 24.504 23.675 24.381 23.888 24.162 C 24.101 23.944 24.22 23.647 24.22 23.337 L 24.22 4.664 C 24.22 4.355 24.101 4.058 23.888 3.839 C 23.675 3.62 23.386 3.497 23.085 3.497 Z M 9.843 21.396 L 6.809 21.396 L 6.809 11.371 L 9.843 11.371 Z M 8.326 10.002 C 7.86 10.002 7.413 9.812 7.083 9.473 C 6.754 9.134 6.569 8.675 6.569 8.196 C 6.569 7.716 6.754 7.257 7.083 6.918 C 7.413 6.579 7.86 6.389 8.326 6.389 C 8.793 6.389 9.24 6.579 9.569 6.918 C 9.899 7.257 10.084 7.716 10.084 8.196 C 10.084 8.675 9.899 9.134 9.569 9.473 C 9.24 9.812 8.793 10.002 8.326 10.002 Z M 21.198 21.396 L 18.167 21.396 L 18.167 16.521 C 18.167 15.359 18.146 13.864 16.591 13.864 C 15.012 13.864 14.773 15.132 14.773 16.44 L 14.773 21.398 L 11.744 21.398 L 11.744 11.372 L 14.651 11.372 L 14.651 12.742 L 14.693 12.742 C 15.096 11.955 16.087 11.124 17.559 11.124 C 20.63 11.124 21.196 13.199 21.196 15.899 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:10159421902,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\" https://www.youtube.com/@Dailee_India\",motionChild:true,nodeId:\"UMmdmYndV\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-7k01jv framer-19nat08\",\"data-framer-name\":\"icons8-youtube 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UMmdmYndV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 24.869 8.267 C 24.651 7.066 23.614 6.191 22.412 5.918 C 20.611 5.537 17.28 5.264 13.676 5.264 C 10.073 5.264 6.688 5.537 4.886 5.918 C 3.685 6.191 2.647 7.01 2.429 8.267 C 2.21 9.632 1.992 11.543 1.992 14 C 1.992 16.457 2.21 18.368 2.483 19.733 C 2.702 20.933 3.739 21.808 4.94 22.081 C 6.851 22.463 10.127 22.736 13.731 22.736 C 17.335 22.736 20.611 22.463 22.522 22.081 C 23.723 21.808 24.76 20.989 24.979 19.733 C 25.197 18.368 25.47 16.401 25.525 14 C 25.415 11.543 25.142 9.632 24.869 8.267 Z M 10.728 17.822 L 10.728 10.178 L 17.389 14 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:10319867161,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dailee_india \",motionChild:true,nodeId:\"NgvmSsJnI\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-7aazse framer-19nat08\",\"data-framer-name\":\"icons8-twitterx 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NgvmSsJnI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28.875 28\"><path d=\"M 6.603 2.24 C 4.438 2.24 2.683 3.995 2.683 6.16 L 2.683 21.84 C 2.683 24.005 4.438 25.76 6.603 25.76 L 22.283 25.76 C 24.448 25.76 26.203 24.005 26.203 21.84 L 26.203 6.16 C 26.203 3.995 24.448 2.24 22.283 2.24 Z M 7.771 7.28 L 12.216 7.28 L 15.373 11.765 L 19.203 7.28 L 20.603 7.28 L 16.005 12.663 L 21.675 20.72 L 17.231 20.72 L 13.568 15.516 L 9.123 20.72 L 7.723 20.72 L 12.936 14.618 Z M 9.915 8.4 L 17.815 19.6 L 19.531 19.6 L 11.631 8.4 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:8879239613,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/dailee_india/\",motionChild:true,nodeId:\"XsDi25EQI\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-15bjjaf framer-19nat08\",\"data-framer-name\":\"bxl-instagram-alt.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XsDi25EQI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 24.171 9.688 C 24.16 8.804 23.998 7.929 23.695 7.101 C 23.432 6.404 23.03 5.77 22.516 5.241 C 22.001 4.712 21.384 4.299 20.705 4.029 C 19.911 3.722 19.071 3.556 18.223 3.538 C 17.131 3.488 16.784 3.474 14.011 3.474 C 11.238 3.474 10.883 3.474 9.799 3.538 C 8.951 3.556 8.112 3.722 7.317 4.029 C 6.638 4.299 6.022 4.712 5.507 5.241 C 4.992 5.77 4.59 6.404 4.328 7.101 C 4.029 7.917 3.868 8.78 3.852 9.652 C 3.803 10.775 3.788 11.131 3.788 13.981 C 3.788 16.831 3.788 17.195 3.852 18.311 C 3.869 19.184 4.029 20.045 4.328 20.864 C 4.591 21.561 4.993 22.195 5.508 22.724 C 6.023 23.253 6.64 23.665 7.319 23.935 C 8.111 24.254 8.95 24.432 9.8 24.46 C 10.893 24.511 11.24 24.526 14.013 24.526 C 16.785 24.526 17.141 24.526 18.225 24.46 C 19.074 24.443 19.913 24.278 20.708 23.972 C 21.386 23.701 22.003 23.288 22.517 22.759 C 23.032 22.23 23.434 21.596 23.697 20.899 C 23.996 20.082 24.156 19.22 24.173 18.346 C 24.222 17.223 24.237 16.868 24.237 14.016 C 24.235 11.166 24.235 10.805 24.171 9.688 Z M 14.005 19.371 C 11.104 19.371 8.755 16.956 8.755 13.976 C 8.755 10.995 11.104 8.58 14.005 8.58 C 15.397 8.58 16.732 9.149 17.717 10.16 C 18.701 11.172 19.254 12.545 19.254 13.976 C 19.254 15.406 18.701 16.779 17.717 17.791 C 16.732 18.802 15.397 19.371 14.005 19.371 Z M 19.463 9.639 C 19.302 9.639 19.143 9.606 18.994 9.543 C 18.846 9.48 18.711 9.387 18.597 9.27 C 18.483 9.154 18.393 9.015 18.332 8.862 C 18.27 8.709 18.239 8.546 18.239 8.381 C 18.239 8.215 18.271 8.052 18.332 7.899 C 18.394 7.747 18.484 7.608 18.597 7.491 C 18.711 7.375 18.846 7.282 18.994 7.219 C 19.143 7.156 19.302 7.123 19.462 7.123 C 19.623 7.123 19.782 7.156 19.931 7.219 C 20.079 7.282 20.214 7.375 20.328 7.491 C 20.441 7.608 20.531 7.747 20.593 7.899 C 20.654 8.052 20.686 8.215 20.686 8.381 C 20.686 9.076 20.139 9.639 19.463 9.639 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path><path d=\"M 14.003 17.481 C 15.886 17.481 17.413 15.911 17.413 13.976 C 17.413 12.04 15.886 10.471 14.003 10.471 C 12.12 10.471 10.593 12.04 10.593 13.976 C 10.593 15.911 12.12 17.481 14.003 17.481 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:11687454700,withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j8ufou\",layoutDependency:layoutDependency,layoutId:\"dUnMUtgtf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wf7to4\",\"data-framer-name\":\"Frame 1410125809\",layoutDependency:layoutDependency,layoutId:\"IElcyc6uM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"FnH8y57tl\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Home\"})})})}),className:\"framer-i371sq\",\"data-framer-name\":\"About us\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"FnH8y57tl\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f4HS2ulvM\"},motionChild:true,nodeId:\"uC0GKyGgA\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"About us\"})})})}),className:\"framer-jmig54\",\"data-framer-name\":\"About us\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"uC0GKyGgA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mwDjPSv20\"},motionChild:true,nodeId:\"z12nEz0b_\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Products\"})})})}),className:\"framer-116mjqz\",\"data-framer-name\":\"Products\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"z12nEz0b_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jU3cLiUL2\"},motionChild:true,nodeId:\"KddW0YNsZ\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Insights\"})})})}),className:\"framer-1m0so5n\",\"data-framer-name\":\"Insights\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"KddW0YNsZ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LP_LISXuI\"},motionChild:true,nodeId:\"UeYuRxWvk\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"CSR\"})})})}),className:\"framer-11b9v4q\",\"data-framer-name\":\"CSR\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"UeYuRxWvk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fb1r0f\",layoutDependency:layoutDependency,layoutId:\"OH7OaLqnZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5od5bf\",\"data-framer-name\":\"Frame 1410125944\",layoutDependency:layoutDependency,layoutId:\"WgJPSFEe_\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-hs71wb\",\"data-framer-name\":\"Frame 1410125945\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"wWGT29E7S\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.06022 4.85984C7.6356 3.28446 9.77228 2.39941 12.0002 2.39941C14.2281 2.39941 16.3648 3.28446 17.9402 4.85984C19.5156 6.43523 20.4006 8.57191 20.4006 10.7998C20.4006 13.0278 19.5156 15.1645 17.9402 16.7398L12.0002 22.6798L6.06022 16.7398C5.28011 15.9598 4.6613 15.0338 4.2391 14.0146C3.81691 12.9954 3.59961 11.903 3.59961 10.7998C3.59961 9.69667 3.81691 8.6043 4.2391 7.5851C4.6613 6.56591 5.28011 5.63987 6.06022 4.85984ZM12.0002 13.1998C12.6367 13.1998 13.2472 12.947 13.6973 12.4969C14.1474 12.0468 14.4002 11.4364 14.4002 10.7998C14.4002 10.1633 14.1474 9.55287 13.6973 9.10279C13.2472 8.6527 12.6367 8.39984 12.0002 8.39984C11.3637 8.39984 10.7532 8.6527 10.3032 9.10279C9.85307 9.55287 9.60022 10.1633 9.60022 10.7998C9.60022 11.4364 9.85307 12.0468 10.3032 12.4969C10.7532 12.947 11.3637 13.1998 12.0002 13.1998Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:\"Daily Fresh Fruits India Private Limited\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 250, 233))\"},children:\"73/2, Namakkal Main Road, A.K.Samuthiram Pachal, Namakkal, Tamil Nadu, India, 637018.\"})]}),className:\"framer-1bc4evs\",\"data-framer-name\":\"Daily Fresh Fruits India Private Limited 73/2,Namakkal Main Road, A.K.Samuthiram Pachal, Namakkal, Tamil Nadu, 637018.\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Jq_oeBabu\",style:{\"--extracted-2gxw0f\":\"rgb(255, 250, 233)\",\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ys3vv1\",\"data-framer-name\":\"Frame 1410125947\",layoutDependency:layoutDependency,layoutId:\"Wc1q89WhY\",children:[/*#__PURE__*/_jsx(Link,{href:\"tel:18008899070\",motionChild:true,nodeId:\"izCBiVC95\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-yccvaz framer-19nat08\",\"data-framer-name\":\"Frame 1410125945\",layoutDependency:layoutDependency,layoutId:\"izCBiVC95\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14yzwon\",\"data-framer-name\":\"Phone\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"caxCCsLLh\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.5 3C2.5 2.73478 2.60536 2.48043 2.79289 2.29289C2.98043 2.10536 3.23478 2 3.5 2H5.653C5.88971 2.00011 6.1187 2.08418 6.29924 2.23726C6.47979 2.39034 6.60018 2.6025 6.639 2.836L7.379 7.271C7.41436 7.48222 7.38097 7.69921 7.28376 7.89003C7.18655 8.08085 7.03065 8.23543 6.839 8.331L5.291 9.104C5.84611 10.4797 6.67283 11.7293 7.72178 12.7782C8.77072 13.8272 10.0203 14.6539 11.396 15.209L12.17 13.661C12.2655 13.4695 12.4199 13.3138 12.6106 13.2166C12.8012 13.1194 13.0179 13.0859 13.229 13.121L17.664 13.861C17.8975 13.8998 18.1097 14.0202 18.2627 14.2008C18.4158 14.3813 18.4999 14.6103 18.5 14.847V17C18.5 17.2652 18.3946 17.5196 18.2071 17.7071C18.0196 17.8946 17.7652 18 17.5 18H15.5C8.32 18 2.5 12.18 2.5 5V3Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:\"1800-889-9070\"})}),className:\"framer-43wtq6\",\"data-framer-name\":\"1800-889-9070\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"xOsZbKRIH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"mailto:customercare@dailee.in\",motionChild:true,nodeId:\"zp2HioGTa\",openInNewTab:true,scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-lqzb26 framer-19nat08\",\"data-framer-name\":\"Frame 1410125946\",layoutDependency:layoutDependency,layoutId:\"zp2HioGTa\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-y8t7n8\",\"data-framer-name\":\"Mail\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"k57IGsPXH\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.50391 5.884L10.5009 9.882L18.4979 5.884C18.4683 5.37444 18.245 4.89549 17.8737 4.54523C17.5025 4.19497 17.0113 3.99991 16.5009 4H4.50091C3.99049 3.99991 3.49935 4.19497 3.12808 4.54523C2.75681 4.89549 2.53351 5.37444 2.50391 5.884Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n<path d=\"M18.5 8.11816L10.5 12.1182L2.5 8.11816V14.0002C2.5 14.5306 2.71071 15.0393 3.08579 15.4144C3.46086 15.7895 3.96957 16.0002 4.5 16.0002H16.5C17.0304 16.0002 17.5391 15.7895 17.9142 15.4144C18.2893 15.0393 18.5 14.5306 18.5 14.0002V8.11816Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:\"customercare@dailee.in\"})}),className:\"framer-15r5123\",\"data-framer-name\":\"customercare@dailee.in\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"AHCn3C1HA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s2lgpy\",layoutDependency:layoutDependency,layoutId:\"dxPTIsjX5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xi1uhs\",\"data-framer-name\":\"Frame 1410125848\",layoutDependency:layoutDependency,layoutId:\"Qv7SBukIf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mrqx7y-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"O7fdYHhRA-container\",nodeId:\"O7fdYHhRA\",rendersWithMotion:true,scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(AutoYearCopyright,{color:\"rgb(230, 243, 236)\",companyName:\"Daily Fresh Fruits India Private Limited\",font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"O7fdYHhRA\",layoutId:\"O7fdYHhRA\",rightsText:\"All rights reserved\",showSymbol:\"yes\",showTrademark:\"no\",trademarkType:\"trademark\",width:\"100%\",yearPlacement:\"beforeCompanyName\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sc9ki5\",\"data-framer-name\":\"Frame 1410125847\",layoutDependency:layoutDependency,layoutId:\"yMxCUyxCf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 243, 236))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B7pIVXu6v\"},motionChild:true,nodeId:\"VXrR5yDjc\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Privacy Policy      \"})})})}),className:\"framer-1ecjy0c\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"VXrR5yDjc\",style:{\"--extracted-r6o4lv\":\"rgb(230, 243, 236)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 243, 236))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TXvwZJ4hJ\"},motionChild:true,nodeId:\"YOSSI32rA\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Terms & Conditions\"})})})}),className:\"framer-mpa9em\",\"data-framer-name\":\"Terms & Conditions\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"YOSSI32rA\",style:{\"--extracted-r6o4lv\":\"rgb(230, 243, 236)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 243, 236))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.tapecassette.in/\",motionChild:true,nodeId:\"zynBC7P9s\",openInNewTab:true,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Designed and Developed by Tape Cassette \"})})})}),className:\"framer-1aaleu5\",\"data-framer-name\":\"Designed and Developed by Tape Cassette Media\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"zynBC7P9s\",style:{\"--extracted-r6o4lv\":\"rgb(230, 243, 236)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bffl7o\",layoutDependency:layoutDependency,layoutId:\"J3wPdyiTZ\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r6jvo\",layoutDependency:layoutDependency,layoutId:\"EePyG7fxN\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-278xpl\",layoutDependency:layoutDependency,layoutId:\"FMg5brUVP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-137d4p8\",layoutDependency:layoutDependency,layoutId:\"on6LzHbTK\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wwicql\",\"data-framer-name\":\"Group 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:154,intrinsicWidth:154,layoutDependency:layoutDependency,layoutId:\"a80wHUw62\",svg:'<svg width=\"154\" height=\"154\" viewBox=\"0 0 154 154\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"77\" cy=\"77\" r=\"77\" fill=\"#FFFAE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M83.4901 73.3486C83.2051 72.4882 82.7899 71.6918 82.6839 70.8557C82.3702 68.3827 82.971 66.1132 84.5547 64.1578C85.1754 63.3881 85.9197 62.751 86.8562 62.3993C88.0556 61.9392 88.8861 62.1339 89.4781 62.9479C90.0921 63.8039 90.0811 65.1554 89.35 65.9805C88.7735 66.622 88.0998 67.1728 87.4504 67.7457C85.7695 69.2299 84.3117 70.8646 83.6535 73.081C83.6248 73.1672 83.5652 73.2292 83.4901 73.3486Z\" fill=\"#03A550\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.8107 73.2585C80.8499 72.5329 79.962 71.8096 79.0188 71.1704C76.9404 69.7613 74.5858 69.0314 72.1539 68.5182C70.9833 68.2749 69.8016 68.0515 68.6552 67.7263C66.8485 67.2242 65.5917 65.4436 65.6911 63.5523C65.7463 62.5348 66.2167 61.723 67.1798 61.2806C69.7663 60.0751 72.2202 60.7298 74.577 61.9265C77.3512 63.3377 79.4208 65.521 80.6776 68.3523C81.2828 69.7149 81.4838 71.2611 81.8571 72.7298C81.8947 72.8758 81.8328 73.0505 81.8107 73.2585Z\" fill=\"#7FC343\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M44.3515 66.876C41.6987 66.8295 39.7395 67.4843 38.0498 68.4044C36.1922 69.4087 24.6293 74.0782 29.5504 89.9359C29.7956 90.7123 29.1793 91.482 28.6029 92.0594C27.7193 92.9331 25.8883 92.6212 24.4327 91.5019C22.8954 90.3207 22.1753 89.0267 21.6187 87.7416C20.4304 84.9987 20.3751 82.4549 20.8544 79.9908C21.3625 77.363 22.6325 75.0315 24.6005 72.9965C27.6774 69.8223 31.6554 67.2675 37.8488 66.3606C39.9759 66.0509 42.6551 66.25 44.3515 66.876Z\" fill=\"#EF5225\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M112.666 84.5436C114.543 84.7581 116.039 84.3799 117.386 83.765C118.859 83.0903 119.993 82.1281 121.013 81.0885C122.526 79.5423 123.759 77.8302 124.538 75.866C125.024 74.6383 125.446 73.3797 125.771 72.0857C126.175 70.4732 126.383 68.7854 126.793 67.1751C126.95 66.5624 127.301 65.9696 127.801 65.5493C128.563 64.9122 129.819 65.2927 130.676 66.2837C131.582 67.3388 131.889 68.4204 132.086 69.4888C132.499 71.7628 132.141 73.7933 131.412 75.7266C130.639 77.7904 129.371 79.5578 127.655 81.042C124.976 83.3668 121.746 85.1209 117.203 85.4063C115.65 85.5102 113.775 85.1585 112.666 84.5436Z\" fill=\"#EF5225\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M123.864 65.943C123.546 64.9919 123.027 64.3637 122.432 63.8593C121.776 63.3041 121.058 62.9767 120.33 62.7246C119.252 62.3507 118.158 62.1472 117.047 62.2202C116.349 62.2667 115.651 62.3463 114.96 62.4857C114.101 62.656 113.246 62.9347 112.385 63.1006C112.053 63.1648 111.693 63.1316 111.382 62.9856C110.9 62.7644 110.794 62.0809 111.084 61.446C111.382 60.7714 111.824 60.3755 112.292 60.0459C113.284 59.3358 114.337 59.0438 115.422 58.9598C116.581 58.8625 117.714 59.0726 118.81 59.5526C120.522 60.3157 122.09 61.4637 123.256 63.5762C123.656 64.2995 123.91 65.2728 123.864 65.943Z\" fill=\"#EF5225\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M47.0293 95.9596C47.5727 95.9972 48.0851 96.0525 48.602 96.0636C49.7351 96.0835 50.8063 95.7827 51.8511 95.3757C52.3569 95.1855 52.8605 94.9753 53.3773 94.8138C54.1835 94.5617 55.098 94.9267 55.5243 95.6677C55.7496 96.068 55.7739 96.4949 55.5199 96.8997C54.8329 97.9902 53.744 98.3508 52.5557 98.4747C51.1597 98.6207 49.8367 98.3066 48.666 97.539C48.105 97.174 47.6455 96.6387 47.1464 96.172C47.0956 96.1233 47.0735 96.0437 47.0293 95.9596Z\" fill=\"#EB2227\"/>\\n<path d=\"M58.3804 71.5089C56.9292 70.7746 55.1887 70.4162 53.2074 70.445C51.2924 70.4804 49.7021 70.6219 48.4895 70.8719C47.2923 71.1152 46.2454 71.3718 45.3574 71.6372C39.5638 73.4157 35.5129 75.8179 33.3152 78.7775C32.023 80.5404 31.5636 82.3742 31.9435 84.2256L32.1224 84.7675C32.1312 84.8981 32.1489 85.0241 32.1732 85.1524C32.383 86.1655 33.1142 86.9287 34.3378 87.4131C35.4555 87.8511 36.5267 88.0147 37.5273 87.8842L37.5825 87.8776C37.6399 87.8732 37.693 87.8555 37.7526 87.8422C37.5096 87.9904 37.313 88.1519 37.1584 88.3266L37.101 88.404C36.6681 89.0632 36.8359 89.5919 36.9707 89.844L37.006 89.8993C37.2843 90.3174 37.3661 90.4988 37.3881 90.5497C37.4743 92.0604 37.6289 93.3589 37.8432 94.3985C38.0861 95.5487 38.5765 96.5043 39.3297 97.2299C39.9658 97.8492 40.5975 98.0925 41.227 97.9687C42.0266 97.8005 42.6671 97.0485 43.1884 95.6549C43.3276 95.2523 43.4645 94.8409 43.5926 94.4096C45.4193 95.0975 47.553 95.1926 49.9473 94.6971C52.6177 94.1463 55.0297 93.0182 57.1346 91.3504C59.2352 89.6737 60.8498 87.5613 61.9233 85.0816C63.0078 82.5733 63.2883 79.9852 62.7516 77.3884C62.2038 74.7251 60.7372 72.7476 58.3804 71.5089ZM46.6606 83.8717C47.2945 81.9251 48.0146 80.2927 48.7921 79.0208C49.6204 77.6649 50.2477 77.2269 50.6519 77.1141C50.7888 77.1517 50.9501 77.1849 51.1268 77.1495C51.2328 77.1207 51.3388 77.0765 51.4161 77.0123C51.7695 76.7358 51.679 76.3045 51.6414 76.1231L51.6326 76.0656L51.6083 76.0125C51.4426 75.5945 51.0472 75.0592 50.0886 74.8468C49.4437 74.7008 48.918 74.6721 48.4873 74.7628C47.4337 74.9751 46.3403 76.0435 45.1476 78.0166C43.9659 79.9675 43.4314 81.2793 43.4623 82.1463L43.4667 82.3299L43.5639 82.4848C43.5639 82.4848 43.6059 82.5534 43.6456 82.7414C43.6456 82.7546 43.681 82.9183 43.5308 83.4868C42.6384 87.0614 42.0155 89.7091 41.671 91.3681C41.481 91.2619 41.2292 91.1137 40.9045 90.908C39.8774 90.2687 39.767 89.9701 39.7648 89.9679C39.7096 89.7091 39.7272 89.3884 39.8112 89.03C39.9923 88.2205 39.8443 87.7073 39.3672 87.4927C39.0734 87.3556 38.7245 87.3711 38.3092 87.5524C38.3799 87.4817 38.4395 87.4042 38.4881 87.3091C38.603 87.0769 38.603 86.8136 38.4837 86.5659L38.4594 86.515C38.3269 86.2894 38.0927 86.1301 37.7614 86.0571C37.5936 86.0151 37.2821 85.9731 36.8161 85.9134C36.3809 85.8581 36.0209 85.7939 35.747 85.7386C35.5549 85.701 35.3384 85.5793 35.1109 85.3958C34.9143 85.2254 34.795 85.0374 34.7398 84.772C34.4549 83.3873 35.049 81.8256 36.5046 80.118C38.0442 78.3152 40.0652 76.7358 42.5125 75.4241C44.9731 74.1014 47.4182 73.1834 49.7772 72.699L50.1969 72.6083C53.1036 72.104 55.3654 72.3605 56.9204 73.3758C58.4908 74.4022 59.4207 75.6896 59.7543 77.3132C60.2225 79.5915 59.7211 82.1486 58.27 84.9268C57.3621 86.6411 56.0082 88.2868 54.2456 89.8241C52.5095 91.3327 50.5392 92.3325 48.3967 92.7793C46.9743 93.0757 45.5408 92.9497 44.1338 92.4144C44.7323 89.9569 45.5761 87.0813 46.6606 83.8717ZM41.1254 93.5513C41.015 94.2459 40.9045 94.717 40.8184 95.0289C40.6682 94.6352 40.465 93.9893 40.2154 92.9342C40.6373 93.2284 40.9222 93.4208 41.1254 93.5513Z\" fill=\"#F27A21\"/>\\n<path d=\"M123.486 69.843C123.249 69.7125 123.037 69.7213 122.891 69.7479C122.58 69.8142 122.333 70.0332 122.163 70.4048L122.143 70.4358C120.945 73.4684 118.834 76.0211 115.859 78.0118C114.862 78.6821 113.948 79.1068 113.137 79.2749C112.517 79.4032 112.042 79.3567 111.724 79.1223C111.384 78.8856 111.189 78.6224 111.13 78.3237C111.046 77.9234 111.028 77.492 111.072 77.0474C111.123 76.5011 111.238 75.937 111.417 75.3442C111.651 75.6074 112.029 75.7822 112.596 75.6627C112.649 75.6517 112.7 75.6362 112.762 75.6251C113.988 75.2668 115.406 74.4705 116.972 73.2561C118.549 72.024 119.636 70.7189 120.206 69.3652C120.612 68.6286 120.716 67.7792 120.521 66.8236C120.126 64.8992 118.816 64.0653 116.833 64.4767C115.238 64.8041 113.394 66.149 111.194 68.5888C109.038 70.9755 107.73 73.1831 107.315 75.1562L107.311 75.1805C107.275 75.3707 107.249 75.5521 107.227 75.7313C106.246 77.7309 104.715 79.4452 102.661 80.8189C101.886 81.3431 101.168 81.6727 100.547 81.8032C100.09 81.9005 99.7478 81.8651 99.5225 81.7059C99.2862 81.5377 99.147 81.3519 99.1073 81.1484C99.041 80.8476 99.0322 80.518 99.0609 80.1774C99.0962 79.8146 99.1691 79.4364 99.2751 79.0515C99.485 79.1975 99.7809 79.2771 100.167 79.1953C100.216 79.1864 100.26 79.1753 100.318 79.1577C101.318 78.8679 102.425 78.2463 103.704 77.2553C104.978 76.2666 105.857 75.2093 106.317 74.1143C106.652 73.4994 106.739 72.7916 106.582 72.0019C106.25 70.4093 105.126 69.6926 103.487 70.031C102.191 70.3009 100.702 71.3803 98.9306 73.3446C97.6097 74.8 96.7085 76.1427 96.1917 77.3991C95.7853 78.2574 95.1933 79.2351 94.418 80.3145C93.5632 81.509 92.8343 82.3628 92.2424 82.8539L92.2269 82.8694C91.8536 83.1967 91.6107 83.2985 91.4693 83.3294C91.3368 83.356 91.2241 83.3405 91.0717 83.1835C90.8398 82.9379 90.6896 82.657 90.6189 82.3075C90.5261 81.8563 90.4643 81.5046 90.4378 81.248C90.4245 81.1507 90.4135 80.8277 90.5394 79.8633C94.8907 74.3665 97.8924 69.1484 99.4695 64.3617L99.4828 64.3153C99.7147 63.3951 99.7787 62.6983 99.6705 62.1873C99.5645 61.6697 99.3944 61.2782 99.147 60.9884C98.4976 60.2541 97.5302 60.0196 96.2756 60.2762C95.0917 60.5217 94.0602 61.2782 93.2076 62.5059C92.7791 63.0876 92.4699 63.5654 92.2556 63.9569L91.4163 65.6181C90.4687 67.6354 89.53 70.553 88.62 74.2891C88.1451 76.24 87.8314 77.9057 87.668 79.3103C87.213 80.2327 86.6011 81.2214 85.8502 82.2522C84.9865 83.4334 84.2885 84.2496 83.7827 84.681C83.5552 84.8668 83.4072 84.9221 83.3432 84.9331C83.2769 84.9464 83.2283 84.9398 83.1488 84.8823C83.0826 84.8292 82.9898 84.7429 82.9412 84.5107C82.8749 84.201 82.8352 83.9422 82.8197 83.7387C82.7755 83.3693 82.8595 82.1615 83.8711 78.3569C83.9462 78.1092 84.0191 77.8504 84.092 77.5871L84.1074 77.492C84.1185 77.4279 84.1317 77.3328 84.1516 77.2266C84.1649 77.1514 84.198 77.0165 84.2687 76.7621C84.3813 76.3927 84.3526 76.0078 84.198 75.6649L84.1715 75.6141C83.9749 75.2579 83.4647 74.6939 82.2719 74.9372L81.9583 75.008L81.8986 75.0279C81.3023 75.2845 80.9467 76.1162 80.6971 77.8747C80.6463 78.0893 80.6352 78.2883 80.6661 78.4653C80.22 79.5447 79.5861 80.8808 78.7843 82.4491C78.7821 82.4557 78.7821 82.4668 78.7732 82.4756C78.4861 82.9512 78.1636 83.4268 77.808 83.9156C76.9399 85.1012 76.2442 85.9197 75.7339 86.3488C75.5197 86.5302 75.3717 86.5833 75.2878 86.6054C75.2171 86.6142 75.1508 86.612 75.0691 86.5501C75.0006 86.5036 74.9079 86.4129 74.8637 86.1851C74.7996 85.8732 74.7532 85.6188 74.74 85.433C74.603 83.7586 74.952 81.9691 75.7627 80.111L75.7781 80.0646C75.8753 79.7814 75.851 79.4961 75.7163 79.2461C75.6125 79.0603 75.449 78.9165 75.2303 78.8148C75.2392 78.7993 75.2502 78.7838 75.2613 78.7683C75.4181 78.525 75.3938 78.2706 75.3474 78.0494C75.2303 77.4743 74.8018 77.0165 74.0774 76.6979C73.4324 76.4214 72.7212 76.3529 71.9569 76.5165C71.2744 76.6537 70.5853 76.8948 69.9072 77.2155C69.2114 77.5495 68.3544 78.1822 67.292 79.1377C66.2539 80.0668 65.282 81.144 64.3963 82.3296C63.4774 83.5639 62.8656 84.7871 62.5807 85.9506C62.4305 86.5258 62.415 87.1031 62.5343 87.6848C62.6602 88.302 62.9782 88.8395 63.4818 89.2907C63.9523 89.7088 64.4868 90.003 65.0699 90.1689C65.6553 90.3326 66.2008 90.3613 66.6846 90.2618C67.6631 90.0627 68.646 89.3659 69.6068 88.2002C70.3445 87.3044 70.9939 86.3908 71.5483 85.4751C71.5792 85.8555 71.63 86.2183 71.7007 86.5766C71.7891 86.9836 71.9105 87.353 72.0629 87.6738L72.0872 87.7202C72.7322 88.813 73.7019 89.2598 74.8902 89.012C75.9791 88.7864 77.0614 88.0808 78.0951 86.9195C78.5435 86.4262 79.1112 85.641 79.8158 84.5394C79.8268 84.8026 79.8511 85.0371 79.8975 85.2539C79.9615 85.5569 80.0433 85.8069 80.1559 86.0192L80.1736 86.0502C80.8163 87.1407 81.8103 87.5809 83.045 87.3221C83.5309 87.2247 84.0677 86.9903 84.6994 86.6076C85.6381 86.0126 86.6431 84.8778 87.7497 83.1348C88.2467 85.088 89.6493 85.9175 91.7321 85.4906C92.6554 85.2981 93.5124 84.7694 94.2656 83.92C94.8023 83.3184 95.37 82.5663 95.9664 81.6882C96.1232 82.0996 96.3595 82.4535 96.6533 82.7565C97.7157 83.7984 99.2398 84.1258 101.175 83.7276C103.324 83.2786 105.347 81.8585 107.187 79.4872C107.306 79.3302 107.43 79.1731 107.543 79.0072C107.733 79.4629 107.995 79.8566 108.327 80.1907C109.625 81.4648 111.481 81.8585 113.86 81.3652C116.519 80.8122 119.028 79.0448 121.314 76.0963C122.485 74.5943 123.388 72.9575 123.996 71.2211C124.111 70.9645 124.144 70.7212 124.1 70.5C124.058 70.3473 123.938 70.0001 123.486 69.843ZM113.04 71.909C114.215 70.0288 115.41 68.6198 116.632 67.7129C117.297 67.1886 117.668 67.0559 117.824 67.0183C117.855 67.0139 117.88 67.0095 117.895 67.0072C117.904 67.0271 117.911 67.0647 117.924 67.1024C117.995 67.4563 117.926 67.8721 117.712 68.3588C117.056 69.6041 115.863 70.9578 114.153 72.389C113.31 73.1212 112.594 73.5812 112.022 73.7715C112.303 73.1676 112.643 72.546 113.04 71.909ZM103.436 72.8402C103.858 72.504 104.119 72.3801 104.265 72.3337C104.296 72.5704 104.238 72.8579 104.092 73.1831C103.587 74.1608 102.646 75.2248 101.296 76.3529C100.72 76.8528 100.28 77.1359 99.9643 77.2952C100.152 76.9169 100.371 76.532 100.611 76.1471C101.535 74.6695 102.476 73.5591 103.436 72.8402ZM97.1149 63.5322C96.5097 65.6712 95.4539 68.2283 93.9608 71.1259C93.0464 72.9066 92.1496 74.4129 91.2749 75.6362C91.5908 74.2448 92.0193 72.6854 92.556 70.9733C93.6494 67.5005 94.9835 64.8284 96.523 63.0367C96.9095 62.5943 97.1503 62.4594 97.2519 62.4262C97.2585 62.455 97.2718 62.4837 97.2784 62.5302C97.2938 62.5965 97.3204 62.8509 97.1149 63.5322ZM65.5007 87.8176C65.4675 87.6671 65.4521 87.1805 65.9733 85.8201C66.3798 84.7584 66.9032 83.7564 67.5394 82.8539C68.3235 81.812 69.207 80.8896 70.17 80.111C71.0911 79.3656 71.9591 78.8966 72.7455 78.7374C72.9222 78.6998 73.1187 78.6754 73.3131 78.66C72.9928 78.7639 72.6196 79.1953 70.1789 83.2188C69.715 83.9886 68.7851 85.2694 67.4135 87.0146C66.3577 88.271 65.8762 88.4568 65.748 88.4789C65.7083 88.4303 65.5934 88.2754 65.5007 87.8176Z\" fill=\"#F27A21\"/>\\n<path d=\"M58.4118 70.3408C56.9849 69.5666 55.2577 69.1574 53.2698 69.1286C51.3548 69.1087 49.76 69.2016 48.5408 69.4184C47.3436 69.6285 46.2834 69.8519 45.391 70.0842C39.5488 71.7034 35.4317 73.9861 33.15 76.8772C31.8048 78.6047 31.2946 80.4274 31.6171 82.2899L31.7827 82.8363C31.7894 82.9623 31.8004 83.0906 31.8225 83.2189C31.9992 84.2386 32.7104 85.0195 33.9208 85.5393C35.0252 86.0149 36.0921 86.2007 37.0971 86.1078L37.1479 86.1033C37.2053 86.0901 37.2649 86.079 37.3268 86.0657C37.0728 86.2117 36.874 86.3644 36.7172 86.5369L36.6553 86.6099C36.2025 87.2602 36.3527 87.7889 36.483 88.0455L36.5162 88.1008C36.7856 88.5299 36.8629 88.7113 36.8806 88.7622C36.9226 90.2774 37.0396 91.5714 37.2252 92.6221C37.4328 93.7811 37.9011 94.7456 38.6278 95.4998C39.2396 96.1347 39.8735 96.3979 40.5052 96.2895C41.3114 96.1457 41.9741 95.4114 42.5307 94.0355C42.6831 93.6418 42.8311 93.2281 42.9702 92.799C44.7814 93.5378 46.9107 93.6971 49.3205 93.268C51.9953 92.799 54.4493 91.7395 56.594 90.1292C58.7475 88.5122 60.424 86.4528 61.5637 84.002C62.7211 81.529 63.0768 78.9498 62.6151 76.3397C62.1424 73.661 60.731 71.6436 58.4118 70.3408ZM46.3408 82.3585C47.0322 80.434 47.7986 78.8193 48.6114 77.5673C49.4795 76.2379 50.12 75.8198 50.522 75.7115C50.659 75.7579 50.8202 75.7911 50.9969 75.7645C51.1074 75.7469 51.209 75.7004 51.2907 75.6385C51.6463 75.3708 51.5734 74.9351 51.5447 74.7515L51.5315 74.6984L51.5116 74.6409C51.3592 74.225 50.9793 73.672 50.0251 73.4265C49.3867 73.2606 48.861 73.2163 48.4281 73.296C47.3679 73.4862 46.2481 74.5192 44.9957 76.4569C43.7588 78.3769 43.1867 79.6709 43.1867 80.5336L43.1911 80.7238L43.2861 80.8742C43.2861 80.8742 43.3214 80.9428 43.359 81.1397C43.359 81.1397 43.3855 81.3144 43.2242 81.8763C42.2259 85.4243 41.5257 88.0477 41.1325 89.7022C40.947 89.5872 40.6996 89.4302 40.3859 89.22C39.3765 88.5476 39.2705 88.2534 39.2683 88.249C39.2263 87.9813 39.2462 87.6628 39.3434 87.3022C39.5466 86.5104 39.4163 85.9883 38.948 85.7583C38.6543 85.6145 38.3075 85.6234 37.8878 85.787C37.9563 85.7229 38.0181 85.6433 38.0689 85.5459C38.1948 85.3159 38.2015 85.0527 38.0888 84.8027L38.0645 84.754C37.943 84.5218 37.7089 84.3581 37.382 84.2718C37.2163 84.232 36.9049 84.1745 36.4411 84.1015C36.0104 84.0374 35.6525 83.9688 35.3786 83.9024C35.1865 83.856 34.9789 83.7343 34.7513 83.5374C34.5592 83.3671 34.4421 83.1658 34.4002 82.9026C34.1528 81.5135 34.7933 79.9695 36.2975 78.3061C37.8878 76.5498 39.9508 75.028 42.4379 73.7848C44.9405 72.5395 47.4055 71.6901 49.7799 71.2698L50.1974 71.1968C53.1196 70.7765 55.3725 71.0973 56.8988 72.1634C58.4427 73.2252 59.3307 74.5435 59.6178 76.1804C60.0242 78.4632 59.4477 81.0114 57.917 83.741C56.9606 85.4287 55.5581 87.0368 53.7513 88.5188C51.9688 89.9876 49.9765 90.921 47.8229 91.2993C46.3894 91.5559 44.9581 91.3922 43.5732 90.8193C44.2381 88.3795 45.1702 85.5327 46.3408 82.3585ZM40.5229 91.8722C40.3948 92.5668 40.2755 93.0313 40.1783 93.3387C40.0414 92.945 39.8603 92.2925 39.6372 91.2351C40.0502 91.536 40.3329 91.7351 40.5229 91.8722Z\" fill=\"#05914D\"/>\\n<path d=\"M123.541 70.5559C123.309 70.4232 123.093 70.4232 122.951 70.4453C122.635 70.5029 122.381 70.713 122.198 71.0802L122.18 71.1156C120.901 74.1106 118.71 76.5947 115.678 78.5058C114.664 79.1429 113.741 79.5454 112.923 79.6826C112.298 79.7998 111.823 79.7379 111.514 79.499C111.185 79.2468 110.997 78.9836 110.942 78.6761C110.871 78.2758 110.863 77.8466 110.922 77.4065C110.988 76.8645 111.121 76.296 111.32 75.7099C111.538 75.9819 111.918 76.1633 112.488 76.0638C112.539 76.0549 112.594 76.0417 112.656 76.0284C113.891 75.7099 115.329 74.9556 116.93 73.781C118.545 72.6042 119.669 71.3257 120.274 69.9919C120.703 69.2642 120.831 68.4147 120.663 67.4592C120.323 65.5237 119.039 64.6477 117.047 65.0039C115.444 65.2826 113.562 66.5766 111.289 68.9501C109.065 71.2748 107.697 73.4448 107.22 75.4046L107.216 75.4267C107.178 75.6103 107.147 75.7939 107.121 75.9753C106.078 77.9572 104.495 79.614 102.405 80.9279C101.614 81.4367 100.892 81.7464 100.269 81.8548C99.8076 81.9344 99.4652 81.8924 99.2487 81.7242C99.0124 81.5495 98.8777 81.3681 98.8401 81.158C98.7849 80.8505 98.7827 80.5231 98.8246 80.1847C98.8732 79.8219 98.9528 79.4525 99.072 79.0654C99.2841 79.2225 99.5756 79.3043 99.9622 79.2336C100.009 79.2269 100.057 79.2159 100.108 79.2048C101.124 78.9416 102.246 78.351 103.556 77.3998C104.855 76.4442 105.76 75.4068 106.255 74.3362C106.608 73.7279 106.717 73.0245 106.58 72.2326C106.293 70.6267 105.19 69.8769 103.543 70.1666C102.239 70.3967 100.72 71.4385 98.8887 73.3475C97.5281 74.7698 96.5849 76.0837 96.0394 77.3268C95.6087 78.1696 94.9858 79.1274 94.1796 80.1936C93.2916 81.3548 92.5362 82.191 91.9333 82.6665L91.9178 82.6754C91.5379 82.9983 91.2883 83.0913 91.1447 83.1156C91.0122 83.1421 90.8973 83.1222 90.7516 82.9585C90.524 82.7108 90.3871 82.4188 90.323 82.0649C90.2435 81.6225 90.1927 81.2575 90.1684 81.0009C90.164 80.9036 90.1596 80.5895 90.3142 79.6251C94.8201 74.2566 97.9765 69.1336 99.6883 64.3889L99.7059 64.3447C99.9622 63.4289 100.046 62.7388 99.9577 62.2212C99.865 61.697 99.7059 61.3032 99.4674 61.009C98.8401 60.2592 97.8815 59.9893 96.6159 60.2149C95.4297 60.4251 94.374 61.1484 93.486 62.3517C93.0354 62.9246 92.7129 63.3913 92.4876 63.7807L91.6041 65.4197C90.5991 67.4061 89.5743 70.2971 88.5604 74C88.0303 75.9377 87.6637 77.5923 87.4649 78.9902C86.9767 79.906 86.3428 80.8748 85.5587 81.8813C84.6619 83.0382 83.9375 83.8345 83.4206 84.2437C83.1887 84.4251 83.0407 84.4737 82.9744 84.487C82.9082 84.4959 82.8618 84.4914 82.7823 84.4273C82.7182 84.3786 82.6277 84.2857 82.5879 84.0535C82.5305 83.7394 82.4973 83.4828 82.4863 83.2793C82.4554 82.901 82.5769 81.7043 83.6945 77.9307C83.7784 77.683 83.8602 77.4352 83.9375 77.1676L83.9573 77.068C83.9662 77.0061 83.9838 76.9176 84.0081 76.8026C84.0258 76.7362 84.0567 76.5991 84.1362 76.3469C84.2599 75.9775 84.2401 75.5971 84.0987 75.2454L84.0744 75.1967C83.8867 74.8295 83.3941 74.2522 82.1992 74.4623L81.8811 74.5198L81.8192 74.5442C81.2096 74.7808 80.8385 75.5948 80.5315 77.3578C80.4719 77.5701 80.4608 77.7582 80.4851 77.9418C80.008 79.0079 79.3366 80.3285 78.4928 81.868C78.4862 81.8791 78.4862 81.8857 78.4796 81.8946C78.177 82.3591 77.8412 82.8258 77.4657 83.3102C76.569 84.4671 75.8445 85.2612 75.3276 85.6726C75.1068 85.8496 74.9566 85.9049 74.8748 85.9182C74.7997 85.9336 74.7357 85.9248 74.6517 85.8629C74.5921 85.8142 74.4971 85.7235 74.4596 85.489C74.4044 85.1771 74.369 84.9184 74.3558 84.7325C74.2696 83.0581 74.6672 81.2774 75.5375 79.4437L75.5529 79.3995C75.6634 79.1141 75.6479 78.8288 75.5154 78.581C75.416 78.393 75.257 78.2404 75.0361 78.1364C75.0537 78.1187 75.067 78.0988 75.0758 78.0877C75.2371 77.8533 75.2216 77.5923 75.1774 77.3733C75.078 76.7959 74.6672 76.327 73.9516 75.9864C73.3132 75.6855 72.5976 75.6037 71.8378 75.7408C71.1486 75.8625 70.4529 76.0793 69.7615 76.3845C69.0591 76.6986 68.1889 77.3025 67.0977 78.2271C66.0353 79.1274 65.0303 80.1781 64.107 81.3372C63.155 82.5449 62.5101 83.746 62.192 84.9051C62.0241 85.4736 61.991 86.0597 62.0926 86.6371C62.1986 87.2586 62.5012 87.8072 62.9894 88.2651C63.451 88.7031 63.9745 89.0105 64.5532 89.1875C65.1363 89.3689 65.6775 89.4197 66.1656 89.3312C67.1507 89.1609 68.1513 88.4951 69.1453 87.356C69.9073 86.48 70.592 85.5842 71.1641 84.6883C71.1884 85.0621 71.2259 85.4337 71.2878 85.7854C71.3607 86.1969 71.4711 86.5729 71.6169 86.8959L71.6412 86.9445C72.253 88.0549 73.2116 88.5305 74.4088 88.316C75.5043 88.1235 76.6043 87.4511 77.6667 86.3163C78.1328 85.8407 78.7225 85.0732 79.4558 83.9871C79.4581 84.2481 79.4801 84.4914 79.5177 84.706C79.5751 85.009 79.6502 85.2634 79.754 85.4802L79.7695 85.5067C80.3813 86.6194 81.362 87.0927 82.6056 86.8693C83.0893 86.7853 83.6349 86.5663 84.2754 86.1991C85.234 85.635 86.2677 84.5246 87.4229 82.8192C87.8669 84.779 89.243 85.6616 91.3413 85.2877C92.269 85.1241 93.1348 84.6242 93.9189 83.7947C94.4689 83.2085 95.0631 82.4675 95.6816 81.6092C95.834 82.0251 96.0482 82.39 96.3376 82.7019C97.3713 83.7725 98.8799 84.1464 100.828 83.7969C102.993 83.4186 105.051 82.0516 106.96 79.7357C107.083 79.5786 107.209 79.4216 107.328 79.2623C107.51 79.7224 107.755 80.125 108.079 80.4723C109.341 81.7729 111.189 82.2264 113.575 81.8017C116.248 81.3283 118.81 79.6273 121.18 76.7495C122.397 75.2874 123.34 73.6748 123.998 71.9561C124.122 71.7062 124.164 71.4629 124.124 71.2417C124.102 71.0824 123.989 70.7307 123.541 70.5559ZM113.04 72.3211C114.271 70.4807 115.512 69.1093 116.747 68.2312C117.429 67.7268 117.802 67.6074 117.968 67.5764C117.997 67.5698 118.019 67.5653 118.034 67.5653C118.045 67.583 118.052 67.6162 118.063 67.6627C118.123 68.0144 118.039 68.4302 117.814 68.908C117.124 70.1313 115.89 71.4562 114.14 72.8343C113.281 73.5421 112.552 73.9779 111.969 74.1571C112.269 73.5598 112.621 72.9471 113.04 72.3211ZM103.41 72.9736C103.843 72.6529 104.108 72.5335 104.252 72.4936C104.278 72.7303 104.212 73.0201 104.059 73.343C103.518 74.3008 102.553 75.3338 101.17 76.4265C100.578 76.9088 100.134 77.1808 99.8164 77.3268C100.009 76.9574 100.238 76.5792 100.494 76.1987C101.46 74.7432 102.436 73.6616 103.41 72.9736ZM97.3624 63.482C96.6954 65.6077 95.5667 68.1338 93.9918 70.9851C93.0288 72.737 92.0901 74.219 91.1801 75.4245C91.5379 74.0398 92.0083 72.4914 92.5937 70.7926C93.793 67.3596 95.2 64.7274 96.7859 62.9799C97.1857 62.5441 97.4309 62.4225 97.5369 62.3937C97.5436 62.4181 97.5502 62.4535 97.5634 62.4977C97.5701 62.5596 97.5877 62.8118 97.3624 63.482ZM65.0568 86.8494C65.0325 86.7034 65.0325 86.2079 65.5913 84.8675C66.0242 83.8168 66.5809 82.8302 67.2413 81.9388C68.0541 80.9213 68.9641 80.0299 69.9493 79.28C70.8924 78.5567 71.7737 78.1209 72.5667 77.9816C72.7456 77.9506 72.9399 77.9263 73.1321 77.9219C72.8118 78.0125 72.4209 78.4328 69.8675 82.3856C69.3816 83.1399 68.4141 84.3853 66.9939 86.1018C65.905 87.3228 65.4124 87.4909 65.2909 87.5152C65.2512 87.4688 65.1407 87.3051 65.0568 86.8494Z\" fill=\"#05914D\"/>\\n<path d=\"M127.229 58.6311C127.441 58.5957 127.754 58.5625 128.083 58.5625C128.529 58.5625 128.834 58.6421 129.04 58.8213C129.21 58.9651 129.307 59.1774 129.307 59.4451C129.307 59.841 129.038 60.1153 128.744 60.2215V60.2392C128.971 60.3188 129.104 60.5378 129.181 60.832C129.278 61.2213 129.362 61.5818 129.426 61.7013H128.837C128.795 61.604 128.724 61.3496 128.636 60.9625C128.543 60.5621 128.401 60.4316 128.074 60.425H127.79V61.7013H127.229V58.6311ZM127.79 60.0069H128.123C128.505 60.0069 128.744 59.8034 128.744 59.4915C128.744 59.1575 128.507 58.9983 128.139 58.9983C127.962 58.9983 127.847 59.0071 127.792 59.0226V60.0069H127.79Z\" fill=\"black\"/>\\n<path d=\"M128.171 62.8622C126.669 62.8622 125.441 61.639 125.441 60.1326C125.441 58.6219 126.669 57.4053 128.171 57.4053C129.673 57.4053 130.897 58.6219 130.897 60.1326C130.897 61.639 129.673 62.8622 128.171 62.8622ZM128.171 57.8079C126.888 57.8079 125.846 58.8497 125.846 60.1326C125.846 61.4178 126.888 62.4619 128.171 62.4619C129.455 62.4619 130.495 61.4156 130.495 60.1326C130.495 58.8497 129.453 57.8079 128.171 57.8079Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m0n9kf\",layoutDependency:layoutDependency,layoutId:\"HbtiacROG\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/daileeindia\",motionChild:true,nodeId:\"yGNnWtzVa\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1wp5g68 framer-19nat08\",\"data-framer-name\":\"bxl-linkedin-square.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yGNnWtzVa\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 13.988 2.329 C 7.718 2.329 2.634 7.554 2.634 13.998 C 2.634 19.822 6.785 24.649 12.214 25.528 L 12.214 17.372 L 9.33 17.372 L 9.33 13.998 L 12.214 13.998 L 12.214 11.427 C 12.214 8.5 13.91 6.886 16.502 6.886 C 17.744 6.886 19.046 7.114 19.046 7.114 L 19.046 9.984 L 17.61 9.984 C 16.202 9.984 15.762 10.885 15.762 11.808 L 15.762 13.996 L 18.908 13.996 L 18.405 17.37 L 15.762 17.37 L 15.762 25.526 C 21.191 24.651 25.342 19.823 25.342 13.998 C 25.342 7.554 20.258 2.329 13.988 2.329 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:11469466143,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\" https://www.linkedin.com/company/daily-fresh-fruits-india-private-limited/ \",motionChild:true,nodeId:\"oFzTB9ivL\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1c5bj1r framer-19nat08\",\"data-framer-name\":\"bxl-linkedin-square.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oFzTB9ivL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 23.085 3.497 L 4.916 3.497 C 4.615 3.497 4.326 3.62 4.113 3.839 C 3.9 4.058 3.781 4.355 3.781 4.664 L 3.781 23.337 C 3.781 23.647 3.9 23.944 4.113 24.162 C 4.326 24.381 4.615 24.504 4.916 24.504 L 23.085 24.504 C 23.386 24.504 23.675 24.381 23.888 24.162 C 24.101 23.944 24.22 23.647 24.22 23.337 L 24.22 4.664 C 24.22 4.355 24.101 4.058 23.888 3.839 C 23.675 3.62 23.386 3.497 23.085 3.497 Z M 9.843 21.396 L 6.809 21.396 L 6.809 11.371 L 9.843 11.371 Z M 8.326 10.002 C 7.86 10.002 7.413 9.812 7.083 9.473 C 6.754 9.134 6.569 8.675 6.569 8.196 C 6.569 7.716 6.754 7.257 7.083 6.918 C 7.413 6.579 7.86 6.389 8.326 6.389 C 8.793 6.389 9.24 6.579 9.569 6.918 C 9.899 7.257 10.084 7.716 10.084 8.196 C 10.084 8.675 9.899 9.134 9.569 9.473 C 9.24 9.812 8.793 10.002 8.326 10.002 Z M 21.198 21.396 L 18.167 21.396 L 18.167 16.521 C 18.167 15.359 18.146 13.864 16.591 13.864 C 15.012 13.864 14.773 15.132 14.773 16.44 L 14.773 21.398 L 11.744 21.398 L 11.744 11.372 L 14.651 11.372 L 14.651 12.742 L 14.693 12.742 C 15.096 11.955 16.087 11.124 17.559 11.124 C 20.63 11.124 21.196 13.199 21.196 15.899 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:10159421902,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\" https://www.youtube.com/@Dailee_India\",motionChild:true,nodeId:\"F_uj4HiWL\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-b6hpyn framer-19nat08\",\"data-framer-name\":\"icons8-youtube 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"F_uj4HiWL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 24.869 8.267 C 24.651 7.066 23.614 6.191 22.412 5.918 C 20.611 5.537 17.28 5.264 13.676 5.264 C 10.073 5.264 6.688 5.537 4.886 5.918 C 3.685 6.191 2.647 7.01 2.429 8.267 C 2.21 9.632 1.992 11.543 1.992 14 C 1.992 16.457 2.21 18.368 2.483 19.733 C 2.702 20.933 3.739 21.808 4.94 22.081 C 6.851 22.463 10.127 22.736 13.731 22.736 C 17.335 22.736 20.611 22.463 22.522 22.081 C 23.723 21.808 24.76 20.989 24.979 19.733 C 25.197 18.368 25.47 16.401 25.525 14 C 25.415 11.543 25.142 9.632 24.869 8.267 Z M 10.728 17.822 L 10.728 10.178 L 17.389 14 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:10319867161,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dailee_india \",motionChild:true,nodeId:\"FG72KXcZY\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-xaa2g6 framer-19nat08\",\"data-framer-name\":\"icons8-twitterx 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"FG72KXcZY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28.875 28\"><path d=\"M 6.603 2.24 C 4.438 2.24 2.683 3.995 2.683 6.16 L 2.683 21.84 C 2.683 24.005 4.438 25.76 6.603 25.76 L 22.283 25.76 C 24.448 25.76 26.203 24.005 26.203 21.84 L 26.203 6.16 C 26.203 3.995 24.448 2.24 22.283 2.24 Z M 7.771 7.28 L 12.216 7.28 L 15.373 11.765 L 19.203 7.28 L 20.603 7.28 L 16.005 12.663 L 21.675 20.72 L 17.231 20.72 L 13.568 15.516 L 9.123 20.72 L 7.723 20.72 L 12.936 14.618 Z M 9.915 8.4 L 17.815 19.6 L 19.531 19.6 L 11.631 8.4 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:8879239613,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/dailee_india/\",motionChild:true,nodeId:\"vZzCgwoSS\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-yr6x78 framer-19nat08\",\"data-framer-name\":\"bxl-instagram-alt.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vZzCgwoSS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 24.171 9.688 C 24.16 8.804 23.998 7.929 23.695 7.101 C 23.432 6.404 23.03 5.77 22.516 5.241 C 22.001 4.712 21.384 4.299 20.705 4.029 C 19.911 3.722 19.071 3.556 18.223 3.538 C 17.131 3.488 16.784 3.474 14.011 3.474 C 11.238 3.474 10.883 3.474 9.799 3.538 C 8.951 3.556 8.112 3.722 7.317 4.029 C 6.638 4.299 6.022 4.712 5.507 5.241 C 4.992 5.77 4.59 6.404 4.328 7.101 C 4.029 7.917 3.868 8.78 3.852 9.652 C 3.803 10.775 3.788 11.131 3.788 13.981 C 3.788 16.831 3.788 17.195 3.852 18.311 C 3.869 19.184 4.029 20.045 4.328 20.864 C 4.591 21.561 4.993 22.195 5.508 22.724 C 6.023 23.253 6.64 23.665 7.319 23.935 C 8.111 24.254 8.95 24.432 9.8 24.46 C 10.893 24.511 11.24 24.526 14.013 24.526 C 16.785 24.526 17.141 24.526 18.225 24.46 C 19.074 24.443 19.913 24.278 20.708 23.972 C 21.386 23.701 22.003 23.288 22.517 22.759 C 23.032 22.23 23.434 21.596 23.697 20.899 C 23.996 20.082 24.156 19.22 24.173 18.346 C 24.222 17.223 24.237 16.868 24.237 14.016 C 24.235 11.166 24.235 10.805 24.171 9.688 Z M 14.005 19.371 C 11.104 19.371 8.755 16.956 8.755 13.976 C 8.755 10.995 11.104 8.58 14.005 8.58 C 15.397 8.58 16.732 9.149 17.717 10.16 C 18.701 11.172 19.254 12.545 19.254 13.976 C 19.254 15.406 18.701 16.779 17.717 17.791 C 16.732 18.802 15.397 19.371 14.005 19.371 Z M 19.463 9.639 C 19.302 9.639 19.143 9.606 18.994 9.543 C 18.846 9.48 18.711 9.387 18.597 9.27 C 18.483 9.154 18.393 9.015 18.332 8.862 C 18.27 8.709 18.239 8.546 18.239 8.381 C 18.239 8.215 18.271 8.052 18.332 7.899 C 18.394 7.747 18.484 7.608 18.597 7.491 C 18.711 7.375 18.846 7.282 18.994 7.219 C 19.143 7.156 19.302 7.123 19.462 7.123 C 19.623 7.123 19.782 7.156 19.931 7.219 C 20.079 7.282 20.214 7.375 20.328 7.491 C 20.441 7.608 20.531 7.747 20.593 7.899 C 20.654 8.052 20.686 8.215 20.686 8.381 C 20.686 9.076 20.139 9.639 19.463 9.639 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path><path d=\"M 14.003 17.481 C 15.886 17.481 17.413 15.911 17.413 13.976 C 17.413 12.04 15.886 10.471 14.003 10.471 C 12.12 10.471 10.593 12.04 10.593 13.976 C 10.593 15.911 12.12 17.481 14.003 17.481 Z\" fill=\"var(--token-c3550e61-a668-4dd7-b0d5-1d7d53042da9, rgb(255, 251, 238)) /* {&quot;name&quot;:&quot;Background-1&quot;} */\"></path></svg>',svgContentId:11687454700,withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-122l5oi\",layoutDependency:layoutDependency,layoutId:\"RyYHbIJj1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ud79tf\",\"data-framer-name\":\"Frame 1410125944\",layoutDependency:layoutDependency,layoutId:\"B9FNBw9w9\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xc3ec6\",\"data-framer-name\":\"Frame 1410125945\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"S4yYNHLQH\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.06022 4.85984C7.6356 3.28446 9.77228 2.39941 12.0002 2.39941C14.2281 2.39941 16.3648 3.28446 17.9402 4.85984C19.5156 6.43523 20.4006 8.57191 20.4006 10.7998C20.4006 13.0278 19.5156 15.1645 17.9402 16.7398L12.0002 22.6798L6.06022 16.7398C5.28011 15.9598 4.6613 15.0338 4.2391 14.0146C3.81691 12.9954 3.59961 11.903 3.59961 10.7998C3.59961 9.69667 3.81691 8.6043 4.2391 7.5851C4.6613 6.56591 5.28011 5.63987 6.06022 4.85984ZM12.0002 13.1998C12.6367 13.1998 13.2472 12.947 13.6973 12.4969C14.1474 12.0468 14.4002 11.4364 14.4002 10.7998C14.4002 10.1633 14.1474 9.55287 13.6973 9.10279C13.2472 8.6527 12.6367 8.39984 12.0002 8.39984C11.3637 8.39984 10.7532 8.6527 10.3032 9.10279C9.85307 9.55287 9.60022 10.1633 9.60022 10.7998C9.60022 11.4364 9.85307 12.0468 10.3032 12.4969C10.7532 12.947 11.3637 13.1998 12.0002 13.1998Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:\"Daily Fresh Fruits India Private Limited\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 250, 233))\"},children:\"73/2, Namakkal Main Road, A.K.Samuthiram Pachal, Namakkal, Tamil Nadu, India 637018.\"})]}),className:\"framer-1vodnhu\",\"data-framer-name\":\"Daily Fresh Fruits India Private Limited 73/2,Namakkal Main Road, A.K.Samuthiram Pachal, Namakkal, Tamil Nadu, 637018.\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"j9SIiZ1BC\",style:{\"--extracted-2gxw0f\":\"rgb(255, 250, 233)\",\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r10625\",\"data-framer-name\":\"Frame 1410125947\",layoutDependency:layoutDependency,layoutId:\"S8P9nfoST\",children:[/*#__PURE__*/_jsx(Link,{href:\"tel:18008899070\",motionChild:true,nodeId:\"Yheye7vYn\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1t1wg0g framer-19nat08\",\"data-framer-name\":\"Frame 1410125945\",layoutDependency:layoutDependency,layoutId:\"Yheye7vYn\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1weeuls\",\"data-framer-name\":\"Phone\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"RumPVvHlL\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.5 3C2.5 2.73478 2.60536 2.48043 2.79289 2.29289C2.98043 2.10536 3.23478 2 3.5 2H5.653C5.88971 2.00011 6.1187 2.08418 6.29924 2.23726C6.47979 2.39034 6.60018 2.6025 6.639 2.836L7.379 7.271C7.41436 7.48222 7.38097 7.69921 7.28376 7.89003C7.18655 8.08085 7.03065 8.23543 6.839 8.331L5.291 9.104C5.84611 10.4797 6.67283 11.7293 7.72178 12.7782C8.77072 13.8272 10.0203 14.6539 11.396 15.209L12.17 13.661C12.2655 13.4695 12.4199 13.3138 12.6106 13.2166C12.8012 13.1194 13.0179 13.0859 13.229 13.121L17.664 13.861C17.8975 13.8998 18.1097 14.0202 18.2627 14.2008C18.4158 14.3813 18.4999 14.6103 18.5 14.847V17C18.5 17.2652 18.3946 17.5196 18.2071 17.7071C18.0196 17.8946 17.7652 18 17.5 18H15.5C8.32 18 2.5 12.18 2.5 5V3Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:\"1800-889-9070\"})}),className:\"framer-1f6ehbz\",\"data-framer-name\":\"1800-889-9070\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"nlCzPUlud\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"mailto:customercare@dailee.in\",motionChild:true,nodeId:\"AwdbI0nmf\",scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-x802eq framer-19nat08\",\"data-framer-name\":\"Frame 1410125946\",layoutDependency:layoutDependency,layoutId:\"AwdbI0nmf\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tlmh0k\",\"data-framer-name\":\"Mail\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"LjJS5nWVX\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.50391 5.884L10.5009 9.882L18.4979 5.884C18.4683 5.37444 18.245 4.89549 17.8737 4.54523C17.5025 4.19497 17.0113 3.99991 16.5009 4H4.50091C3.99049 3.99991 3.49935 4.19497 3.12808 4.54523C2.75681 4.89549 2.53351 5.37444 2.50391 5.884Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n<path d=\"M18.5 8.11816L10.5 12.1182L2.5 8.11816V14.0002C2.5 14.5306 2.71071 15.0393 3.08579 15.4144C3.46086 15.7895 3.96957 16.0002 4.5 16.0002H16.5C17.0304 16.0002 17.5391 15.7895 17.9142 15.4144C18.2893 15.0393 18.5 14.5306 18.5 14.0002V8.11816Z\" fill=\"#FFFAE9\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:\"customercare@dailee.in\"})}),className:\"framer-99ro1i\",\"data-framer-name\":\"customercare@dailee.in\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"ZksdZRfwe\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pjryvf\",layoutDependency:layoutDependency,layoutId:\"aWq4ljbaA\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-flicrk\",\"data-framer-name\":\"Frame 1410125809\",layoutDependency:layoutDependency,layoutId:\"VHB03n3pe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"pdGQU_T2K\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Home\"})})})}),className:\"framer-10xt1sr\",\"data-framer-name\":\"Home\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"pdGQU_T2K\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f4HS2ulvM\"},motionChild:true,nodeId:\"omDEwu43B\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"About us\"})})})}),className:\"framer-15hua42\",\"data-framer-name\":\"About us\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"omDEwu43B\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mwDjPSv20\"},motionChild:true,nodeId:\"VzX1oQhn4\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Products\"})})})}),className:\"framer-1lgmq9f\",\"data-framer-name\":\"Products\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"VzX1oQhn4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jU3cLiUL2\"},motionChild:true,nodeId:\"ZM87igBWD\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Insights\"})})})}),className:\"framer-ufi2ml\",\"data-framer-name\":\"Insights\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"ZM87igBWD\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 250, 233))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LP_LISXuI\"},motionChild:true,nodeId:\"HDSxzuRGb\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"CSR\"})})})}),className:\"framer-zarrn4\",\"data-framer-name\":\"CSR\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"HDSxzuRGb\",style:{\"--extracted-r6o4lv\":\"rgb(255, 250, 233)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pn7u3d\",layoutDependency:layoutDependency,layoutId:\"zQzn9fCIY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x770k4\",\"data-framer-name\":\"Frame 1410125848\",layoutDependency:layoutDependency,layoutId:\"uuDGjp0Rz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s4rgka\",\"data-framer-name\":\"Frame 1410125847\",layoutDependency:layoutDependency,layoutId:\"P0SmJKmvo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 243, 236))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B7pIVXu6v\"},motionChild:true,nodeId:\"EMgp3nzIG\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Privacy Policy      \"})})})}),className:\"framer-1icasqz\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"EMgp3nzIG\",style:{\"--extracted-r6o4lv\":\"rgb(230, 243, 236)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 243, 236))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TXvwZJ4hJ\"},motionChild:true,nodeId:\"FiERXw8V2\",openInNewTab:false,scopeId:\"G8MpIW_mB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5ukc8u\",\"data-styles-preset\":\"QJiuFXkdI\",children:\"Terms & Conditions\"})})})}),className:\"framer-wvn039\",\"data-framer-name\":\"Terms & Conditions\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"FiERXw8V2\",style:{\"--extracted-r6o4lv\":\"rgb(230, 243, 236)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yvmlkk-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iOlysyNmF-container\",nodeId:\"iOlysyNmF\",rendersWithMotion:true,scopeId:\"G8MpIW_mB\",children:/*#__PURE__*/_jsx(AutoYearCopyright,{color:\"rgb(230, 243, 236)\",companyName:\"Daily Fresh Fruits India Private Limited\",font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"iOlysyNmF\",layoutId:\"iOlysyNmF\",rightsText:\"All rights reserved\",showSymbol:\"yes\",showTrademark:\"no\",trademarkType:\"trademark\",width:\"100%\",yearPlacement:\"beforeCompanyName\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 243, 236))\"},children:\"Designed and Developed by Tape Cassette \"})}),className:\"framer-amdawl\",\"data-framer-name\":\"Designed and Developed by Tape Cassette Media\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"DXelRIYfa\",style:{\"--extracted-r6o4lv\":\"rgb(230, 243, 236)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qRQNN.framer-19nat08, .framer-qRQNN .framer-19nat08 { display: block; }\",\".framer-qRQNN.framer-fm7arv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 40px 24px 40px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-qRQNN .framer-c57t3v { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 24px 40px 24px; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-qRQNN .framer-rcp79t, .framer-qRQNN .framer-olnve8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-1bvh4u8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qRQNN .framer-1vzktdo, .framer-qRQNN .framer-1sc9ki5, .framer-qRQNN .framer-s4rgka { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qRQNN .framer-1rb7ogl, .framer-qRQNN .framer-vjigtt, .framer-qRQNN .framer-1cq5yru, .framer-qRQNN .framer-1o2di2w, .framer-qRQNN .framer-nbvmax, .framer-qRQNN .framer-5rrvsq, .framer-qRQNN .framer-18lxog8, .framer-qRQNN .framer-14c5k4u, .framer-qRQNN .framer-i371sq, .framer-qRQNN .framer-jmig54, .framer-qRQNN .framer-116mjqz, .framer-qRQNN .framer-11b9v4q, .framer-qRQNN .framer-43wtq6, .framer-qRQNN .framer-15r5123, .framer-qRQNN .framer-1ecjy0c, .framer-qRQNN .framer-mpa9em, .framer-qRQNN .framer-1aaleu5, .framer-qRQNN .framer-1f6ehbz, .framer-qRQNN .framer-99ro1i, .framer-qRQNN .framer-10xt1sr, .framer-qRQNN .framer-15hua42, .framer-qRQNN .framer-1lgmq9f, .framer-qRQNN .framer-zarrn4, .framer-qRQNN .framer-1icasqz, .framer-qRQNN .framer-wvn039, .framer-qRQNN .framer-amdawl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qRQNN .framer-1clj836 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-qRQNN .framer-ov409h-container, .framer-qRQNN .framer-1mrqx7y-container, .framer-qRQNN .framer-1yvmlkk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-qRQNN .framer-tt9p6b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-mos48p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-1dxjnh8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-5j7fjw, .framer-qRQNN .framer-wwicql { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 180px); position: relative; width: 180px; }\",\".framer-qRQNN .framer-k5pgyu, .framer-qRQNN .framer-1m0n9kf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 40px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 277px; }\",\".framer-qRQNN .framer-nh7tjz, .framer-qRQNN .framer-1fanxfx, .framer-qRQNN .framer-60an8a, .framer-qRQNN .framer-16xhyzp, .framer-qRQNN .framer-1wx8w0x, .framer-qRQNN .framer-1dc2e82, .framer-qRQNN .framer-7k01jv, .framer-qRQNN .framer-15bjjaf, .framer-qRQNN .framer-1wp5g68, .framer-qRQNN .framer-1c5bj1r, .framer-qRQNN .framer-b6hpyn, .framer-qRQNN .framer-yr6x78 { flex: none; height: 28px; position: relative; text-decoration: none; width: 28px; }\",\".framer-qRQNN .framer-nfo9sp, .framer-qRQNN .framer-7aazse, .framer-qRQNN .framer-xaa2g6 { flex: none; height: 28px; position: relative; text-decoration: none; width: 29px; }\",\".framer-qRQNN .framer-a06xz8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-y8tik1, .framer-qRQNN .framer-1x770k4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qRQNN .framer-45zzig { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-qRQNN .framer-15a9vjg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-1udi7iu, .framer-qRQNN .framer-hs71wb, .framer-qRQNN .framer-1xc3ec6 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-qRQNN .framer-3xycng { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-qRQNN .framer-13ejm55 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-8zp13a, .framer-qRQNN .framer-d1ox4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-twz088, .framer-qRQNN .framer-1u1koiy, .framer-qRQNN .framer-14yzwon, .framer-qRQNN .framer-y8t7n8, .framer-qRQNN .framer-1weeuls, .framer-qRQNN .framer-1tlmh0k { flex: none; height: 20px; position: relative; width: 21px; }\",\".framer-qRQNN .framer-x2b2y1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1380px; overflow: hidden; padding: 0px; position: relative; width: 1120px; }\",\".framer-qRQNN .framer-144f9g4, .framer-qRQNN .framer-fb1r0f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-1az5brn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 308px; }\",\".framer-qRQNN .framer-nb4wbs { flex: none; height: 200px; position: relative; width: 200px; }\",\".framer-qRQNN .framer-14siqw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 40px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-1j8ufou { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 234px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 625px; }\",\".framer-qRQNN .framer-1wf7to4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-1m0so5n, .framer-qRQNN .framer-ufi2ml { flex: none; height: 28px; position: relative; white-space: pre; width: auto; }\",\".framer-qRQNN .framer-5od5bf, .framer-qRQNN .framer-ud79tf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 353px; }\",\".framer-qRQNN .framer-1bc4evs, .framer-qRQNN .framer-1vodnhu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 317px; word-break: break-word; word-wrap: break-word; }\",\".framer-qRQNN .framer-ys3vv1, .framer-qRQNN .framer-r10625 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qRQNN .framer-yccvaz, .framer-qRQNN .framer-lqzb26, .framer-qRQNN .framer-1t1wg0g, .framer-qRQNN .framer-x802eq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-qRQNN .framer-1s2lgpy, .framer-qRQNN .framer-pn7u3d { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-1xi1uhs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-qRQNN .framer-1bffl7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; min-height: 200px; overflow: visible; padding: 0px; position: relative; width: 730px; }\",\".framer-qRQNN .framer-r6jvo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; min-height: 316px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-278xpl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-137d4p8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-qRQNN .framer-122l5oi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qRQNN .framer-1pjryvf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qRQNN .framer-flicrk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qRQNN.framer-fm7arv, .framer-qRQNN .framer-c57t3v, .framer-qRQNN .framer-rcp79t, .framer-qRQNN .framer-1bvh4u8, .framer-qRQNN .framer-1vzktdo, .framer-qRQNN .framer-tt9p6b, .framer-qRQNN .framer-mos48p, .framer-qRQNN .framer-1dxjnh8, .framer-qRQNN .framer-a06xz8, .framer-qRQNN .framer-y8tik1, .framer-qRQNN .framer-olnve8, .framer-qRQNN .framer-15a9vjg, .framer-qRQNN .framer-13ejm55, .framer-qRQNN .framer-8zp13a, .framer-qRQNN .framer-d1ox4, .framer-qRQNN .framer-x2b2y1, .framer-qRQNN .framer-1az5brn, .framer-qRQNN .framer-1j8ufou, .framer-qRQNN .framer-5od5bf, .framer-qRQNN .framer-ys3vv1, .framer-qRQNN .framer-yccvaz, .framer-qRQNN .framer-lqzb26, .framer-qRQNN .framer-1xi1uhs, .framer-qRQNN .framer-1sc9ki5, .framer-qRQNN .framer-1bffl7o, .framer-qRQNN .framer-r6jvo, .framer-qRQNN .framer-278xpl, .framer-qRQNN .framer-137d4p8, .framer-qRQNN .framer-122l5oi, .framer-qRQNN .framer-ud79tf, .framer-qRQNN .framer-r10625, .framer-qRQNN .framer-1t1wg0g, .framer-qRQNN .framer-x802eq, .framer-qRQNN .framer-1pjryvf, .framer-qRQNN .framer-flicrk, .framer-qRQNN .framer-1x770k4, .framer-qRQNN .framer-s4rgka { gap: 0px; } .framer-qRQNN.framer-fm7arv > *, .framer-qRQNN .framer-13ejm55 > *, .framer-qRQNN .framer-ys3vv1 > *, .framer-qRQNN .framer-r10625 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qRQNN.framer-fm7arv > :first-child, .framer-qRQNN .framer-c57t3v > :first-child, .framer-qRQNN .framer-rcp79t > :first-child, .framer-qRQNN .framer-1bvh4u8 > :first-child, .framer-qRQNN .framer-tt9p6b > :first-child, .framer-qRQNN .framer-mos48p > :first-child, .framer-qRQNN .framer-1dxjnh8 > :first-child, .framer-qRQNN .framer-a06xz8 > :first-child, .framer-qRQNN .framer-y8tik1 > :first-child, .framer-qRQNN .framer-olnve8 > :first-child, .framer-qRQNN .framer-13ejm55 > :first-child, .framer-qRQNN .framer-x2b2y1 > :first-child, .framer-qRQNN .framer-1az5brn > :first-child, .framer-qRQNN .framer-1j8ufou > :first-child, .framer-qRQNN .framer-ys3vv1 > :first-child, .framer-qRQNN .framer-1xi1uhs > :first-child, .framer-qRQNN .framer-1bffl7o > :first-child, .framer-qRQNN .framer-r6jvo > :first-child, .framer-qRQNN .framer-137d4p8 > :first-child, .framer-qRQNN .framer-122l5oi > :first-child, .framer-qRQNN .framer-r10625 > :first-child, .framer-qRQNN .framer-1x770k4 > :first-child { margin-top: 0px; } .framer-qRQNN.framer-fm7arv > :last-child, .framer-qRQNN .framer-c57t3v > :last-child, .framer-qRQNN .framer-rcp79t > :last-child, .framer-qRQNN .framer-1bvh4u8 > :last-child, .framer-qRQNN .framer-tt9p6b > :last-child, .framer-qRQNN .framer-mos48p > :last-child, .framer-qRQNN .framer-1dxjnh8 > :last-child, .framer-qRQNN .framer-a06xz8 > :last-child, .framer-qRQNN .framer-y8tik1 > :last-child, .framer-qRQNN .framer-olnve8 > :last-child, .framer-qRQNN .framer-13ejm55 > :last-child, .framer-qRQNN .framer-x2b2y1 > :last-child, .framer-qRQNN .framer-1az5brn > :last-child, .framer-qRQNN .framer-1j8ufou > :last-child, .framer-qRQNN .framer-ys3vv1 > :last-child, .framer-qRQNN .framer-1xi1uhs > :last-child, .framer-qRQNN .framer-1bffl7o > :last-child, .framer-qRQNN .framer-r6jvo > :last-child, .framer-qRQNN .framer-137d4p8 > :last-child, .framer-qRQNN .framer-122l5oi > :last-child, .framer-qRQNN .framer-r10625 > :last-child, .framer-qRQNN .framer-1x770k4 > :last-child { margin-bottom: 0px; } .framer-qRQNN .framer-c57t3v > *, .framer-qRQNN .framer-tt9p6b > *, .framer-qRQNN .framer-a06xz8 > *, .framer-qRQNN .framer-1j8ufou > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-qRQNN .framer-rcp79t > *, .framer-qRQNN .framer-mos48p > *, .framer-qRQNN .framer-olnve8 > *, .framer-qRQNN .framer-1bffl7o > *, .framer-qRQNN .framer-r6jvo > *, .framer-qRQNN .framer-122l5oi > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-qRQNN .framer-1bvh4u8 > *, .framer-qRQNN .framer-1az5brn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-qRQNN .framer-1vzktdo > *, .framer-qRQNN .framer-1sc9ki5 > *, .framer-qRQNN .framer-s4rgka > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-qRQNN .framer-1vzktdo > :first-child, .framer-qRQNN .framer-15a9vjg > :first-child, .framer-qRQNN .framer-8zp13a > :first-child, .framer-qRQNN .framer-d1ox4 > :first-child, .framer-qRQNN .framer-5od5bf > :first-child, .framer-qRQNN .framer-yccvaz > :first-child, .framer-qRQNN .framer-lqzb26 > :first-child, .framer-qRQNN .framer-1sc9ki5 > :first-child, .framer-qRQNN .framer-278xpl > :first-child, .framer-qRQNN .framer-ud79tf > :first-child, .framer-qRQNN .framer-1t1wg0g > :first-child, .framer-qRQNN .framer-x802eq > :first-child, .framer-qRQNN .framer-1pjryvf > :first-child, .framer-qRQNN .framer-flicrk > :first-child, .framer-qRQNN .framer-s4rgka > :first-child { margin-left: 0px; } .framer-qRQNN .framer-1vzktdo > :last-child, .framer-qRQNN .framer-15a9vjg > :last-child, .framer-qRQNN .framer-8zp13a > :last-child, .framer-qRQNN .framer-d1ox4 > :last-child, .framer-qRQNN .framer-5od5bf > :last-child, .framer-qRQNN .framer-yccvaz > :last-child, .framer-qRQNN .framer-lqzb26 > :last-child, .framer-qRQNN .framer-1sc9ki5 > :last-child, .framer-qRQNN .framer-278xpl > :last-child, .framer-qRQNN .framer-ud79tf > :last-child, .framer-qRQNN .framer-1t1wg0g > :last-child, .framer-qRQNN .framer-x802eq > :last-child, .framer-qRQNN .framer-1pjryvf > :last-child, .framer-qRQNN .framer-flicrk > :last-child, .framer-qRQNN .framer-s4rgka > :last-child { margin-right: 0px; } .framer-qRQNN .framer-1dxjnh8 > *, .framer-qRQNN .framer-y8tik1 > *, .framer-qRQNN .framer-x2b2y1 > *, .framer-qRQNN .framer-137d4p8 > *, .framer-qRQNN .framer-1x770k4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-qRQNN .framer-15a9vjg > *, .framer-qRQNN .framer-8zp13a > *, .framer-qRQNN .framer-d1ox4 > *, .framer-qRQNN .framer-5od5bf > *, .framer-qRQNN .framer-yccvaz > *, .framer-qRQNN .framer-lqzb26 > *, .framer-qRQNN .framer-ud79tf > *, .framer-qRQNN .framer-1t1wg0g > *, .framer-qRQNN .framer-x802eq > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-qRQNN .framer-1xi1uhs > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qRQNN .framer-278xpl > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-qRQNN .framer-1pjryvf > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-qRQNN .framer-flicrk > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\".framer-qRQNN.framer-v-guh3nk .framer-1bffl7o { min-height: unset; order: 2; }\",\".framer-qRQNN.framer-v-guh3nk .framer-r6jvo { min-height: unset; }\",\".framer-qRQNN.framer-v-guh3nk .framer-278xpl, .framer-qRQNN.framer-v-guh3nk .framer-s4rgka, .framer-qRQNN.framer-v-1wm7o87 .framer-rcp79t, .framer-qRQNN.framer-v-1wm7o87 .framer-ov409h-container { order: 1; }\",\".framer-qRQNN.framer-v-guh3nk .framer-1pjryvf, .framer-qRQNN.framer-v-guh3nk .framer-1yvmlkk-container, .framer-qRQNN.framer-v-1wm7o87 .framer-c57t3v, .framer-qRQNN.framer-v-1wm7o87 .framer-1bvh4u8, .framer-qRQNN.framer-v-1wm7o87 .framer-tt9p6b { order: 0; }\",\".framer-qRQNN.framer-v-1wm7o87.framer-fm7arv { padding: 0px; }\",\".framer-qRQNN.framer-v-1wm7o87 .framer-1clj836 { order: 2; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 398\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"xPFpc04yI\":{\"layout\":[\"auto\",\"auto\"]},\"pmIsQvJLa\":{\"layout\":[\"auto\",\"auto\"]},\"D7xfr4qcv\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG8MpIW_mB=withCSS(Component,css,\"framer-qRQNN\");export default FramerG8MpIW_mB;FramerG8MpIW_mB.displayName=\"Section- Footer\";FramerG8MpIW_mB.defaultProps={height:398,width:1200};addPropertyControls(FramerG8MpIW_mB,{variant:{options:[\"rwbOvfCWA\",\"xPFpc04yI\",\"pmIsQvJLa\",\"D7xfr4qcv\"],optionTitles:[\"Desktop\",\"Desktop-2\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerG8MpIW_mB,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...AutoYearCopyrightFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG8MpIW_mB\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"398\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xPFpc04yI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pmIsQvJLa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"D7xfr4qcv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G8MpIW_mB.map"],
  "mappings": "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",
  "names": ["clamp", "t", "i", "e", "Animate", "s", "o", "n", "Dimensions", "window", "Emitter", "VirtualScroll", "l", "r", "h", "Lenis", "a", "c", "d", "u", "p", "m", "v", "g", "w", "S", "f", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "checkOverflow", "window", "htmlObserver", "mutations", "mutation", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinksData", "anchor", "href", "decodedHref", "scrollMargin", "targetElement", "handleClick", "e", "handlers", "anchorElement", "index", "p", "l", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonText", "click", "height", "id", "link", "link2", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "MrpUfPOP2", "bDPcCemYJ", "iQU51397O", "QTLf4qyKq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap17o0twm", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerBlPDydIwy", "withCSS", "BlPDydIwy_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "AutoYearCopyright", "props", "companyName", "rightsText", "showSymbol", "showTrademark", "trademarkType", "yearPlacement", "font", "color", "fontSize", "currentYear", "symbol", "trademarkOptionActive", "trademarkSymbol", "finalCompanyName", "finalRightsText", "dotAfterCompanyName", "displayText", "textStyle", "p", "addPropertyControls", "ControlType", "AutoYearCopyrightFonts", "getFonts", "AutoYearCopyright", "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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramerG8MpIW_mB", "withCSS", "G8MpIW_mB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
