{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/fONf9xpEnRB5fhZ36jxV/PFQw4hQn5StRPC8BS3iZ/NumberAnimator.js", "ssg:https://framer.com/m/hero-icons/Home.js@0.0.28", "ssg:https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/FVf6QTcAfnBEJjmYpaoh/RlJfzwr5AOzCU5CpMewq/MRESCmdTI.js", "ssg:https://framerusercontent.com/modules/pqerinLpAFbWbpplSWVA/gdZfNNqXuI1zOKzcdkfK/rLdDiQzHx.js", "ssg:https://framerusercontent.com/modules/M7J47wySy60JdW34w3y5/NbQq34W6CZZEGw0k2pZl/FTdjT8iC7.js", "ssg:https://framerusercontent.com/modules/SDvA5XRai9JnTBdBU5Wn/eY80a78i8zEMIDD4VMSQ/Wi34iqE_Z.js", "ssg:https://framerusercontent.com/modules/PLCYQjx8urP2UKfg9cjR/4TN1Pj4G0vVhSc5ca0RI/vh4ztMvfu.js", "ssg:https://framerusercontent.com/modules/SCUZVJDr4K1pvDSHwHyG/v7fsjkYQIXMT2ESmVylk/BipolarNoKey.js", "ssg:https://framerusercontent.com/modules/eq7mKrqAQRXCo5HAJ4r6/51JH9RU5n3fDFvsTjZX6/gdhhBaSMc.js"],
  "sourcesContent": ["import{jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useInView}from\"framer-motion\";import{useEffect,useState,useRef}from\"react\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function NumberAnimator(props){const ref=useRef(null);const isInView=useInView(ref,{once:!props.animation.replay,amount:\"some\"});const[numberText,setNumberText]=useState(\"\");const{start,end,decimals,commas,rounding,fontColor,animation}=props;const[currentAnimation,setCurrentAnimation]=useState(null);const isCanvas=RenderTarget.current()===RenderTarget.canvas;function formatNumber(value){let number=value;let numberString=number.toFixed(decimals);if(commas){numberString=numberString.replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");}return numberString;}function runAnimation(){if(!isCanvas){if(currentAnimation){currentAnimation.stop();}setCurrentAnimation(animate(start,end,{...animation.transition,onUpdate:latest=>{setNumberText(formatNumber(latest));}}));}}useEffect(()=>{if(animation.trigger==\"appear\"){runAnimation();}setNumberText(formatNumber(start));},[]);useEffect(()=>{if(isInView&&animation.trigger==\"layerInView\"){runAnimation();}},[isInView]);useEffect(()=>{if(animation.trigger==\"layerInView\"){if(isInView){runAnimation();}else{if(currentAnimation){currentAnimation.stop();}setNumberText(formatNumber(start));}}},[isInView]);return /*#__PURE__*/_jsxs(motion.p,{ref:ref,style:{userSelect:props.textSelect?\"auto\":\"none\",fontVariantNumeric:`${props.monospace?\"tabular-nums \":\"\"}${props.slashedZeros?\"slashed-zero\":\"\"}`,margin:0,...fontColor.mode==\"solid\"?{color:fontColor.color}:{WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",backgroundImage:`linear-gradient(${fontColor.angle}deg, ${fontColor.startColor}, ${fontColor.endColor})`},...props.font,...props.style},children:[props.prefix,isCanvas?formatNumber(end):numberText,props.suffix]});}NumberAnimator.displayName=\"Animated Number Counter\";addPropertyControls(NumberAnimator,{start:{type:ControlType.Number,defaultValue:0},end:{type:ControlType.Number,defaultValue:100},decimals:{type:ControlType.Number,defaultValue:0,min:0,max:3,step:1},commas:{type:ControlType.Boolean,defaultValue:true},fontColor:{type:ControlType.Object,controls:{mode:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!=\"solid\"},startColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!=\"gradient\"},endColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.mode!=\"gradient\"},angle:{type:ControlType.Number,defaultValue:180,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.mode!=\"gradient\"}}},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},animation:{type:ControlType.Object,icon:\"effect\",controls:{trigger:{type:ControlType.Enum,defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},replay:{type:ControlType.Boolean,defaultValue:true,hidden(props){return props.trigger!==\"layerInView\";}},transition:{type:ControlType.Transition}}},prefix:{type:ControlType.String},suffix:{type:ControlType.String},textSelect:{type:ControlType.Boolean,defaultValue:true},display:{type:ControlType.Object,buttonTitle:\"Options\",controls:{monospace:{type:ControlType.Boolean,defaultValue:false,description:\"Monospaced number characters.\"},slashedZeros:{type:ControlType.Boolean,defaultValue:false,description:\"Adds a diagonal slash through zeros if your font supports it.\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"NumberAnimator\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NumberAnimator.map", "let Component;\nvar Home_default = (React) => {\n  if (!Component) {\n    const HomeIcon = React.forwardRef(function HomeIcon2({\n      title,\n      titleId,\n      ...props\n    }, svgRef) {\n      return /* @__PURE__ */ React.createElement(\"svg\", Object.assign({\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 24 24\",\n        fill: \"currentColor\",\n        \"aria-hidden\": \"true\",\n        \"data-slot\": \"icon\",\n        ref: svgRef,\n        \"aria-labelledby\": titleId\n      }, props), title ? /* @__PURE__ */ React.createElement(\"title\", {\n        id: titleId\n      }, title) : null, /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"M11.47 3.841a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.061l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 1 0 1.061 1.06l8.69-8.689Z\"\n      }), /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"m12 5.432 8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198a2.29 2.29 0 0 0 .091-.086L12 5.432Z\"\n      }));\n    });\n    Component = HomeIcon;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  Home_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/hero-icons/Home.js@0.0.28\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"AcademicCap\",\"AdjustmentsVertical\",\"ArchiveBox\",\"ArchiveBoxArrowDown\",\"ArchiveBoxXMark\",\"ArrowDown\",\"ArrowDownCircle\",\"ArrowDownLeft\",\"ArrowDownOnSquare\",\"ArrowDownRight\",\"ArrowDownTray\",\"ArrowLeft\",\"ArrowLeftCircle\",\"ArrowLeftOnRectangle\",\"ArrowLongDown\",\"ArrowLongLeft\",\"ArrowLongRight\",\"ArrowLongUp\",\"ArrowPath\",\"ArrowRight\",\"ArrowRightCircle\",\"ArrowSmallDown\",\"ArrowSmallLeft\",\"ArrowSmallRight\",\"ArrowSmallUp\",\"ArrowTrendingDown\",\"ArrowTrendingUp\",\"ArrowUp\",\"ArrowUpCircle\",\"ArrowUpLeft\",\"ArrowUpOnSquare\",\"ArrowUpOnSquareStack\",\"ArrowUpRight\",\"ArrowUpTray\",\"ArrowUturnDown\",\"ArrowUturnLeft\",\"ArrowUturnRight\",\"ArrowUturnUp\",\"ArrowsPointingIn\",\"ArrowsPointingOut\",\"ArrowsRightLeft\",\"ArrowsUpDown\",\"AtSymbol\",\"Backspace\",\"Backward\",\"Banknotes\",\"Bars2\",\"Bars3\",\"Bars3BottomLeft\",\"Bars3BottomRight\",\"Bars3CenterLeft\",\"Bars4\",\"BarsArrowDown\",\"BarsArrowUp\",\"Battery0\",\"Battery100\",\"Battery50\",\"Beaker\",\"Bell\",\"BellAlert\",\"BellSlash\",\"BellSnooze\",\"Bolt\",\"BoltSlash\",\"BookOpen\",\"Bookmark\",\"BookmarkSlash\",\"BookmarkSquare\",\"Briefcase\",\"BugAnt\",\"BuildingLibrary\",\"BuildingOffice\",\"BuildingOffice2\",\"BuildingStorefront\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarDays\",\"Camera\",\"ChartBar\",\"ChartBarSquare\",\"ChartPie\",\"ChatBubbleLeft\",\"ChatBubbleLeftRight\",\"ChatBubbleOvalLeft\",\"Check\",\"CheckBadge\",\"CheckCircle\",\"ChevronDoubleDown\",\"ChevronDoubleLeft\",\"ChevronDoubleRight\",\"ChevronDoubleUp\",\"ChevronDown\",\"ChevronLeft\",\"ChevronRight\",\"ChevronUp\",\"ChevronUpDown\",\"CircleStack\",\"Clipboard\",\"ClipboardDocument\",\"Clock\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CodeBracket\",\"CodeBracketSquare\",\"Cog\",\"Cog6Tooth\",\"Cog8Tooth\",\"CommandLine\",\"ComputerDesktop\",\"CpuChip\",\"CreditCard\",\"Cube\",\"CubeTransparent\",\"CurrencyBangladeshi\",\"CurrencyDollar\",\"CurrencyEuro\",\"CurrencyPound\",\"CurrencyRupee\",\"CurrencyYen\",\"CursorArrowRays\",\"CursorArrowRipple\",\"DevicePhoneMobile\",\"DeviceTablet\",\"Document\",\"DocumentArrowDown\",\"DocumentArrowUp\",\"DocumentChartBar\",\"DocumentCheck\",\"DocumentDuplicate\",\"DocumentMinus\",\"DocumentPlus\",\"DocumentText\",\"EllipsisHorizontal\",\"EllipsisVertical\",\"Envelope\",\"EnvelopeOpen\",\"ExclamationCircle\",\"ExclamationTriangle\",\"Eye\",\"EyeDropper\",\"EyeSlash\",\"FaceFrown\",\"FaceSmile\",\"Film\",\"FingerPrint\",\"Fire\",\"Flag\",\"Folder\",\"FolderArrowDown\",\"FolderMinus\",\"FolderOpen\",\"FolderPlus\",\"Forward\",\"Funnel\",\"Gif\",\"Gift\",\"GiftTop\",\"GlobeAlt\",\"GlobeAmericas\",\"GlobeAsiaAustralia\",\"GlobeEuropeAfrica\",\"HandRaised\",\"HandThumbDown\",\"HandThumbUp\",\"Hashtag\",\"Heart\",\"Home\",\"HomeModern\",\"Identification\",\"Inbox\",\"InboxArrowDown\",\"InboxStack\",\"InformationCircle\",\"Key\",\"Language\",\"Lifebuoy\",\"LightBulb\",\"Link\",\"ListBullet\",\"LockClosed\",\"LockOpen\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Map\",\"MapPin\",\"Megaphone\",\"Microphone\",\"Minus\",\"MinusCircle\",\"MinusSmall\",\"Moon\",\"MusicalNote\",\"Newspaper\",\"NoSymbol\",\"PaintBrush\",\"PaperAirplane\",\"PaperClip\",\"Pause\",\"PauseCircle\",\"Pencil\",\"PencilSquare\",\"Phone\",\"PhoneArrowDownLeft\",\"PhoneArrowUpRight\",\"PhoneXMark\",\"Photo\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Plus\",\"PlusCircle\",\"PlusSmall\",\"Power\",\"PresentationChartBar\",\"Printer\",\"PuzzlePiece\",\"QrCode\",\"QuestionMarkCircle\",\"QueueList\",\"Radio\",\"ReceiptPercent\",\"ReceiptRefund\",\"RectangleGroup\",\"RectangleStack\",\"RocketLaunch\",\"Rss\",\"Scale\",\"Scissors\",\"Server\",\"ServerStack\",\"Share\",\"ShieldCheck\",\"ShieldExclamation\",\"ShoppingBag\",\"ShoppingCart\",\"Signal\",\"SignalSlash\",\"Sparkles\",\"SpeakerWave\",\"SpeakerXMark\",\"Square2Stack\",\"Square3Stack3D\",\"Squares2X2\",\"SquaresPlus\",\"Star\",\"Stop\",\"StopCircle\",\"Sun\",\"Swatch\",\"TableCells\",\"Tag\",\"Ticket\",\"Trash\",\"Trophy\",\"Truck\",\"Tv\",\"User\",\"UserCircle\",\"UserGroup\",\"UserMinus\",\"UserPlus\",\"Users\",\"Variable\",\"VideoCamera\",\"VideoCameraSlash\",\"ViewColumns\",\"ViewfinderCircle\",\"Wallet\",\"Wifi\",\"Window\",\"Wrench\",\"WrenchScrewdriver\",\"XCircle\",\"XMark\",\"index\"];const moduleBaseUrl=\"https://framer.com/m/hero-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * HERO\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.28`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Hero\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Hero site](https://heroicons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hero.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(u));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=f.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return i(e)?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return l(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){d(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:g(i,s,o[r]),easing:m(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,O(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=x((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=G.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=w(p(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const s=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:i(t)?()=>t(n):scrubAnimation(t,n[s])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const ce={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const le={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of ue)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (3ce81f8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"sKz6_6zkj\",\"bKqkKB8w5\",\"sZBHwPVCl\"];const serializationHash=\"framer-ol82U\";const variantClassNames={bKqkKB8w5:\"framer-v-1icql65\",sKz6_6zkj:\"framer-v-jbl1qr\",sZBHwPVCl:\"framer-v-10v7yc7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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={Default:\"sKz6_6zkj\",Hidden:\"sZBHwPVCl\",Loading:\"bKqkKB8w5\"};const getProps=({click,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"sKz6_6zkj\",Wld3NDzSj:click??props.Wld3NDzSj};};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,Wld3NDzSj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sKz6_6zkj\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapn9xadi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Wld3NDzSj){const res=await Wld3NDzSj(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const isDisplayed=()=>{if(baseVariant===\"sZBHwPVCl\")return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed1=()=>{if(baseVariant===\"bKqkKB8w5\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"bKqkKB8w5\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jbl1qr\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sKz6_6zkj\",onTap:onTapn9xadi,ref:refBinding,style:{backgroundColor:\"var(--token-dfe88354-89bc-4ddc-be9d-fa2676709d25, rgb(36, 113, 107))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},...addPropertyOverrides({bKqkKB8w5:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Load More\"})}),className:\"framer-1bwry9d\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Zvgn1DSjW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-11xupeh\",\"data-framer-appear-id\":\"11xupeh\",\"data-framer-name\":\"Spinner\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"n2YBH6oSt\",optimized:true,style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-peylgq\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"vDzM9OS46\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 0deg, rgb(255, 255, 255) 342deg)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p0ns0d\",\"data-framer-name\":\"Round\",layoutDependency:layoutDependency,layoutId:\"Ywc07IYql\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1}})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ol82U.framer-1b95tnq, .framer-ol82U .framer-1b95tnq { display: block; }\",\".framer-ol82U.framer-jbl1qr { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; padding: 0px; position: relative; width: 100px; }\",\".framer-ol82U .framer-1bwry9d { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-ol82U .framer-11xupeh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-ol82U .framer-peylgq { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-ol82U .framer-p0ns0d { flex: none; height: 2px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ol82U.framer-jbl1qr { gap: 0px; } .framer-ol82U.framer-jbl1qr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ol82U.framer-jbl1qr > :first-child { margin-left: 0px; } .framer-ol82U.framer-jbl1qr > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bKqkKB8w5\":{\"layout\":[\"fixed\",\"fixed\"]},\"sZBHwPVCl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Wld3NDzSj\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMRESCmdTI=withCSS(Component,css,\"framer-ol82U\");export default FramerMRESCmdTI;FramerMRESCmdTI.displayName=\"Load More\";FramerMRESCmdTI.defaultProps={height:40,width:100};addPropertyControls(FramerMRESCmdTI,{variant:{options:[\"sKz6_6zkj\",\"bKqkKB8w5\",\"sZBHwPVCl\"],optionTitles:[\"Default\",\"Loading\",\"Hidden\"],title:\"Variant\",type:ControlType.Enum},Wld3NDzSj:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerMRESCmdTI,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMRESCmdTI\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"Wld3NDzSj\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"100\",\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bKqkKB8w5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sZBHwPVCl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MRESCmdTI.map", "// Generated by Framer (3ce81f8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"FN5iHL24W\",\"xcXQNYNgz\",\"eYlQ39smY\"];const serializationHash=\"framer-TDmBl\";const variantClassNames={eYlQ39smY:\"framer-v-uon7gs\",FN5iHL24W:\"framer-v-135nl64\",xcXQNYNgz:\"framer-v-133qy4v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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={Default:\"FN5iHL24W\",Hidden:\"eYlQ39smY\",Loading:\"xcXQNYNgz\"};const getProps=({click,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FN5iHL24W\",Wld3NDzSj:click??props.Wld3NDzSj};};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,Wld3NDzSj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FN5iHL24W\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapn9xadi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Wld3NDzSj){const res=await Wld3NDzSj(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const isDisplayed=()=>{if(baseVariant===\"eYlQ39smY\")return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed1=()=>{if(baseVariant===\"xcXQNYNgz\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"xcXQNYNgz\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-135nl64\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FN5iHL24W\",onTap:onTapn9xadi,ref:refBinding,style:{backgroundColor:\"var(--token-dfe88354-89bc-4ddc-be9d-fa2676709d25, rgb(36, 113, 107))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},...addPropertyOverrides({xcXQNYNgz:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Load More\"})}),className:\"framer-1jph8hl\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"yJ6cTU1Nm\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-qvokat\",\"data-framer-appear-id\":\"qvokat\",\"data-framer-name\":\"Spinner\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"FKgcRnjSq\",optimized:true,style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-rkgnwr\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"MIyW7IajI\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 0deg, rgb(255, 255, 255) 342deg)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e4rryq\",\"data-framer-name\":\"Round\",layoutDependency:layoutDependency,layoutId:\"Ld8h1vS6s\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1}})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TDmBl.framer-d177o2, .framer-TDmBl .framer-d177o2 { display: block; }\",\".framer-TDmBl.framer-135nl64 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; padding: 0px; position: relative; width: 100px; }\",\".framer-TDmBl .framer-1jph8hl { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-TDmBl .framer-qvokat { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-TDmBl .framer-rkgnwr { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-TDmBl .framer-e4rryq { flex: none; height: 2px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TDmBl.framer-135nl64 { gap: 0px; } .framer-TDmBl.framer-135nl64 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TDmBl.framer-135nl64 > :first-child { margin-left: 0px; } .framer-TDmBl.framer-135nl64 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xcXQNYNgz\":{\"layout\":[\"fixed\",\"fixed\"]},\"eYlQ39smY\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Wld3NDzSj\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrLdDiQzHx=withCSS(Component,css,\"framer-TDmBl\");export default FramerrLdDiQzHx;FramerrLdDiQzHx.displayName=\"Load More 2\";FramerrLdDiQzHx.defaultProps={height:40,width:100};addPropertyControls(FramerrLdDiQzHx,{variant:{options:[\"FN5iHL24W\",\"xcXQNYNgz\",\"eYlQ39smY\"],optionTitles:[\"Default\",\"Loading\",\"Hidden\"],title:\"Variant\",type:ControlType.Enum},Wld3NDzSj:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerrLdDiQzHx,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrLdDiQzHx\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerVariables\":\"{\\\"Wld3NDzSj\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xcXQNYNgz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eYlQ39smY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"100\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rLdDiQzHx.map", "// Generated by Framer (013b13c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-boFp0 .framer-styles-preset-1slrx70:not(.rich-text-wrapper), .framer-boFp0 .framer-styles-preset-1slrx70.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-48854335-4006-47b5-926a-b2fb76f49d30, #4fbbb1) /* {\"name\":\"Main Mint\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #79ede2; --framer-link-text-decoration: none; }'];export const className=\"framer-boFp0\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-jRcDg .framer-styles-preset-2z79pj:not(.rich-text-wrapper), .framer-jRcDg .framer-styles-preset-2z79pj.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.2px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-018d953b-e691-47a7-901b-bcc23c5f23de, #ebe7e3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-jRcDg\";\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\"}}}", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/O5h1OSqTfQ3OMmU6O0UE/dl2RPK2ESXRKQ5RoIOrs/componentPresets.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rWbjg6xYcYqp1pwhD3iv/msHT9ObG40wS7ROMMOig/BewBxROAR.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/rJgX92te9qyTBSj46M6G/gUZGoZVx1eVRguQoqyQf/etCxaLpvn.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/AIRCqASi2dXxk6TZrcFk/bLG37nXtorlgGowADOWr/eUlgD3IUi.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/nJoUmvchLQCVKsnWKZDp/r6IqxcW07KveitbEulzs/eUzPXhCPw.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/M7J47wySy60JdW34w3y5/NbQq34W6CZZEGw0k2pZl/FTdjT8iC7.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/suTxiQm4OGgBlvb6bp0t/p5cVAjLojCznbyJVf3UW/GWSAo4tTb.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/39GtL8zXcNMd9uhsn8F1/GXZfOd2JTfArO8bzCG9z/lPjmvDjFV.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/DPiCzY0t9CXOFHk6vU75/YtsopROL3rtJZ7sgtn9n/NbtD0hGbe.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/SDvA5XRai9JnTBdBU5Wn/eY80a78i8zEMIDD4VMSQ/Wi34iqE_Z.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/sN10xuIQyQdLAhoT6lZB/Rf94t1AgSX8BLJ1GGhHd/XVvscF8jF.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/kFwcfykWYTeIccHjAEty/ebcepvrMQXZZ2tdrR1mk/YcXqzoJNu.js\";const cycleOrder=[\"ILpgiCkdn\",\"ynhTFtvAM\"];const serializationHash=\"framer-AWrQw\";const variantClassNames={ILpgiCkdn:\"framer-v-19l6x2f\",ynhTFtvAM:\"framer-v-1w6tb8t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,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={Closed:\"ILpgiCkdn\",Open:\"ynhTFtvAM\"};const getProps=({content,height,id,question,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ILpgiCkdn\",W88zB8mIG:question??props.W88zB8mIG??\"Studies\",wpkm0Au7d:content??props.wpkm0Au7d??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})})};};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,W88zB8mIG,wpkm0Au7d,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ILpgiCkdn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1e56eyd=activeVariantCallback(async(...args)=>{setVariant(\"ynhTFtvAM\");});const onTap1dsfq7=activeVariantCallback(async(...args)=>{setVariant(\"ILpgiCkdn\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ynhTFtvAM\")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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-19l6x2f\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"ILpgiCkdn\",ref:refBinding,style:{backgroundColor:\"var(--token-dfe88354-89bc-4ddc-be9d-fa2676709d25, rgb(36, 113, 107))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({ynhTFtvAM:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wvrd2v\",\"data-framer-name\":\"Box\",layoutDependency:layoutDependency,layoutId:\"OAbmb76rZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mnab5g\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Xc6BkmJGJ\",onTap:onTap1e56eyd,...addPropertyOverrides({ynhTFtvAM:{onTap:onTap1dsfq7}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Studies\"})}),className:\"framer-sw2ye1\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"uISdCGGUP\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n7b1y\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"wlXvKb_fn\",style:{rotate:0},variants:{ynhTFtvAM:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gujhj2\",layoutDependency:layoutDependency,layoutId:\"gJLaGUesA\",style:{backgroundColor:\"var(--token-48854335-4006-47b5-926a-b2fb76f49d30, rgb(79, 187, 177))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ld1e\",layoutDependency:layoutDependency,layoutId:\"B7xs8zr7h\",style:{backgroundColor:\"var(--token-48854335-4006-47b5-926a-b2fb76f49d30, rgb(79, 187, 177))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u4z0wc\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"mvJovpE5_\",style:{opacity:0},variants:{ynhTFtvAM:{opacity:1}},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"s7CtStLOu\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"aqEyYPuMM\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"tnX3Cblzi\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wpkm0Au7d,className:\"framer-11vovmg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qaQUvUfxg\",style:{\"--extracted-r6o4lv\":\"var(--token-fae910b1-58dd-4ef5-8c3c-a28d85da034c, rgb(127, 131, 138))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},stylesPresetsClassNames:{a:\"framer-styles-preset-1slrx70\",blockquote:\"framer-styles-preset-1ntdu9z\",code:\"framer-styles-preset-1b5v1cp\",h1:\"framer-styles-preset-1levbp3\",h2:\"framer-styles-preset-1ihfdip\",h3:\"framer-styles-preset-6tgkgt\",h4:\"framer-styles-preset-1uydsif\",h5:\"framer-styles-preset-1ylcfkg\",h6:\"framer-styles-preset-165t15t\",img:\"framer-styles-preset-3gifex\",p:\"framer-styles-preset-2z79pj\"},variants:{ynhTFtvAM:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AWrQw.framer-1juvb1q, .framer-AWrQw .framer-1juvb1q { display: block; }\",\".framer-AWrQw.framer-19l6x2f { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AWrQw .framer-wvrd2v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-AWrQw .framer-mnab5g { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 44px; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-AWrQw .framer-sw2ye1 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AWrQw .framer-n7b1y { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; z-index: 1; }\",\".framer-AWrQw .framer-1gujhj2 { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-AWrQw .framer-5ld1e { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-AWrQw .framer-1u4z0wc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AWrQw .framer-11vovmg { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AWrQw.framer-19l6x2f, .framer-AWrQw .framer-wvrd2v, .framer-AWrQw .framer-mnab5g, .framer-AWrQw .framer-1u4z0wc { gap: 0px; } .framer-AWrQw.framer-19l6x2f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AWrQw.framer-19l6x2f > :first-child, .framer-AWrQw .framer-wvrd2v > :first-child, .framer-AWrQw .framer-1u4z0wc > :first-child { margin-top: 0px; } .framer-AWrQw.framer-19l6x2f > :last-child, .framer-AWrQw .framer-wvrd2v > :last-child, .framer-AWrQw .framer-1u4z0wc > :last-child { margin-bottom: 0px; } .framer-AWrQw .framer-wvrd2v > *, .framer-AWrQw .framer-1u4z0wc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AWrQw .framer-mnab5g > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-AWrQw .framer-mnab5g > :first-child { margin-left: 0px; } .framer-AWrQw .framer-mnab5g > :last-child { margin-right: 0px; } }\",\".framer-AWrQw.framer-v-1w6tb8t.framer-19l6x2f, .framer-AWrQw.framer-v-1w6tb8t .framer-wvrd2v { height: min-content; }\",\".framer-AWrQw.framer-v-1w6tb8t .framer-1u4z0wc { padding: 0px 0px 20px 0px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ynhTFtvAM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"wpkm0Au7d\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framervh4ztMvfu=withCSS(Component,css,\"framer-AWrQw\");export default Framervh4ztMvfu;Framervh4ztMvfu.displayName=\"Accordion/Accordion 3\";Framervh4ztMvfu.defaultProps={height:40,width:400};addPropertyControls(Framervh4ztMvfu,{variant:{options:[\"ILpgiCkdn\",\"ynhTFtvAM\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Studies\",displayTextArea:true,title:\"Question\",type:ControlType.String},wpkm0Au7d:{defaultValue:'<p><br class=\"trailing-break\"></p>',title:\"Content\",type:ControlType.RichText}});addFonts(Framervh4ztMvfu,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...componentPresets.fonts?.[\"aqEyYPuMM\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"aqEyYPuMM\"]):[],...componentPresets.fonts?.[\"tnX3Cblzi\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"tnX3Cblzi\"]):[],...componentPresets.fonts?.[\"s7CtStLOu\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"s7CtStLOu\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framervh4ztMvfu\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"wpkm0Au7d\\\":\\\"content\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ynhTFtvAM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vh4ztMvfu.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";// Main component implementation\nfunction YouTubePlaylistPlayer({playlistId,playlistTitle,titleSize,titleWeight,titleColor,showScrollIndicators,deviceType}){const[videos,setVideos]=useState([]);const[currentIndex,setCurrentIndex]=useState(0);const[player,setPlayer]=useState(null);const[playerReady,setPlayerReady]=useState(false);const[loading,setLoading]=useState(true);const[canScrollLeft,setCanScrollLeft]=useState(false);const[canScrollRight,setCanScrollRight]=useState(true);const playerContainerRef=useRef(null);const thumbnailsContainerRef=useRef(null);// Load the YouTube IFrame API\nuseEffect(()=>{// Only load the script once\nif(!window.YT){const tag=document.createElement(\"script\");tag.src=\"https://www.youtube.com/iframe_api\";const firstScriptTag=document.getElementsByTagName(\"script\")[0];firstScriptTag.parentNode.insertBefore(tag,firstScriptTag);// Setup the callback for when API is ready\nwindow.onYouTubeIframeAPIReady=initializePlayer;}else if(window.YT&&window.YT.Player){// If already loaded, initialize directly\ninitializePlayer();}return()=>{// Cleanup\nif(player&&player.destroy){player.destroy();}};},[playlistId])// Re-initialize when playlist ID changes\n;// Add scroll detection\nuseEffect(()=>{const checkScroll=()=>{if(!thumbnailsContainerRef.current)return;const{scrollLeft,scrollWidth,clientWidth}=thumbnailsContainerRef.current;setCanScrollLeft(scrollLeft>0);setCanScrollRight(scrollLeft+clientWidth<scrollWidth-5)// 5px buffer\n;};const container=thumbnailsContainerRef.current;if(container){container.addEventListener(\"scroll\",checkScroll);// Initial check\ncheckScroll();// Also check after videos load\nif(videos.length>0){checkScroll();}}return()=>{if(container){container.removeEventListener(\"scroll\",checkScroll);}};},[videos,thumbnailsContainerRef.current]);// Initialize the player once API and DOM are ready\nconst initializePlayer=()=>{if(!playerContainerRef.current||!window.YT||!window.YT.Player)return;// Clear any existing player\nif(player&&player.destroy){player.destroy();}// Create new player element\nconst playerElement=document.createElement(\"div\");playerElement.id=\"youtube-player-\"+Math.random().toString(36).substr(2,9);playerContainerRef.current.innerHTML=\"\";playerContainerRef.current.appendChild(playerElement);try{const newPlayer=new window.YT.Player(playerElement.id,{height:\"100%\",width:\"100%\",playerVars:{listType:\"playlist\",list:playlistId,rel:0},events:{onReady:onPlayerReady,onStateChange:onPlayerStateChange}});setPlayer(newPlayer);}catch(err){console.error(\"Error initializing YouTube player:\",err);setLoading(false);}};// Handle player ready event\nconst onPlayerReady=event=>{setPlayerReady(true);// Get playlist data when player is ready\nif(event.target&&typeof event.target.getPlaylist===\"function\"){try{const playlist=event.target.getPlaylist()||[];const playlistData=[];// Create placeholder data for each video\nfor(let i=0;i<playlist.length;i++){playlistData.push({id:playlist[i],title:`Video ${i+1}`});}setVideos(playlistData);}catch(err){console.error(\"Error getting playlist:\",err);}}setLoading(false);};// Handle player state change\nconst onPlayerStateChange=event=>{// Update current index when video changes\nif(playerReady&&player&&typeof player.getPlaylistIndex===\"function\"){try{const newIndex=player.getPlaylistIndex();if(newIndex!==currentIndex&&newIndex!==-1){setCurrentIndex(newIndex);// Auto-scroll to make current video visible if needed\nsetTimeout(()=>{if(thumbnailsContainerRef.current){const container=thumbnailsContainerRef.current;const currentThumbnail=container.children[0].children[newIndex];if(currentThumbnail){const containerRect=container.getBoundingClientRect();const thumbnailRect=currentThumbnail.getBoundingClientRect();// If thumbnail is outside the visible area\nif(thumbnailRect.left<containerRect.left||thumbnailRect.right>containerRect.right){currentThumbnail.scrollIntoView({behavior:\"smooth\",block:\"nearest\",inline:\"center\"});}}}},300);}}catch(err){console.error(\"Error updating current index:\",err);}}};// Handle clicking on a video thumbnail\nconst handleVideoSelect=index=>{if(playerReady&&player&&typeof player.playVideoAt===\"function\"){try{player.playVideoAt(index);setCurrentIndex(index);}catch(err){console.error(\"Error selecting video:\",err);}}};// Handle scroll button clicks\nconst scrollThumbnails=direction=>{if(thumbnailsContainerRef.current){const container=thumbnailsContainerRef.current;// Adjust scroll amount based on device type\nlet scrollAmount;switch(deviceType){case\"mobile\":scrollAmount=320// About 2 thumbnails on mobile\n;break;case\"tablet\":scrollAmount=360// About 2 thumbnails on tablet\n;break;default:scrollAmount=400// About 2 thumbnails on desktop\n;}const targetScroll=container.scrollLeft+(direction===\"left\"?-scrollAmount:scrollAmount);container.scrollTo({left:targetScroll,behavior:\"smooth\"});}};// Use inline styles instead of problematic class names\nconst getContainerPadding=()=>{switch(deviceType){case\"mobile\":return\"0 8px\";case\"tablet\":return\"0 12px\";default:return\"0 16px\";}};const containerStyle={width:\"100%\",maxWidth:deviceType===\"mobile\"?\"100%\":deviceType===\"tablet\"?\"768px\":\"1280px\",margin:\"0 auto\",padding:getContainerPadding()};const videoContainerStyle={position:\"relative\",paddingBottom:\"0\",marginBottom:\"16px\",marginTop:!playlistTitle||playlistTitle.trim()===\"\"?\"0\":\"-4px\"};const aspectRatioStyle={position:\"relative\",width:\"100%\",paddingBottom:\"56.25%\",overflow:\"hidden\",backgroundColor:\"black\",borderRadius:\"8px\",boxShadow:\"0 4px 6px rgba(0, 0, 0, 0.1)\"};const playerStyle={position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\"};// Title styling for custom playlist title\nconst getTitleSize=()=>{// Adjust title size based on device type\nlet size=titleSize;if(deviceType===\"mobile\"){size=Math.max(16,titleSize-6)// Smaller on mobile, minimum 16px\n;}else if(deviceType===\"tablet\"){size=Math.max(18,titleSize-4)// Slightly smaller on tablet, minimum 18px\n;}return`${size}px`;};const titleStyle={fontSize:getTitleSize(),fontWeight:titleWeight,color:titleColor,marginBottom:deviceType===\"mobile\"?\"12px\":\"16px\",marginTop:deviceType===\"mobile\"?\"12px\":\"16px\"};const scrollContainerWrapperStyle={position:\"relative\",marginBottom:\"40px\",paddingBottom:\"36px\"};const thumbnailsContainerStyle={overflowX:\"auto\",paddingBottom:\"16px\",paddingTop:\"8px\",paddingLeft:\"8px\",paddingRight:\"8px\",scrollbarWidth:\"thin\",scrollbarColor:\"#cbd5e1 #f1f5f9\",position:\"relative\",// Hide scrollbar for Chrome/Safari/Opera\nmsOverflowStyle:\"none\"/* IE and Edge */,scrollbarWidth:\"none\"/* Firefox */};// CSS styles defined at component level\nconst leftGradientStyle={position:\"absolute\",top:0,bottom:0,left:0,width:\"40px\",background:\"linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0))\",pointerEvents:\"none\",zIndex:1,opacity:canScrollLeft?1:0,transition:\"opacity 0.3s ease\"};const rightGradientStyle={position:\"absolute\",top:0,bottom:0,right:0,width:\"40px\",background:\"linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0))\",pointerEvents:\"none\",zIndex:1,opacity:canScrollRight?1:0,transition:\"opacity 0.3s ease\"};const getButtonSize=()=>{return deviceType===\"mobile\"?\"32px\":\"36px\";};const scrollButtonBaseStyle={position:\"absolute\",bottom:\"0\",zIndex:2,width:getButtonSize(),height:getButtonSize(),backgroundColor:\"#3b6f6b\",borderRadius:\"50%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",boxShadow:\"0 2px 6px rgba(0, 0, 0, 0.15)\",border:\"none\",cursor:\"pointer\",transition:\"opacity 0.3s ease, transform 0.2s ease\"};const leftButtonStyle={...scrollButtonBaseStyle,left:\"12px\",opacity:canScrollLeft&&showScrollIndicators?1:0,pointerEvents:canScrollLeft&&showScrollIndicators?\"auto\":\"none\"};const rightButtonStyle={...scrollButtonBaseStyle,right:\"12px\",opacity:canScrollRight&&showScrollIndicators?1:0,pointerEvents:canScrollRight&&showScrollIndicators?\"auto\":\"none\"};// Set responsive values based on device type\nconst getThumbnailWidth=()=>{switch(deviceType){case\"mobile\":return\"160px\";case\"tablet\":return\"180px\";default:return\"200px\";}};const getGapSize=()=>{switch(deviceType){case\"mobile\":return\"8px\";case\"tablet\":return\"12px\";default:return\"16px\";}};const thumbnailRowStyle={display:\"flex\",gap:getGapSize()};const getThumbnailStyle=isActive=>({flexShrink:0,width:getThumbnailWidth(),cursor:\"pointer\",transition:\"all 0.2s\",transform:isActive?\"scale(1.05)\":\"scale(1)\",borderRadius:\"6px\",border:isActive?\"2px solid #3b82f6\":\"none\",boxShadow:isActive?\"0 4px 8px rgba(59, 130, 246, 0.25)\":\"0 2px 4px rgba(0, 0, 0, 0.05)\",marginBottom:\"0\"});const thumbnailImageContainerStyle={position:\"relative\",paddingBottom:\"56.25%\",backgroundColor:\"#e5e7eb\",borderRadius:\"6px\",overflow:\"hidden\"};const thumbnailImageStyle={position:\"absolute\",inset:0,width:\"100%\",height:\"100%\",objectFit:\"cover\"};const thumbnailOverlayStyle={position:\"absolute\",inset:0,backgroundColor:\"rgba(0, 0, 0, 0.2)\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\"};const playIconStyle={width:\"40px\",height:\"40px\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderRadius:\"50%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\"};// Remove the thumbnail titles by removing this style\nconst thumbnailTitleStyle=null;const loadingItemStyle={flexShrink:0,width:getThumbnailWidth(),animation:\"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite\"};const noVideosStyle={backgroundColor:\"#f3f4f6\",padding:\"16px\",borderRadius:\"8px\",textAlign:\"center\",color:\"#6b7280\"};// Removed scroll hint style\nreturn /*#__PURE__*/_jsxs(\"div\",{style:containerStyle,children:[playlistTitle&&playlistTitle.trim()!==\"\"&&/*#__PURE__*/_jsx(\"h2\",{style:titleStyle,children:playlistTitle}),/*#__PURE__*/_jsx(\"div\",{style:videoContainerStyle,children:/*#__PURE__*/_jsx(\"div\",{style:aspectRatioStyle,children:/*#__PURE__*/_jsx(\"div\",{ref:playerContainerRef,style:playerStyle})})}),/*#__PURE__*/_jsx(\"div\",{style:{marginTop:\"24px\",marginBottom:\"16px\"},children:/*#__PURE__*/_jsxs(\"div\",{style:scrollContainerWrapperStyle,children:[showScrollIndicators&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{style:leftGradientStyle}),/*#__PURE__*/_jsx(\"div\",{style:rightGradientStyle}),/*#__PURE__*/_jsx(\"button\",{style:leftButtonStyle,onClick:()=>scrollThumbnails(\"left\"),\"aria-label\":\"Scroll left\",children:/*#__PURE__*/_jsx(\"svg\",{width:\"12\",height:\"12\",viewBox:\"0 0 24 24\",fill:\"none\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M15 18L9 12L15 6\",stroke:\"white\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})})}),/*#__PURE__*/_jsx(\"button\",{style:rightButtonStyle,onClick:()=>scrollThumbnails(\"right\"),\"aria-label\":\"Scroll right\",children:/*#__PURE__*/_jsx(\"svg\",{width:\"12\",height:\"12\",viewBox:\"0 0 24 24\",fill:\"none\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M9 6L15 12L9 18\",stroke:\"white\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})})})]}),loading?/*#__PURE__*/_jsx(\"div\",{style:thumbnailsContainerStyle,className:\"yt-playlist-scrollbar\",children:/*#__PURE__*/_jsx(\"div\",{style:thumbnailRowStyle,children:[...Array(5)].map((_,i)=>/*#__PURE__*/_jsx(\"div\",{style:loadingItemStyle,children:/*#__PURE__*/_jsx(\"div\",{style:thumbnailImageContainerStyle})},i))})}):videos.length===0?/*#__PURE__*/_jsx(\"div\",{style:noVideosStyle,children:/*#__PURE__*/_jsx(\"p\",{children:\"No videos found in this playlist\"})}):/*#__PURE__*/_jsx(\"div\",{ref:thumbnailsContainerRef,style:thumbnailsContainerStyle,className:\"yt-playlist-scrollbar\",children:/*#__PURE__*/_jsx(\"div\",{style:thumbnailRowStyle,children:videos.map((video,index)=>/*#__PURE__*/_jsx(\"div\",{style:getThumbnailStyle(currentIndex===index),onClick:()=>handleVideoSelect(index),children:/*#__PURE__*/_jsxs(\"div\",{style:thumbnailImageContainerStyle,children:[/*#__PURE__*/_jsx(\"img\",{src:`https://i.ytimg.com/vi/${video.id}/mqdefault.jpg`,alt:video.title,style:thumbnailImageStyle}),/*#__PURE__*/_jsx(\"div\",{style:thumbnailOverlayStyle,children:/*#__PURE__*/_jsx(\"div\",{style:playIconStyle,children:/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",fill:\"#dc2626\",width:\"24\",height:\"24\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M8 5v14l11-7z\"})})})})]})},video.id||index))})})]})})]});}// Define scrollbar styles outside of component for proper scope\nconst scrollbarHideStyle=`\n  .yt-playlist-scrollbar::-webkit-scrollbar {\n    height: 8px;\n  }\n  \n  .yt-playlist-scrollbar::-webkit-scrollbar-track {\n    background: #f1f5f9;\n    border-radius: 4px;\n  }\n  \n  .yt-playlist-scrollbar::-webkit-scrollbar-thumb {\n    background-color: #cbd5e1;\n    border-radius: 4px;\n  }\n  \n  @keyframes pulse {\n    0%, 100% {\n      opacity: 1;\n    }\n    50% {\n      opacity: .5;\n    }\n  }\n`;// Main export for Framer\nexport default function YouTubePlaylistPlayerFramer(props){return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:scrollbarHideStyle}),/*#__PURE__*/_jsx(YouTubePlaylistPlayer,{...props})]});}// Add Framer property controls\naddPropertyControls(YouTubePlaylistPlayerFramer,{deviceType:{title:\"Device Type\",type:ControlType.Enum,options:[\"desktop\",\"tablet\",\"mobile\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],defaultValue:\"desktop\"},playlistId:{title:\"Playlist ID\",type:ControlType.String,defaultValue:\"PLmXxqSJJq-yUfrjvKe5c5LX_VpVGUeHSp\",placeholder:\"Enter YouTube playlist ID\"},playlistTitle:{title:\"Custom Title\",type:ControlType.String,defaultValue:\"\",placeholder:\"Enter playlist title (leave empty for no title)\"},titleSize:{title:\"Title Size\",type:ControlType.Number,defaultValue:24,min:12,max:48,step:1,displayStepper:true},titleWeight:{title:\"Title Weight\",type:ControlType.Enum,options:[300,400,500,600,700,800],optionTitles:[\"Light\",\"Regular\",\"Medium\",\"Semi-Bold\",\"Bold\",\"Extra-Bold\"],defaultValue:600},titleColor:{title:\"Title Color\",type:ControlType.Color,defaultValue:\"#1f2937\"},showScrollIndicators:{title:\"Scroll Indicators\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"YouTubePlaylistPlayerFramer\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BipolarNoKey.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AnimatedNumberCounter from\"https://framerusercontent.com/modules/fONf9xpEnRB5fhZ36jxV/PFQw4hQn5StRPC8BS3iZ/NumberAnimator.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import{Icon as Hero1}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import Newsletter from\"#framer/local/canvasComponent/jK0vP92l5/jK0vP92l5.js\";import Footer from\"#framer/local/canvasComponent/KNMzQSHo_/KNMzQSHo_.js\";import LoadMore from\"#framer/local/canvasComponent/MRESCmdTI/MRESCmdTI.js\";import Navigation3 from\"#framer/local/canvasComponent/o95UEGztn/o95UEGztn.js\";import LoadMore2 from\"#framer/local/canvasComponent/rLdDiQzHx/rLdDiQzHx.js\";import AccordionAccordion3 from\"#framer/local/canvasComponent/vh4ztMvfu/vh4ztMvfu.js\";import Banner2 from\"#framer/local/canvasComponent/vUW4t1HjG/vUW4t1HjG.js\";import YouTubePlaylistPlayerFramer from\"#framer/local/codeFile/qeBG5Os/BipolarNoKey.js\";import News from\"#framer/local/collection/E2KQ2ZR16/E2KQ2ZR16.js\";import Blog from\"#framer/local/collection/Q8AYnmjJX/Q8AYnmjJX.js\";import*as sharedStyle1 from\"#framer/local/css/BewBxROAR/BewBxROAR.js\";import*as sharedStyle from\"#framer/local/css/eUzPXhCPw/eUzPXhCPw.js\";import*as sharedStyle9 from\"#framer/local/css/g2CY9Kegr/g2CY9Kegr.js\";import*as sharedStyle3 from\"#framer/local/css/GdOtvM3Uf/GdOtvM3Uf.js\";import*as sharedStyle6 from\"#framer/local/css/iz5PwDlED/iz5PwDlED.js\";import*as sharedStyle7 from\"#framer/local/css/K1PUiZubS/K1PUiZubS.js\";import*as sharedStyle4 from\"#framer/local/css/mqZl1qGnT/mqZl1qGnT.js\";import*as sharedStyle2 from\"#framer/local/css/xc_NgQW1H/xc_NgQW1H.js\";import*as sharedStyle5 from\"#framer/local/css/XVvscF8jF/XVvscF8jF.js\";import*as sharedStyle8 from\"#framer/local/css/YcXqzoJNu/YcXqzoJNu.js\";import metadataProvider from\"#framer/local/webPageMetadata/gdhhBaSMc/gdhhBaSMc.js\";const Banner2Fonts=getFonts(Banner2);const Navigation3Fonts=getFonts(Navigation3);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const AccordionAccordion3Fonts=getFonts(AccordionAccordion3);const AnimatedNumberCounterFonts=getFonts(AnimatedNumberCounter);const HeroFonts=getFonts(Hero);const SlideshowFonts=getFonts(Slideshow);const LoadMoreFonts=getFonts(LoadMore);const LoadMore2Fonts=getFonts(LoadMore2);const YouTubePlaylistPlayerFramerFonts=getFonts(YouTubePlaylistPlayerFramer);const Hero1Fonts=getFonts(Hero1);const NewsletterFonts=getFonts(Newsletter);const FooterFonts=getFonts(Footer);const breakpoints={DPEUyTGVw:\"(max-width: 809px)\",foYvvwRAb:\"(min-width: 810px) and (max-width: 1199px)\",sgxsXCAPA:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-RGTB7\";const variantClassNames={DPEUyTGVw:\"framer-v-84g25t\",foYvvwRAb:\"framer-v-1bijttt\",sgxsXCAPA:\"framer-v-171s2n2\"};const transition1={damping:30,delay:.2,mass:1,stiffness:100,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:32};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:.05,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition3};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const loaderVariants=(repeaterState,variants,currentVariant)=>{if(repeaterState.currentPage>=repeaterState.totalPages)return variants.disabled??currentVariant;if(repeaterState.isLoading)return variants.loading??currentVariant;return currentVariant;};const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"xSTsu5jkd\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const QueryData2=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"BMWwYAiTx\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"sgxsXCAPA\",Phone:\"DPEUyTGVw\",Tablet:\"foYvvwRAb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"sgxsXCAPA\"};};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,d0hP9ziffmmFpYDRSp,xIuIOIUnEmmFpYDRSp,FQ8Q8WVKnmmFpYDRSp,SzXyRj9UNMus6qV5nP,K4uDDF8uWmmFpYDRSp,mMIHckbLgmmFpYDRSp,idmmFpYDRSp,d0hP9ziffxSTsu5jkd,xIuIOIUnExSTsu5jkd,u7XBDMXZUxSTsu5jkd,mMIHckbLgxSTsu5jkd,SzXyRj9UNoIaES_x26,idxSTsu5jkd,O5XejjypjBMWwYAiTx,Z_UeVuguZBMWwYAiTx,vOHzwFdw_BMWwYAiTx,Mxu4OfS88BMWwYAiTx,idBMWwYAiTx,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const Wld3NDzSj1b86s49=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{loadMore();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"VCknjC0zj\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"DPEUyTGVw\")return false;return true;};const elementId1=useRouteElementId(\"SfpOIi0lF\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"jsIteLmdm\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"EO57tBs11\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"iDBAAd8Hn\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"de3vTikB3\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"uikHFbT8J\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"eKqtD7L7Z\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"ay661TDXH\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"z76AEws9l\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"wBklrs3Ch\");const ref11=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(SzXyRj9UNMus6qV5nP,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const textContent1=toDateString(SzXyRj9UNoIaES_x26,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const elementId11=useRouteElementId(\"tkvS8PgG_\");const ref12=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"foYvvwRAb\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"foYvvwRAb\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"sgxsXCAPA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-171s2n2\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{y:(componentViewport?.y||0)+0+0},foYvvwRAb:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8xgu8e-container\",nodeId:\"Lzi6Yhmu8\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{variant:\"WkUoa3FHt\"},foYvvwRAb:{variant:\"REB5fj4km\"}},children:/*#__PURE__*/_jsx(Banner2,{height:\"100%\",id:\"Lzi6Yhmu8\",layoutId:\"Lzi6Yhmu8\",style:{height:\"100%\",width:\"100%\"},variant:\"f_6K1wIN4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{y:(componentViewport?.y||0)+0+29},foYvvwRAb:{y:(componentViewport?.y||0)+0+29}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ymkq97-container\",nodeId:\"PRWDfqbB6\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{variant:\"ePOTQVyjG\"},foYvvwRAb:{variant:\"YVE8jfVPB\"}},children:/*#__PURE__*/_jsx(Navigation3,{height:\"100%\",id:\"PRWDfqbB6\",layoutId:\"PRWDfqbB6\",style:{width:\"100%\"},variant:\"C6zQ2_5K1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1262uqk\",\"data-framer-name\":\"Timeline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+99+53),pixelHeight:1080,pixelWidth:1080,sizes:\"327px\",src:\"https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png\",srcSet:\"https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png 1080w\"}},foYvvwRAb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+99+111),pixelHeight:1080,pixelWidth:1080,sizes:\"582px\",src:\"https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png\",srcSet:\"https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"582px\",src:\"https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png\",srcSet:\"https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ntkFlU0jwE8bCVsUbGZxAm1stc.png 1080w\"},className:\"framer-1pp2acb\"})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1i9dkga\",\"data-framer-appear-id\":\"1i9dkga\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o59m1i\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2izcz7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1levbp3\",\"data-styles-preset\":\"BewBxROAR\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Bipolar Disorder \",/*#__PURE__*/_jsx(\"br\",{}),\"Resource Hub\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1uydsif\",\"data-styles-preset\":\"eUzPXhCPw\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Bipolar Disorder \",/*#__PURE__*/_jsx(\"br\",{}),\"Resource Hub\"]})}),className:\"framer-1gpjv33\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-to5trv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8zdvmb\",\"data-styles-preset\":\"xc_NgQW1H\",children:\"Metabolic Psychiatry offers a new treatment approach for Bipolar Disorder\\xa0\"})}),className:\"framer-1xjrn2y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ed4dr0\",\"data-framer-name\":\"Movie\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10jdcg9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"q3of4fHSm\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,topLeftRadius:20,topRightRadius:20}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,height:\"100%\",id:\"q3of4fHSm\",isMixedBorderRadius:false,isRed:false,layoutId:\"q3of4fHSm\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:30,topRightRadius:30,url:\"https://youtu.be/PsqNeHOwjkY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-uneyqe\",\"data-framer-appear-id\":\"uneyqe\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ah43zw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"What is Bipolar Disorder?\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1levbp3\",\"data-styles-preset\":\"BewBxROAR\",style:{\"--framer-text-alignment\":\"left\"},children:\"What is Bipolar Disorder?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",style:{\"--framer-text-alignment\":\"left\"},children:\"What is Bipolar Disorder?\"})}),className:\"framer-1ncnp2j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lfr6x1\",\"data-styles-preset\":\"mqZl1qGnT\",children:\"Bipolar disorder is a psychiatric condition characterized by extreme mood swings that include emotional highs (mania or hypomania) and lows (depression). Symptoms can include euphoria, increased energy, or irritability during manic episodes, while depressive episodes may bring feelings of sadness, hopelessness, and low energy. Bipolar I involves full manic episodes, often requiring hospitalization, while Bipolar II features milder hypomania and severe depression. These mood shifts can profoundly affect daily life, relationships, and functioning.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lfr6x1\",\"data-styles-preset\":\"mqZl1qGnT\",children:\"Bipolar disorder affects between two and four percent of the population worldwide, yet research has been tragically underfunded relative to other psychiatric conditions. Traditional treatments include medication and therapy, but emerging metabolic strategies, such as ketogenic therapy, are showing promise.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lfr6x1\",\"data-styles-preset\":\"mqZl1qGnT\",children:\"Although most sufferers struggle to maintain stable work and social lives, those living with bipolar disorder have paradoxically made outsized contributions to science, academia, government and the arts. Though often viewed as a lifelong illness, the Baszucki family has witnessed firsthand that full recovery is possible through evidence-based metabolic interventions that stabilize brain networks.\"})]}),className:\"framer-1ojms0f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-6tgkgt\",\"data-styles-preset\":\"XVvscF8jF\",children:\"Metabolic and Ketogenic Therapies for Bipolar Disorder\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",style:{\"--framer-text-alignment\":\"left\"},children:\"Metabolic and Ketogenic Therapies for Bipolar Disorder\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Metabolic and Ketogenic Therapies for \",/*#__PURE__*/_jsx(\"br\",{}),\"Bipolar Disorder\"]})}),className:\"framer-flvsp6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8zdvmb\",\"data-styles-preset\":\"xc_NgQW1H\",children:\"This hub brings together the history, published research, active clinical trials, clinician insights and real stories of healing.\"})}),className:\"framer-1ihr1tx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q4ti5y\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ibqvm5\",\"data-framer-name\":\"Timeline wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gy5l7j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"Evidence for Ketogenic Therapy in Bipolar Disorder\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1levbp3\",\"data-styles-preset\":\"BewBxROAR\",style:{\"--framer-text-alignment\":\"left\"},children:\"Evidence for Ketogenic Therapy in Bipolar Disorder\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uydsif\",\"data-styles-preset\":\"eUzPXhCPw\",style:{\"--framer-text-alignment\":\"left\"},children:\"Evidence for Ketogenic Therapy in Bipolar Disorder\"})}),className:\"framer-33xft1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",children:\"Tracing key studies, groundbreaking discoveries, and the expanding scientific case for metabolic psychiatry and ketogenic therapy for bipolar disorder.\"})}),fonts:[\"Inter\"]},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lfr6x1\",\"data-styles-preset\":\"mqZl1qGnT\",children:\"Tracing key studies, groundbreaking discoveries, and the expanding scientific case for metabolic psychiatry and ketogenic therapy for bipolar disorder.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-322590da-436f-43b2-87dd-e05eb10c3396, rgb(0, 0, 0))\"},children:\"Tracing key studies, groundbreaking discoveries, and the expanding scientific case for metabolic psychiatry and ketogenic therapy for bipolar disorder.\"})}),className:\"framer-1061epb\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kc8tha\",\"data-framer-name\":\"Timeline row\",id:elementId,ref:ref1,children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y6zm2j hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"1921\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"1921\"})}),className:\"framer-1vf6ci0\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-110z9po\",\"data-framer-name\":\"Progressbar wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u109jf\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wvw0c1\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-196tddi\",\"data-framer-name\":\"Progress bar\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-znwd89\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dmhj0k\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"1921\"})}),className:\"framer-1pzelot\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"The Ketogenic Diet is Discovered for Pediatric Epilepsy\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"The Ketogenic Diet is Discovered for Pediatric Epilepsy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"The Ketogenic Diet is Discovered for Pediatric Epilepsy\"})}),className:\"framer-ti1bpf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+182+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+249+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-krp054-container\",nodeId:\"zQ2x2ZWot\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"zQ2x2ZWot\",layoutId:\"zQ2x2ZWot\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"1921\"}),\": \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://pubmed.ncbi.nlm.nih.gov/14283310/\",motionChild:true,nodeId:\"zQ2x2ZWot\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"The effects of ketonemia on the course of epilepsy\"})})]})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m8n4k1\",\"data-framer-name\":\"Timeline row\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-swbal9\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zq9kud\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"1965\"})}),className:\"framer-zu4es4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"First Ketogenic Diet Exploration for Serious Mental Illness\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"First Ketogenic Diet Exploration for Serious Mental Illness\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"First Ketogenic Diet Exploration for Serious Mental Illness\"})}),className:\"framer-r3xfoe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+478.8+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+545.8+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18xhb3u-container\",nodeId:\"ypmi6DL4W\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"ypmi6DL4W\",layoutId:\"ypmi6DL4W\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"1965: \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://pubmed.ncbi.nlm.nih.gov/14283310/\",motionChild:true,nodeId:\"ypmi6DL4W\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Pilot study of the Ketogenic diet in Schizophrenia\"})})]})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yrb7ny\",\"data-framer-name\":\"Progressbar wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gk98r1\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m03idk\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bobtdo\",\"data-framer-name\":\"Progress bar\"})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o5g9iy hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"1965\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"1965\"})}),className:\"framer-1rejqlw\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g0wcsb\",\"data-framer-name\":\"Timeline row\",id:elementId2,ref:ref3,children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ikozbc hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"1966-2019\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"1966-2019\"})}),className:\"framer-bvkvlv\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18fsqhm\",\"data-framer-name\":\"Progressbar wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mkwjjk\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uh412u\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-njshwb\",\"data-framer-name\":\"Progress bar\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nijjdi\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14zuprv\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"1966 - 2019\"})}),className:\"framer-8vc8u0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Metabolic Mechanistic Explorations\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Metabolic Mechanistic Explorations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"Metabolic Mechanistic Explorations\"})}),className:\"framer-ucea2f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+775.6+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+842.6+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-60diuk-container\",nodeId:\"okTiXN2vQ\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"okTiXN2vQ\",layoutId:\"okTiXN2vQ\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"December 2001\"}),\": \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.sciencedirect.com/science/article/abs/pii/S030698770191446X?via%3Dihub\",motionChild:true,nodeId:\"okTiXN2vQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"The Ketogenic diet may have mood-stabilizing properties\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"May 2011\"}),\": \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://pubmed.ncbi.nlm.nih.gov/20833242/\",motionChild:true,nodeId:\"okTiXN2vQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Mitochondrial dysfunction and pathology in bipolar disorder and schizophrenia\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"April 2012:\"}),\" \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tandfonline.com/doi/abs/10.1080/13554794.2012.690421\",motionChild:true,nodeId:\"okTiXN2vQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"The Ketogenic diet for type II Bipolar disorder\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsxs(\"strong\",{children:[\"February 2016: \",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.sciencedirect.com/science/article/abs/pii/S0165032716302737?via%3Dihub\",motionChild:true,nodeId:\"okTiXN2vQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Medical comorbidity in bipolar disorder: The link with metabolic-inflammatory systems\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsxs(\"strong\",{children:[\"May 2018:\",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.sciencedirect.com/science/article/abs/pii/S0149763418303762\",motionChild:true,nodeId:\"okTiXN2vQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic diet as a metabolic therapy for mood disorders: evidence and developments\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"October 2018: \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.neurotherapeuticsjournal.org/article/S1878-7479(23)01029-2/fulltext\",motionChild:true,nodeId:\"okTiXN2vQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic Diets for Adult Neurological Disorders\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"March 2019:\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.sciencedirect.com/science/article/abs/pii/S1876201817306184?via%3Dihub\",motionChild:true,nodeId:\"okTiXN2vQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"The influence of ketogenic diets on mood stability in bipolar disorder\"})})]})]})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1prd8im\",\"data-framer-name\":\"Timeline row\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sjcgah\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u9arvt\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"July 4th 2019\"})}),className:\"framer-91kctm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Keto Emerges as the Top Bipolar Diet Option Online\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Keto Emerges as the Top Bipolar Diet Option Online\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"Keto Emerges as the Top Bipolar Diet Option Online\"})}),className:\"framer-o2mimm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+1072.4+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+1139.4+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hv73vx-container\",nodeId:\"XtQuvGitL\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"XtQuvGitL\",layoutId:\"XtQuvGitL\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"July 2019\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://pubmed.ncbi.nlm.nih.gov/31530294/\",motionChild:true,nodeId:\"XtQuvGitL\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketosis and bipolar disorder: controlled analytic study of online reports\"})})]})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gpxse4\",\"data-framer-name\":\"Progressbar wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l17w61\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1767d2o\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-phakkp\",\"data-framer-name\":\"Progress bar\"})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18tgylo hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xwno82\",\"data-framer-name\":\"Timeline row\",id:elementId4,ref:ref5,children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-51zy1r hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"2020-2022\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"2020-2022\"})}),className:\"framer-8wms0v\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yl244m\",\"data-framer-name\":\"Progressbar wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uyf8oe\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15zn4\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mog2jp\",\"data-framer-name\":\"Progress bar\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dnpsfe\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-inhq4d\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"2020 - 2022\"})}),className:\"framer-1gvx69a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Reviews of Evidence\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Reviews of Evidence\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"Reviews of Evidence\"})}),className:\"framer-12bsoyx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+1369.2+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+1436.2+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-122vwzu-container\",nodeId:\"zxhlLnC3U\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"zxhlLnC3U\",layoutId:\"zxhlLnC3U\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsxs(\"strong\",{children:[\"June 2020: \",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(Link,{href:\"https://pmc.ncbi.nlm.nih.gov/articles/PMC7387764/\",motionChild:true,nodeId:\"zxhlLnC3U\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic Therapy in Serious Mental Illness: Emerging Evidence\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"July 2020:\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.sciencedirect.com/science/article/abs/pii/S0278584619306530\",motionChild:true,nodeId:\"zxhlLnC3U\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic therapy in neurodegenerative and psychiatric disorders: From mice to men\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"October 2020: \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://pubmed.ncbi.nlm.nih.gov/32773571/\",motionChild:true,nodeId:\"zxhlLnC3U\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic diet as a metabolic treatment for mental illness\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"May 2021: \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.frontiersin.org/journals/psychiatry/articles/10.3389/fpsyt.2021.636174/full\",motionChild:true,nodeId:\"zxhlLnC3U\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Insulin Resistance and Blood-Brain Barrier Dysfunction Underlie Neuroprogression in Bipolar Disorder\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"October 2022:\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://pubmed.ncbi.nlm.nih.gov/36483840/\",motionChild:true,nodeId:\"zxhlLnC3U\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"The Role of Ketogenic Metabolic Therapy on the Brain in Serious Mental Illness: A Review\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"January 2023:\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.sciencedirect.com/science/article/pii/S2666915322001494?via%3Dihub\",motionChild:true,nodeId:\"zxhlLnC3U\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic diet as a metabolic therapy for bipolar disorder: Clinical developments\"})})]})]})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xvr8de\",\"data-framer-name\":\"Timeline row\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wlqg4d\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlmw1t\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"July 2022\"})}),className:\"framer-wmpbvb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Hospitalized Bipolar Patients in France Recover with Keto\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Hospitalized Bipolar Patients in France Recover with Keto\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"Hospitalized Bipolar Patients in France Recover with Keto\"})}),className:\"framer-ody3fi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+1666+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+1733+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xhxmuh-container\",nodeId:\"md9t0l3lC\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"md9t0l3lC\",layoutId:\"md9t0l3lC\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"July 2022\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://pmc.ncbi.nlm.nih.gov/articles/PMC9299263/#s5\",motionChild:true,nodeId:\"md9t0l3lC\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"The Ketogenic Diet for Refractory Mental Illness: A Retrospective Analysis of 31 Inpatients\"})})]})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eysho\",\"data-framer-name\":\"Progressbar wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-70ei7q\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16z6tko\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lglqq8\",\"data-framer-name\":\"Progress bar\"})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17thtm7 hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ki313\",\"data-framer-name\":\"Timeline row\",id:elementId6,ref:ref7,children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1akl6bn hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"2024\"})}),className:\"framer-dnz80p\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-igv23y\",\"data-framer-name\":\"Progressbar wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18gzhw6\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-grvtx8\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rcyx4m\",\"data-framer-name\":\"Progress bar\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m8wzb6\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3vf20t\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"May 2024\"})}),className:\"framer-b5ym5w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"The Landmark Stanford Keto Trial for Serious Mental Illness\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"The Landmark Stanford Keto Trial for Serious Mental Illness\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"The Landmark Stanford Keto Trial for Serious Mental Illness\"})}),className:\"framer-1u2wcvm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+1962.8+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+2029.8+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-171rmxj-container\",nodeId:\"e2hnFOUZ9\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"e2hnFOUZ9\",layoutId:\"e2hnFOUZ9\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsxs(\"strong\",{children:[\"May 2024\",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.sciencedirect.com/science/article/pii/S0165178124001513?via%3Dihub\",motionChild:true,nodeId:\"e2hnFOUZ9\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic Diet Intervention on Metabolic and Psychiatric Health in Bipolar and Schizophrenia: A Pilot Trial\"})})]})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1buom5z\",\"data-framer-name\":\"Timeline row\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n1f2n3\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xuvt0b\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"August 2024\"})}),className:\"framer-es28tx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Recovery from a \u201CTreatment Resistant\u201D case of Bipolar Depression\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Recovery from a \u201CTreatment Resistant\u201D case of Bipolar Depression\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"Recovery from a \u201CTreatment Resistant\u201D case of Bipolar Depression\"})}),className:\"framer-em4wen\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+2259.6+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+2326.6+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ctb7ln-container\",nodeId:\"E7QZJrQME\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"E7QZJrQME\",layoutId:\"E7QZJrQME\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsxs(\"strong\",{children:[\"August 2024\",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.frontiersin.org/journals/nutrition/articles/10.3389/fnut.2024.1394679/full\",motionChild:true,nodeId:\"E7QZJrQME\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Retrospective Case Study: Ketogenic Metabolic Therapy in the Effective Management of Treatment-Resistant Depressive Symptoms in Bipolar Disorder\"})})]})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19o1sng\",\"data-framer-name\":\"Progressbar wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-da6quf\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lbums\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6hr5qc\",\"data-framer-name\":\"Progress bar\"})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l89oif hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ut1fe\",\"data-framer-name\":\"Timeline row\",id:elementId8,ref:ref9,children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qsu76x hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"2025\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.1)\"},children:\"2025\"})}),className:\"framer-sb3pp3\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sqdao9\",\"data-framer-name\":\"Progressbar wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hzmwqk\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jv2jjz\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yrj6i6\",\"data-framer-name\":\"Progress bar\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fnv2wl\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17do4vc\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"February 2025\"})}),className:\"framer-1s63rhw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Keto Drives Two Recoveries from Schizoaffective Disorder\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Keto Drives Two Recoveries from Schizoaffective Disorder\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"Keto Drives Two Recoveries from Schizoaffective Disorder\"})}),className:\"framer-fxi4tr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+2556.4+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+2623.4+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-epb64e-container\",nodeId:\"zyOMLltgK\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"zyOMLltgK\",layoutId:\"zyOMLltgK\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsxs(\"strong\",{children:[\"February 2025\",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(Link,{href:\"https://pubmed.ncbi.nlm.nih.gov/39990610/\",motionChild:true,nodeId:\"zyOMLltgK\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic metabolic therapy for schizoaffective disorder: a retrospective case series of psychotic symptom remission and mood recovery\"})})]})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2s1ibt\",\"data-framer-name\":\"Timeline row\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref10,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6mon9s\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uu4lbb\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"February 2025\"})}),className:\"framer-1f3t0ov\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"The Landmark European Keto for Bipolar Trial\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"The Landmark European Keto for Bipolar Trial\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"The Landmark European Keto for Bipolar Trial\"})}),className:\"framer-lu9aqa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+2853.2+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+2920.2+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ryo3wx-container\",nodeId:\"qdEPrOQRx\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"qdEPrOQRx\",layoutId:\"qdEPrOQRx\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"February 2025\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.cambridge.org/core/journals/bjpsych-open/article/pilot-study-of-a-ketogenic-diet-in-bipolar-disorder-clinical-metabolic-and-magnetic-resonance-spectroscopy-findings/7AF8E2ECB765A65B03C97F770BB90BC7\",motionChild:true,nodeId:\"qdEPrOQRx\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"A pilot study of a Ketogenic diet in bipolar disorder: clinical, metabolic and magnetic resonance spectroscopy findings\"})})]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsxs(\"strong\",{children:[\"Supporting Publications\",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(Link,{href:\"https://pubmed.ncbi.nlm.nih.gov/37814952/\",motionChild:true,nodeId:\"qdEPrOQRx\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Pilot study of a ketogenic diet in bipolar disorder\"})})]}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:\"https://www.medrxiv.org/content/10.1101/2024.05.15.24307102v2\",motionChild:true,nodeId:\"qdEPrOQRx\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Pilot study of a ketogenic diet in bipolar disorder: a process evaluation\"})})})]})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cxwuiw\",\"data-framer-name\":\"Progressbar wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k75uyn\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref10,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y5u58p\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pqm07i\",\"data-framer-name\":\"Progress bar\"})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uzo7ki hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gyp9o2\",\"data-framer-name\":\"Timeline row\",id:elementId10,ref:ref11,children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iglmnc hidden-84g25t\",\"data-framer-name\":\"Blank\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11p5yav\",\"data-framer-name\":\"Progressbar wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wnc55q\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref11,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b5mhqj\",\"data-framer-name\":\"Dot\",style:{transformPerspective:1200}})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{__framer__targets:undefined},foYvvwRAb:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref11,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d3efkk\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kzmjlf\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gh1ltz\",\"data-styles-preset\":\"K1PUiZubS\",children:\"2025 - Beyond\"})}),className:\"framer-1u1wk1t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Studies Currently Underway\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ihfdip\",\"data-styles-preset\":\"YcXqzoJNu\",children:\"Studies Currently Underway\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"Studies Currently Underway\"})}),className:\"framer-1mwev8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 50px, 1px), 610px) - 30px)`,y:(componentViewport?.y||0)+0+99+0+1352.4+0+0+30+3150+0+0+186.8},foYvvwRAb:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 150px) / 2, 1px), 610px)`,y:(componentViewport?.y||0)+0+99+0+1662+4+0+50+3217+0+0+186.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 190px) / 2, 1px), 610px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h1nbgg-container\",nodeId:\"awm02yRB0\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",whileHover:animation4,children:/*#__PURE__*/_jsx(AccordionAccordion3,{height:\"100%\",id:\"awm02yRB0\",layoutId:\"awm02yRB0\",style:{width:\"100%\"},variant:\"ynhTFtvAM\",W88zB8mIG:\"Trials & Studies\",width:\"100%\",wpkm0Au7d:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Active Clinical Trials:\\xa0\"})}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://clinicaltrials.gov/study/NCT06221852\",motionChild:true,nodeId:\"awm02yRB0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic and Nutritional Interventions for First Episode Bipolar Disorder\"})}),\" - Mclean Hospital\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.anzctr.org.au/TrialSearch.aspx#&&conditionCode=&dateOfRegistrationFrom=&interventionDescription=&interventionCodeOperator=OR&primarySponsorType=&gender=&distance=&postcode=&pageSize=20&ageGroup=&recruitmentCountryOperator=OR&recruitmentRegion=&ethicsReview=&countryOfRecruitment=&registry=&searchTxt=ACTRN12623000854639&studyType=&allocationToIntervention=&dateOfRegistrationTo=&recruitmentStatus=&interventionCode=&healthCondition=&healthyVolunteers=&page=1&conditionCategory=&fundingSource=&trialStartDateTo=&trialStartDateFrom=&phase=\",motionChild:true,nodeId:\"awm02yRB0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"The Effects of Diet on Metabolic and Mental Health Outcomes Measures in Bipolar Disorder and Schizophrenia: A Randomized Controlled Clinical Trial\"})}),\" - James Cook University\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://clinicaltrials.gov/study/NCT06081426?locStr=Pittsburgh,%20PA&country=United%20States&state=Pennsylvania&city=Pittsburgh&distance=50&cond=Bipolar%20Disorder&aggFilters=status:not%20rec&rank=1\",motionChild:true,nodeId:\"awm02yRB0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Examining Neurobiological Mechanisms Underlying the Therapeutic Effect of the Ketogenic Diet in Bipolar Disorder (BD)\"})}),\" - University of Pittsburgh\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.businesswire.com/news/home/20250228253531/en/Precision-Nutrition-Takes-Center-Stage-in-New-Ketogenic-Therapy-Trial-and-Service\",motionChild:true,nodeId:\"awm02yRB0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"16-Week Ketogenic Intervention for Bipolar Depression: Roadmap Clinical Trial Driving Clinical Implementation\"})}),\" - Mayo Clinic\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.businesswire.com/news/home/20250309908138/en/Baszucki-Group-Announces-Two-Research-Initiatives-for-Youth-with-Bipolar\",motionChild:true,nodeId:\"awm02yRB0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"A Ketogenic Diet Approach to Bipolar Disorder in Adolescents\"})}),\" - UCLA, University of Cincinnati, University of Pittsburgh, University of Colorado\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://clinicaltrials.gov/study/NCT05268809?intr=Ketogenic%20Diet&aggFilters=status:rec&page=1&rank=3\",motionChild:true,nodeId:\"awm02yRB0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Can Neural Network Instability in Schizophrenia be Improved With a Very Low Carbohydrate Ketogenic Diet?\"})}),\" - Northern California Institute of Research and Education\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://clinicaltrials.gov/study/NCT06748950\",motionChild:true,nodeId:\"awm02yRB0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic Diet Intervention in Schizophrenia, Bipolar Disorder, Major Depressive Disorder: Deep Omic Profiling\"})}),\" - Stanford University\"]}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Additional Active Studies (not clinical trials):\\xa0\"})}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://osf.io/preprints/psyarxiv/6kcdx_v1\",motionChild:true,nodeId:\"awm02yRB0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Bipolar Disorder and Ketogenic Diet A Survey of The Lived Experience of Over 100 Patients\"})}),\" - Edinburgh University\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.businesswire.com/news/home/20250309908138/en/Baszucki-Group-Announces-Two-Research-Initiatives-for-Youth-with-Bipolar\",motionChild:true,nodeId:\"awm02yRB0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ketogenic Therapy in Action: A Pilot program to Collect Case Study Data on the use of a Ketogenic Diet to Treat Bipolar Disorder in Children Aged 8-17\"})}),\" - Children's Mental Health Resource Center\"]})]})})})})})]})})]})]})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-6kv4jv\",\"data-framer-name\":\"Header Image\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{\"data-framer-name\":\"Phone\"},foYvvwRAb:{\"data-framer-name\":\"Tablet\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5v6z2\",\"data-framer-name\":\"Metrics 10\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xk36vc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tzsak1\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",style:{\"--framer-text-alignment\":\"center\"},children:\"From Science to Success\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uydsif\",\"data-styles-preset\":\"eUzPXhCPw\",children:\"From Science to Success\"})}),className:\"framer-1gbznej\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",style:{\"--framer-text-alignment\":\"center\"},children:\"Metabolic Psychiatry is having a growing impact on bipolar disorder treatment. \\xa0With more clinicians engaged, studies underway,\\xa0 and lives transformed, the momentum continues to build.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lfr6x1\",\"data-styles-preset\":\"mqZl1qGnT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Metabolic Psychiatry is having a growing impact on bipolar disorder treatment. \\xa0With more clinicians engaged, studies underway,\\xa0 and lives transformed, the momentum continues to build.\"})}),className:\"framer-1j88kng\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lcm4d5\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hrkyot\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14wod3e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"o_wvFO6CC\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:true,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:1914,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"60px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:{angle:180,color:\"var(--token-018d953b-e691-47a7-901b-bcc23c5f23de, rgb(235, 231, 227))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},height:\"100%\",id:\"o_wvFO6CC\",layoutId:\"o_wvFO6CC\",prefix:\"\",start:0,suffix:\"\",textSelect:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Clinicians Engaged\"})}),className:\"framer-hr48nr\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4938.2+40+0+200+0+0+400-234.5),pixelHeight:438,pixelWidth:640,sizes:\"323px\",src:\"https://framerusercontent.com/images/NI3QXnEA273u4L70NfKxLI29Hk.jpg\",srcSet:\"https://framerusercontent.com/images/NI3QXnEA273u4L70NfKxLI29Hk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NI3QXnEA273u4L70NfKxLI29Hk.jpg 640w\"}},foYvvwRAb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5362.8+100+0+261+0+0+400-246.5),pixelHeight:438,pixelWidth:640,sizes:\"350px\",src:\"https://framerusercontent.com/images/NI3QXnEA273u4L70NfKxLI29Hk.jpg\",srcSet:\"https://framerusercontent.com/images/NI3QXnEA273u4L70NfKxLI29Hk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NI3QXnEA273u4L70NfKxLI29Hk.jpg 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:500,pixelHeight:438,pixelWidth:640,sizes:\"345px\",src:\"https://framerusercontent.com/images/NI3QXnEA273u4L70NfKxLI29Hk.jpg\",srcSet:\"https://framerusercontent.com/images/NI3QXnEA273u4L70NfKxLI29Hk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NI3QXnEA273u4L70NfKxLI29Hk.jpg 640w\"},className:\"framer-1uoojwh\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wkfbj2\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11nzxr2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VOmD1Hxgi\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:true,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:11,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"60px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:{angle:180,color:\"rgb(255, 255, 255)\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},height:\"100%\",id:\"VOmD1Hxgi\",layoutId:\"VOmD1Hxgi\",prefix:\"\",start:0,suffix:\"\",textSelect:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Active Studies\"})}),className:\"framer-1ilxmbf\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4938.2+40+0+200+0+420+400-226.5),pixelHeight:438,pixelWidth:640,sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1200px), 50px) + 24px)`,src:\"https://framerusercontent.com/images/ngRh9msmL1wraGs1lxTvAGK8.jpg\",srcSet:\"https://framerusercontent.com/images/ngRh9msmL1wraGs1lxTvAGK8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ngRh9msmL1wraGs1lxTvAGK8.jpg 640w\"}},foYvvwRAb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5362.8+100+0+261+0+0+400-236.5),pixelHeight:438,pixelWidth:640,sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 20px) / 2, 50px) + 32px)`,src:\"https://framerusercontent.com/images/ngRh9msmL1wraGs1lxTvAGK8.jpg\",srcSet:\"https://framerusercontent.com/images/ngRh9msmL1wraGs1lxTvAGK8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ngRh9msmL1wraGs1lxTvAGK8.jpg 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:500,pixelHeight:438,pixelWidth:640,sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 40px) / 3, 50px) + 26px)`,src:\"https://framerusercontent.com/images/ngRh9msmL1wraGs1lxTvAGK8.jpg\",srcSet:\"https://framerusercontent.com/images/ngRh9msmL1wraGs1lxTvAGK8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ngRh9msmL1wraGs1lxTvAGK8.jpg 640w\"},className:\"framer-xl8gy1\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q67z70\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cvopzg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FDsfAlKBY\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:true,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:350792,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"60px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:{angle:180,color:\"var(--token-dfe88354-89bc-4ddc-be9d-fa2676709d25, rgb(36, 113, 107))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},height:\"100%\",id:\"FDsfAlKBY\",layoutId:\"FDsfAlKBY\",prefix:\"\",start:0,suffix:\"\",textSelect:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-dfe88354-89bc-4ddc-be9d-fa2676709d25, rgb(36, 113, 107))\"},children:\"Bipolar Content Reach\"})}),className:\"framer-15z81ch\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4938.2+40+0+200+0+840+400-247.5),pixelHeight:438,pixelWidth:640,sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1200px), 50px) + 74px)`,src:\"https://framerusercontent.com/images/YAvnH58eU8DFOI6zXtuf7JX4S0.jpg\",srcSet:\"https://framerusercontent.com/images/YAvnH58eU8DFOI6zXtuf7JX4S0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YAvnH58eU8DFOI6zXtuf7JX4S0.jpg 640w\"}},foYvvwRAb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5362.8+100+0+261+0+420+-14.5),pixelHeight:438,pixelWidth:640,sizes:\"440px\",src:\"https://framerusercontent.com/images/YAvnH58eU8DFOI6zXtuf7JX4S0.jpg\",srcSet:\"https://framerusercontent.com/images/YAvnH58eU8DFOI6zXtuf7JX4S0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YAvnH58eU8DFOI6zXtuf7JX4S0.jpg 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:500,pixelHeight:438,pixelWidth:640,sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 40px) / 3, 50px) + 46.5px)`,src:\"https://framerusercontent.com/images/YAvnH58eU8DFOI6zXtuf7JX4S0.jpg\",srcSet:\"https://framerusercontent.com/images/YAvnH58eU8DFOI6zXtuf7JX4S0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YAvnH58eU8DFOI6zXtuf7JX4S0.jpg 640w\"},className:\"framer-87nep6\",\"data-framer-name\":\"Image\"})})]})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13i56yn\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",style:{\"--framer-text-alignment\":\"center\"},children:\"Bipolar THINK + SMART Community\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uydsif\",\"data-styles-preset\":\"eUzPXhCPw\",children:\"Bipolar THINK + SMART Community\"})}),className:\"framer-1opl9z6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(Link,{href:\"THINK+SMART is Metabolic Mind\u2019s community-inspired framework that helps individuals employ metabolic therapies to improve mental health. Dive into specific strategies people are using to help manage symptoms or even send Bipolar Disorder into remission with the THINK+SMART Framework.\",motionChild:true,nodeId:\"VCUL7HGg8\",openInNewTab:false,scopeId:\"gdhhBaSMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2uvo6\",\"data-styles-preset\":\"g2CY9Kegr\",children:\"THINK+SMART\"})}),\" is Metabolic Mind\u2019s community-inspired framework that helps individuals employ metabolic therapies to improve mental health. \",/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/communitystrategies\",motionChild:true,nodeId:\"VCUL7HGg8\",openInNewTab:false,scopeId:\"gdhhBaSMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2uvo6\",\"data-styles-preset\":\"g2CY9Kegr\",children:\"Dive into specific strategies people are using to help manage symptoms\"})}),\" or even send Bipolar Disorder into remission with the \",/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/thinksmart\",motionChild:true,nodeId:\"VCUL7HGg8\",openInNewTab:false,scopeId:\"gdhhBaSMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2uvo6\",\"data-styles-preset\":\"g2CY9Kegr\",children:\"THINK+SMART Framework\"})}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-lfr6x1\",\"data-styles-preset\":\"mqZl1qGnT\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(Link,{href:\"THINK+SMART is Metabolic Mind\u2019s community-inspired framework that helps individuals employ metabolic therapies to improve mental health. Dive into specific strategies people are using to help manage symptoms or even send Bipolar Disorder into remission with the THINK+SMART Framework.\",motionChild:true,nodeId:\"VCUL7HGg8\",openInNewTab:false,scopeId:\"gdhhBaSMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2uvo6\",\"data-styles-preset\":\"g2CY9Kegr\",children:\"THINK+SMART\"})}),\" is Metabolic Mind\u2019s community-inspired framework that helps individuals employ metabolic therapies to improve mental health. \",/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/communitystrategies\",motionChild:true,nodeId:\"VCUL7HGg8\",openInNewTab:false,scopeId:\"gdhhBaSMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2uvo6\",\"data-styles-preset\":\"g2CY9Kegr\",children:\"Dive into specific strategies people are using to help manage symptoms\"})}),\" or even send Bipolar Disorder into remission with the \",/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/thinksmart\",motionChild:true,nodeId:\"VCUL7HGg8\",openInNewTab:false,scopeId:\"gdhhBaSMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2uvo6\",\"data-styles-preset\":\"g2CY9Kegr\",children:\"THINK+SMART Framework\"})}),\".\"]})}),className:\"framer-1oebifi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jdqgpp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y5ebqw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"U8GXLkFGS\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},dragControl:true,gap:11,itemAmount:1,paddingLeft:20,paddingRight:20},foYvvwRAb:{itemAmount:2,paddingLeft:20,paddingRight:20}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:19,height:\"100%\",id:\"U8GXLkFGS\",intervalControl:1.5,itemAmount:3,layoutId:\"U8GXLkFGS\",padding:20,paddingBottom:60,paddingLeft:50,paddingPerSide:true,paddingRight:50,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/profile/matt-baszucki\",motionChild:true,nodeId:\"qlmh1tSGY\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-byo6rh framer-v7fax6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:794,pixelWidth:998,sizes:\"176px\",src:\"https://framerusercontent.com/images/HoaN3fo6NZaJ6amyOucA2awdh8.png\",srcSet:\"https://framerusercontent.com/images/HoaN3fo6NZaJ6amyOucA2awdh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/HoaN3fo6NZaJ6amyOucA2awdh8.png 998w\"},className:\"framer-1k7r91x\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uau82j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Matt Baszucki\"})}),className:\"framer-hsv94g\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vljm9j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Recovered From\"})}),className:\"framer-8o8d96\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Bipolar 1\"})}),className:\"framer-17nmmka\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ts5kdv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Started Journey\"})}),className:\"framer-1uxxuuo\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b78kl2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"2021\"})}),className:\"framer-1u5ka13\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mi1qvm\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l9ouvz\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-5875760a-4706-4a43-84f6-23750afdcb0d, rgb(255, 255, 255))\"},children:\"View Profile and Videos\"})}),className:\"framer-1a80bjl\",\"data-framer-name\":\"Name\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d6dqz2-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"F9HbdyO2Y\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-975baf98-de3b-4470-b54d-911b93571db2, rgb(249, 250, 251))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",id:\"F9HbdyO2Y\",layoutId:\"F9HbdyO2Y\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/profile/wesley-braden\",motionChild:true,nodeId:\"IBreHnagL\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-32hj2i framer-v7fax6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:770,pixelWidth:780,sizes:\"176px\",src:\"https://framerusercontent.com/images/ynYIAsBGGmr01TJicxyZ4Nhzv0.png\",srcSet:\"https://framerusercontent.com/images/ynYIAsBGGmr01TJicxyZ4Nhzv0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ynYIAsBGGmr01TJicxyZ4Nhzv0.png 780w\"},className:\"framer-1840em5\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1izmx67\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Wesley Braden\"})}),className:\"framer-tp2xv0\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x4l4kg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Managing\"})}),className:\"framer-18hlv8f\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Bipolar 2\"})}),className:\"framer-1xyrhms\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1itco3r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Started Journey\"})}),className:\"framer-ic9o73\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1onlsey\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"2023\"})}),className:\"framer-5metzl\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nrkb69\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-66cwju\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-5875760a-4706-4a43-84f6-23750afdcb0d, rgb(255, 255, 255))\"},children:\"View Profile and Videos\"})}),className:\"framer-7tb17c\",\"data-framer-name\":\"Name\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9bu98v-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"CCUl3Acfv\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-975baf98-de3b-4470-b54d-911b93571db2, rgb(249, 250, 251))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",id:\"CCUl3Acfv\",layoutId:\"CCUl3Acfv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/profile/neseret-bemient\",motionChild:true,nodeId:\"Igf591syX\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-uo9pol framer-v7fax6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:992,pixelWidth:986,sizes:\"176px\",src:\"https://framerusercontent.com/images/tC49oji47XE545cRbcZLPCaD5s.png\",srcSet:\"https://framerusercontent.com/images/tC49oji47XE545cRbcZLPCaD5s.png 986w\"},className:\"framer-1iqq1s3\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kfh3gt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Neseret Bemient\"})}),className:\"framer-1lbzinw\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-laj4pa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"In remission from\"})}),className:\"framer-1mkfeqf\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Antidepressant Induced Bipolar 2\"})}),className:\"framer-19yj327\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wnunn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Started Journey\"})}),className:\"framer-1ul0919\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sc1s9j\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"2021\"})}),className:\"framer-16d01tf\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ad02fu\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jghy3n\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-5875760a-4706-4a43-84f6-23750afdcb0d, rgb(255, 255, 255))\"},children:\"View Profile and Videos\"})}),className:\"framer-17xa631\",\"data-framer-name\":\"Name\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nychi-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"z5jqGysmD\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-975baf98-de3b-4470-b54d-911b93571db2, rgb(249, 250, 251))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",id:\"z5jqGysmD\",layoutId:\"z5jqGysmD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/profile/mia-mendez\",motionChild:true,nodeId:\"BrBpZbGcI\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-diuxdz framer-v7fax6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1520,pixelWidth:1608,sizes:\"176px\",src:\"https://framerusercontent.com/images/BMCVt1FPLVBqRpvjkdGqw6zW4.png\",srcSet:\"https://framerusercontent.com/images/BMCVt1FPLVBqRpvjkdGqw6zW4.png?scale-down-to=512 512w,https://framerusercontent.com/images/BMCVt1FPLVBqRpvjkdGqw6zW4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BMCVt1FPLVBqRpvjkdGqw6zW4.png 1608w\"},className:\"framer-pc6euv\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1su2rjn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Mia Mendez\"})}),className:\"framer-otfjbn\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11btcxt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"In remission from\"})}),className:\"framer-16i10y\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Bipolar Disorder\"})}),className:\"framer-1800pbz\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vqv0at\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Started Journey\"})}),className:\"framer-ujabk6\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jjhfxo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"2018\"})}),className:\"framer-1ip3xjr\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bcpla8\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9s7m3w\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-5875760a-4706-4a43-84f6-23750afdcb0d, rgb(255, 255, 255))\"},children:\"View Profile and Videos\"})}),className:\"framer-1eqr1i6\",\"data-framer-name\":\"Name\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-scru7l-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"M29nSjuc_\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-975baf98-de3b-4470-b54d-911b93571db2, rgb(249, 250, 251))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",id:\"M29nSjuc_\",layoutId:\"M29nSjuc_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/profile/robyn-dobbins\",motionChild:true,nodeId:\"ZchPkDHBA\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-j1odr6 framer-v7fax6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1234,pixelWidth:1332,sizes:\"176px\",src:\"https://framerusercontent.com/images/PhqRNQtaZdBk2CdSO2ZMOwt5Gqc.png\",srcSet:\"https://framerusercontent.com/images/PhqRNQtaZdBk2CdSO2ZMOwt5Gqc.png?scale-down-to=512 512w,https://framerusercontent.com/images/PhqRNQtaZdBk2CdSO2ZMOwt5Gqc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PhqRNQtaZdBk2CdSO2ZMOwt5Gqc.png 1332w\"},className:\"framer-x9ti5t\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1er1we8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Robyn Dobbins\"})}),className:\"framer-t1dfyv\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e3j48i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"In remission from\"})}),className:\"framer-1kky0o4\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Bipolar, Depression, OCD\"})}),className:\"framer-1s6wlgv\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vgurs4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Started Journey\"})}),className:\"framer-vqff4t\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14pwief\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"2017\"})}),className:\"framer-nxl80k\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9x107f\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hk9gmh\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-5875760a-4706-4a43-84f6-23750afdcb0d, rgb(255, 255, 255))\"},children:\"View Profile and Videos\"})}),className:\"framer-1c64q0p\",\"data-framer-name\":\"Name\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t5tcoe-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IC_O0CSa1\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-975baf98-de3b-4470-b54d-911b93571db2, rgb(249, 250, 251))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",id:\"IC_O0CSa1\",layoutId:\"IC_O0CSa1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/profile/steven-t\",motionChild:true,nodeId:\"p5KOtOSxW\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1y7067i framer-v7fax6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:978,pixelWidth:980,sizes:\"176px\",src:\"https://framerusercontent.com/images/kU41AyasiSI2nqwJ6Key9vRR41k.png\",srcSet:\"https://framerusercontent.com/images/kU41AyasiSI2nqwJ6Key9vRR41k.png?scale-down-to=512 512w,https://framerusercontent.com/images/kU41AyasiSI2nqwJ6Key9vRR41k.png 980w\"},className:\"framer-1h2d5ob\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-smrone\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Steven T.\"})}),className:\"framer-1ljqj6k\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d097zb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Recovering from\"})}),className:\"framer-1ndmve8\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Bipolar 2 Mixed, Substance Abuse\"})}),className:\"framer-djr6m\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hdh7jt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Started Journey\"})}),className:\"framer-dqwfaq\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10rxg7k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"2021\"})}),className:\"framer-6qk04x\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n3ak81\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q6uqqw\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-5875760a-4706-4a43-84f6-23750afdcb0d, rgb(255, 255, 255))\"},children:\"View Profile and Videos\"})}),className:\"framer-1x7b7ap\",\"data-framer-name\":\"Name\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-70hsl4-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"lxd3U3V58\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-975baf98-de3b-4470-b54d-911b93571db2, rgb(249, 250, 251))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",id:\"lxd3U3V58\",layoutId:\"lxd3U3V58\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/profile/donika-hristova\",motionChild:true,nodeId:\"eXWEE8Gwe\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1es0r4t framer-v7fax6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1356,pixelWidth:1452,sizes:\"176px\",src:\"https://framerusercontent.com/images/ZSF1XqHNfKtts5F3wruKqRNjVQ.png\",srcSet:\"https://framerusercontent.com/images/ZSF1XqHNfKtts5F3wruKqRNjVQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZSF1XqHNfKtts5F3wruKqRNjVQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZSF1XqHNfKtts5F3wruKqRNjVQ.png 1452w\"},className:\"framer-1oa08wg\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s00z4p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Donika Hristova\"})}),className:\"framer-1dq2rs1\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ii5i7r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Recovering from\"})}),className:\"framer-12mwn4k\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Bipolar Type 2, Binge Eating Disorder\"})}),className:\"framer-fe833s\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wio67o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Started Journey\"})}),className:\"framer-veqzgh\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yrqvym\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"2021\"})}),className:\"framer-1y0rtlz\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pqrury\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ev3wmj\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-5875760a-4706-4a43-84f6-23750afdcb0d, rgb(255, 255, 255))\"},children:\"View Profile and Videos\"})}),className:\"framer-23yzzc\",\"data-framer-name\":\"Name\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fmxrj8-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"vPgdbggiG\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-975baf98-de3b-4470-b54d-911b93571db2, rgb(249, 250, 251))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",id:\"vPgdbggiG\",layoutId:\"vPgdbggiG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/profile/dyane-harwood\",motionChild:true,nodeId:\"sNfSaIgS3\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1w9r2g3 framer-v7fax6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:656,pixelWidth:804,sizes:\"176px\",src:\"https://framerusercontent.com/images/s1ltLSTTqwUCKcuHGtS2xk4eWk.png\",srcSet:\"https://framerusercontent.com/images/s1ltLSTTqwUCKcuHGtS2xk4eWk.png?scale-down-to=512 512w,https://framerusercontent.com/images/s1ltLSTTqwUCKcuHGtS2xk4eWk.png 804w\"},className:\"framer-1mnvrjw\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19bkfbf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Dyane Harwood\"})}),className:\"framer-fg1zre\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13385op\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Thriving with\"})}),className:\"framer-1167fpo\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Bipolar 1\"})}),className:\"framer-1s3udw\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dyxe23\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Started Journey\"})}),className:\"framer-g0pvfp\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r3123y\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"2022\"})}),className:\"framer-1b4gxe4\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fgdhly\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rwi7py\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-5875760a-4706-4a43-84f6-23750afdcb0d, rgb(255, 255, 255))\"},children:\"View Profile and Videos\"})}),className:\"framer-1y9iyfk\",\"data-framer-name\":\"Name\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ymi7y-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"GaAAdkRHj\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-975baf98-de3b-4470-b54d-911b93571db2, rgb(249, 250, 251))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",id:\"GaAAdkRHj\",layoutId:\"GaAAdkRHj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://thinksmart.metabolicmind.org/profile/lori\",motionChild:true,nodeId:\"TGnCHAb5u\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-12bo9ty framer-v7fax6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:994,pixelWidth:918,sizes:\"176px\",src:\"https://framerusercontent.com/images/ODJRVuFbeC3fkoNoaKzlWSXm7A.png\",srcSet:\"https://framerusercontent.com/images/ODJRVuFbeC3fkoNoaKzlWSXm7A.png 918w\"},className:\"framer-igqhf1\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w5p7y7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Lori\"})}),className:\"framer-1it7c4t\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10z3ri2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Treating\"})}),className:\"framer-hcxmig\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Bipolar, ADHD & Binge Eating Disorder\"})}),className:\"framer-c9jb9e\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wcooup\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"Started Journey\"})}),className:\"framer-a28c3y\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-beu8sx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\"},children:\"2024\"})}),className:\"framer-1iz3ev0\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15atjyv\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w7gcfz\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-5875760a-4706-4a43-84f6-23750afdcb0d, rgb(255, 255, 255))\"},children:\"View Profile and Videos\"})}),className:\"framer-ntvgfa\",\"data-framer-name\":\"Name\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-118odht-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"rdlIUZitb\",rendersWithMotion:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-975baf98-de3b-4470-b54d-911b93571db2, rgb(249, 250, 251))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",id:\"rdlIUZitb\",layoutId:\"rdlIUZitb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})})],startFrom:1,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{\"data-framer-name\":\"Phone\"},foYvvwRAb:{\"data-framer-name\":\"Tablet\"}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-msjdzz\",\"data-framer-name\":\"Section Blog/Blog 01\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ao299l\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10s12df\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lc4m7q\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",style:{\"--framer-text-alignment\":\"center\"},children:\"Bipolar: Beyond the Diagnosis\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uydsif\",\"data-styles-preset\":\"eUzPXhCPw\",children:\"Bipolar: Beyond the Diagnosis\"})}),className:\"framer-my3doa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore our blogs and videos diving deep into topics at the intersection of bipolar disorder and metabolism, including ketogenic diet.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lfr6x1\",\"data-styles-preset\":\"mqZl1qGnT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore our blogs and videos diving deep into topics at the intersection of bipolar disorder and metabolism, including ketogenic diet.\"})}),className:\"framer-13vcas7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gn1y1i\",\"data-framer-name\":\"Bipolar Blogs\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mmFpYDRSp\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"mmFpYDRSp\",name:\"d0hP9ziff\",type:\"Identifier\"},{collection:\"mmFpYDRSp\",name:\"xIuIOIUnE\",type:\"Identifier\"},{collection:\"mmFpYDRSp\",name:\"FQ8Q8WVKn\",type:\"Identifier\"},{collection:\"mmFpYDRSp\",name:\"K4uDDF8uW\",type:\"Identifier\"},{collection:\"mmFpYDRSp\",name:\"mMIHckbLg\",type:\"Identifier\"},{collection:\"mmFpYDRSp\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"mmFpYDRSp\",name:\"UE3ZssWVp\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"mmFpYDRSp\",name:\"p0mQGY0Nk\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"S8uRIzBCN\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({d0hP9ziff:d0hP9ziffmmFpYDRSp,FQ8Q8WVKn:FQ8Q8WVKnmmFpYDRSp,id:idmmFpYDRSp,K4uDDF8uW:K4uDDF8uWmmFpYDRSp,mMIHckbLg:mMIHckbLgmmFpYDRSp,xIuIOIUnE:xIuIOIUnEmmFpYDRSp},index)=>{xIuIOIUnEmmFpYDRSp??=\"\";FQ8Q8WVKnmmFpYDRSp??=\"\";K4uDDF8uWmmFpYDRSp??=\"\";mMIHckbLgmmFpYDRSp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mmFpYDRSp-${idmmFpYDRSp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{mMIHckbLg:mMIHckbLgmmFpYDRSp},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g6jztl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7298.2+0+0+40+0+248+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1200px), 1px)`,...toResponsiveImage(d0hP9ziffmmFpYDRSp)}},foYvvwRAb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7544.8+0+0+0+0+385+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px), 1px)`,...toResponsiveImage(d0hP9ziffmmFpYDRSp)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px), 1px) / 2)`,...toResponsiveImage(d0hP9ziffmmFpYDRSp)},className:\"framer-17cw2en\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i0atqg\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",children:\"A Path Out of the Hell of Mental Illness: Three Practical Tools for Finding Your Way in the Darkness\"})}),className:\"framer-z80oqn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:xIuIOIUnEmmFpYDRSp,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-faeux8\",\"data-border\":true,\"data-framer-name\":\"Box\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u13oe3\",\"data-framer-name\":\"Author\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-y2riwz\",\"data-framer-name\":\"Info\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ex2gn\",\"data-styles-preset\":\"XlTWBW3IZ\",children:\"Hannah Warren\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ex2gn\",\"data-styles-preset\":\"XlTWBW3IZ\",children:\"Hannah Warren\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",children:\"Hannah Warren\"})}),className:\"framer-n8srpx\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:FQ8Q8WVKnmmFpYDRSp,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-fae910b1-58dd-4ef5-8c3c-a28d85da034c, rgb(127, 131, 138))\"},children:\"Content\"})}),className:\"framer-13q1qus\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lfr6x1\",\"data-styles-preset\":\"mqZl1qGnT\",children:\"From the depths of psychosis to the light of recovery, this article explores how envisioning a better future can transform despair into hope.\"})}),className:\"framer-1oqtkqw\",\"data-framer-name\":\"Introduction\",fonts:[\"Inter\"],text:K4uDDF8uWmmFpYDRSp,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gbu2w6\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{mMIHckbLg:mMIHckbLgmmFpYDRSp},webPageId:\"xMKVQP8L3\"},motionChild:true,nodeId:\"tkC2zEv_C\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-94j1i framer-v7fax6\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation5,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Read More\"})}),className:\"framer-c2yzwn\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]})})},idmmFpYDRSp);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18go5va\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:6,query:{from:{alias:\"xSTsu5jkd\",data:Blog,type:\"Collection\"},offset:{type:\"LiteralValue\",value:0},orderBy:[{collection:\"xSTsu5jkd\",direction:\"desc\",name:\"Kx47XaDXX\",type:\"Identifier\"}],select:[{collection:\"xSTsu5jkd\",name:\"d0hP9ziff\",type:\"Identifier\"},{collection:\"xSTsu5jkd\",name:\"xIuIOIUnE\",type:\"Identifier\"},{collection:\"xSTsu5jkd\",name:\"u7XBDMXZU\",type:\"Identifier\"},{collection:\"xSTsu5jkd\",name:\"mMIHckbLg\",type:\"Identifier\"},{collection:\"xSTsu5jkd\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"xSTsu5jkd\",name:\"p0mQGY0Nk\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"S8uRIzBCN\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"xSTsu5jkd\",name:\"UE3ZssWVp\",type:\"Identifier\"}},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection1?.map(({d0hP9ziff:d0hP9ziffxSTsu5jkd,id:idxSTsu5jkd,mMIHckbLg:mMIHckbLgxSTsu5jkd,u7XBDMXZU:u7XBDMXZUxSTsu5jkd,xIuIOIUnE:xIuIOIUnExSTsu5jkd},index1)=>{xIuIOIUnExSTsu5jkd??=\"\";u7XBDMXZUxSTsu5jkd??=\"\";mMIHckbLgxSTsu5jkd??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xSTsu5jkd-${idxSTsu5jkd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{mMIHckbLg:mMIHckbLgxSTsu5jkd},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s2jkhk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7298.2+0+0+40+0+876.4+0+0+0+0),sizes:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1200px)`,...toResponsiveImage(d0hP9ziffxSTsu5jkd)}},foYvvwRAb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7544.8+0+0+0+0+1240.4+0+0+0+0),sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 30px) / 2, 50px)`,...toResponsiveImage(d0hP9ziffxSTsu5jkd)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 60px) / 3, 50px)`,...toResponsiveImage(d0hP9ziffxSTsu5jkd)},className:\"framer-10b5f9t\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17tvy4l\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-6tgkgt\",\"data-styles-preset\":\"XVvscF8jF\",children:\"Precision Nutrition Takes Center Stage at Mayo Clinic in New Ketogenic Therapy Trial and Service\"})}),className:\"framer-1s6gjhi\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:xIuIOIUnExSTsu5jkd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nunk3k\",\"data-border\":true,\"data-framer-name\":\"Author\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-deyi13\",\"data-framer-name\":\"Info\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ex2gn\",\"data-styles-preset\":\"XlTWBW3IZ\",children:\"Hannah Warren\"})})},foYvvwRAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ex2gn\",\"data-styles-preset\":\"XlTWBW3IZ\",children:\"Hannah Warren\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",children:\"Hannah Warren\"})}),className:\"framer-lo8338\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:FQ8Q8WVKnmmFpYDRSp,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",children:\"More Than Remission: How THINK+SMART Empowers Full Recovery and Transformation\"})}),className:\"framer-1qyhjdd\",\"data-framer-name\":\"Introduction\",fonts:[\"Inter\"],text:u7XBDMXZUxSTsu5jkd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kfaylf\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{mMIHckbLg:mMIHckbLgxSTsu5jkd},webPageId:\"xMKVQP8L3\"},motionChild:true,nodeId:\"ZAShH1gvU\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ybj32h framer-v7fax6\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation5,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Read More\"})}),className:\"framer-710kxm\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-fae910b1-58dd-4ef5-8c3c-a28d85da034c, rgb(127, 131, 138))\"},children:\"Content\"})}),className:\"framer-1m8u3ur\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]})})},idxSTsu5jkd);}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{y:(componentViewport?.y||0)+0+7298.2+0+0+40+0+876.4+756.8-40},foYvvwRAb:{y:(componentViewport?.y||0)+0+7544.8+0+0+0+0+1240.4+736.8-40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ld9bo7-container\",nodeId:\"Y44g8854F\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(LoadMore,{height:\"100%\",id:\"Y44g8854F\",layoutId:\"Y44g8854F\",variant:loaderVariants(paginationInfo1,{disabled:\"sZBHwPVCl\",loading:\"bKqkKB8w5\"},\"sKz6_6zkj\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore:loadMore1})})})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vvpwbg\",\"data-framer-name\":\"Headline\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uydsif\",\"data-styles-preset\":\"eUzPXhCPw\",style:{\"--framer-text-alignment\":\"left\"},children:\"Bipolar News\"})}),className:\"framer-13rb5ta\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ozik4r\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData2,{pageSize:6,query:{from:{alias:\"BMWwYAiTx\",data:News,type:\"Collection\"},offset:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"BMWwYAiTx\",name:\"tsHa4_x5i\",type:\"Identifier\"}],select:[{collection:\"BMWwYAiTx\",name:\"O5Xejjypj\",type:\"Identifier\"},{collection:\"BMWwYAiTx\",name:\"Z_UeVuguZ\",type:\"Identifier\"},{collection:\"BMWwYAiTx\",name:\"vOHzwFdw_\",type:\"Identifier\"},{collection:\"BMWwYAiTx\",name:\"Mxu4OfS88\",type:\"Identifier\"},{collection:\"BMWwYAiTx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"BMWwYAiTx\",name:\"ysVIr2Mwx\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"T3IYzgLox\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection2?.map(({id:idBMWwYAiTx,Mxu4OfS88:Mxu4OfS88BMWwYAiTx,O5Xejjypj:O5XejjypjBMWwYAiTx,vOHzwFdw_:vOHzwFdw_BMWwYAiTx,Z_UeVuguZ:Z_UeVuguZBMWwYAiTx},index2)=>{Z_UeVuguZBMWwYAiTx??=\"\";vOHzwFdw_BMWwYAiTx??=\"\";Mxu4OfS88BMWwYAiTx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BMWwYAiTx-${idBMWwYAiTx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Mxu4OfS88:Mxu4OfS88BMWwYAiTx},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m9rx0j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7298.2+0+0+40+0+1779.2+0+0+0+0),sizes:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1200px)`,...toResponsiveImage(O5XejjypjBMWwYAiTx)}},foYvvwRAb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7544.8+0+0+0+0+2171.2+0+0+0+0),sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 30px) / 2, 50px)`,...toResponsiveImage(O5XejjypjBMWwYAiTx)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 60px) / 3, 50px)`,...toResponsiveImage(O5XejjypjBMWwYAiTx)},className:\"framer-wj7uwh\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ews84x\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-6tgkgt\",\"data-styles-preset\":\"XVvscF8jF\",children:\"More Than Remission: How THINK+SMART Empowers Full Recovery and Transformation\"})}),className:\"framer-dg05q5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:Z_UeVuguZBMWwYAiTx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ylqzsg\",\"data-border\":true,\"data-framer-name\":\"Author\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",children:\"Doctors said my son\u2019s bipolar disorder couldn\u2019t be healed by diet. They were wrong.\"})}),className:\"framer-4imszp\",\"data-framer-name\":\"Introduction\",fonts:[\"Inter\"],text:vOHzwFdw_BMWwYAiTx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l2jsg9\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Mxu4OfS88:Mxu4OfS88BMWwYAiTx},webPageId:\"D1EsWRGVa\"},motionChild:true,nodeId:\"DyD1hnp5v\",openInNewTab:false,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6s29nh framer-v7fax6\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation5,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Read More\"})}),className:\"framer-104ntsy\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]})})},idBMWwYAiTx);}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{y:(componentViewport?.y||0)+0+7298.2+0+0+40+0+1779.2+535.8-40},foYvvwRAb:{y:(componentViewport?.y||0)+0+7544.8+0+0+0+0+2171.2+515.8-40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l9ckh3-container\",nodeId:\"P6kYCHmOn\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(LoadMore2,{height:\"100%\",id:\"P6kYCHmOn\",layoutId:\"P6kYCHmOn\",variant:loaderVariants(paginationInfo2,{disabled:\"eYlQ39smY\",loading:\"xcXQNYNgz\"},\"FN5iHL24W\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore:loadMore2})})})})})]})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o7rqgl\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-e370r2\",\"data-styles-preset\":\"GdOtvM3Uf\",style:{\"--framer-text-alignment\":\"center\"},children:\"Bipolar Channels\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uydsif\",\"data-styles-preset\":\"eUzPXhCPw\",children:\"Bipolar Channels\"})}),className:\"framer-ykh0ze\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",style:{\"--framer-text-alignment\":\"center\"},children:[\"From expert insights to personal stories and support, explore \",/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@metabolicmind\",motionChild:true,nodeId:\"z4B5GXNEw\",openInNewTab:true,scopeId:\"gdhhBaSMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2uvo6\",\"data-styles-preset\":\"g2CY9Kegr\",children:\"Metabolic Mind\u2019s youtube channel\"})}),\" and podcast, and a growing number of other channels dedicated to exploring metabolic approaches to understanding and treating bipolar disorder.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-lfr6x1\",\"data-styles-preset\":\"mqZl1qGnT\",style:{\"--framer-text-alignment\":\"center\"},children:[\"From expert insights to personal stories and support, explore \",/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@metabolicmind\",motionChild:true,nodeId:\"z4B5GXNEw\",openInNewTab:true,scopeId:\"gdhhBaSMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2uvo6\",\"data-styles-preset\":\"g2CY9Kegr\",children:\"Metabolic Mind\u2019s youtube channel\"})}),\" and podcast, and a growing number of other channels dedicated to exploring metabolic approaches to understanding and treating bipolar disorder.\"]})}),className:\"framer-1o943zw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12nxi24\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x7mcgm-container\",id:elementId11,isAuthoredByUser:true,nodeId:\"tkvS8PgG_\",ref:ref12,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{deviceType:\"mobile\",titleSize:18},foYvvwRAb:{deviceType:\"tablet\"}},children:/*#__PURE__*/_jsx(YouTubePlaylistPlayerFramer,{deviceType:\"desktop\",height:\"100%\",id:\"tkvS8PgG_\",layoutId:\"tkvS8PgG_\",playlistId:\"PLzWI83-NWCL5wLVxPUIjg9fP92sl7bdhP\",playlistTitle:\"\",showScrollIndicators:true,style:{width:\"100%\"},titleColor:\"var(--token-dfe88354-89bc-4ddc-be9d-fa2676709d25, rgb(36, 113, 107))\",titleSize:22,titleWeight:700,width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lxfd\",\"data-framer-name\":\"Grid 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yhgpmy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nvmfxj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:546,intrinsicWidth:946,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10132.2+12+0+0+0+0+0),pixelHeight:546,pixelWidth:946,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/PCSohLvNf8PphORRERNIJ345bw.png\",srcSet:\"https://framerusercontent.com/images/PCSohLvNf8PphORRERNIJ345bw.png?scale-down-to=512 512w,https://framerusercontent.com/images/PCSohLvNf8PphORRERNIJ345bw.png 946w\"}},foYvvwRAb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:546,intrinsicWidth:946,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10802.8+50+0+0+0+0+0),pixelHeight:546,pixelWidth:946,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 200px)`,src:\"https://framerusercontent.com/images/PCSohLvNf8PphORRERNIJ345bw.png\",srcSet:\"https://framerusercontent.com/images/PCSohLvNf8PphORRERNIJ345bw.png?scale-down-to=512 512w,https://framerusercontent.com/images/PCSohLvNf8PphORRERNIJ345bw.png 946w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:546,intrinsicWidth:946,pixelHeight:546,pixelWidth:946,sizes:\"320px\",src:\"https://framerusercontent.com/images/PCSohLvNf8PphORRERNIJ345bw.png\",srcSet:\"https://framerusercontent.com/images/PCSohLvNf8PphORRERNIJ345bw.png?scale-down-to=512 512w,https://framerusercontent.com/images/PCSohLvNf8PphORRERNIJ345bw.png 946w\"},className:\"framer-1lrixwl\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1725cva\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Lauren\u2019s Living Well After Schizophrenia - Keto and Metabolic Health Project\"})}),className:\"framer-1b2dzly\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",children:\"Follow along with Lauren on YouTube as she undertakes a six-month adventure with ketogenic and metabolic therapies to treat her schizoaffective disorder. \"})}),className:\"framer-1xkde47\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-shb3gt\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/playlist?list=PLDgFtG7YA9Y7mRUzd2vuBU7lCC6CpLk1N\",motionChild:true,nodeId:\"OOivmC75S\",openInNewTab:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-14f45lu framer-v7fax6\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation5,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Lauren's YouTube\"})}),className:\"framer-lsjzg6\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e1k657-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"swfa4Wy9p\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero1,{color:\"var(--token-48854335-4006-47b5-926a-b2fb76f49d30, rgb(79, 187, 177))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Play\",id:\"swfa4Wy9p\",layoutId:\"swfa4Wy9p\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yiyssa\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:176,intrinsicWidth:176,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10132.2+12+0+0+620+0+0),pixelHeight:438,pixelWidth:640,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/eTPsy1VpDGk9Dtncz9GEVic3GDE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eTPsy1VpDGk9Dtncz9GEVic3GDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/eTPsy1VpDGk9Dtncz9GEVic3GDE.png 640w\"}},foYvvwRAb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:176,intrinsicWidth:176,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10802.8+50+0+0+0+0+0),pixelHeight:438,pixelWidth:640,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 200px)`,src:\"https://framerusercontent.com/images/eTPsy1VpDGk9Dtncz9GEVic3GDE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eTPsy1VpDGk9Dtncz9GEVic3GDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/eTPsy1VpDGk9Dtncz9GEVic3GDE.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:176,intrinsicWidth:176,pixelHeight:438,pixelWidth:640,sizes:\"320px\",src:\"https://framerusercontent.com/images/eTPsy1VpDGk9Dtncz9GEVic3GDE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eTPsy1VpDGk9Dtncz9GEVic3GDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/eTPsy1VpDGk9Dtncz9GEVic3GDE.png 640w\"},className:\"framer-1ax7m6i\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i6c8t1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"BipolarCast: Keto+Bipolar with Matt and Iain\"})}),className:\"framer-1xoe0jo\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",children:\"Subscribe to this YouTube podcast where Dr. Iain Campbell and Matt Baszucki host peers and experts on the use of ketogenic therapy for bipolar disorder. \"})}),className:\"framer-wmm4db\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ca8riv\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=zNI8asTF5w8\",motionChild:true,nodeId:\"lVmhZMUru\",openInNewTab:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-8hiec3 framer-v7fax6\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation5,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bipolar Cast YouTube\"})}),className:\"framer-1y8voft\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nc78zn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"k6Zm1w9i2\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero1,{color:\"var(--token-48854335-4006-47b5-926a-b2fb76f49d30, rgb(79, 187, 177))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"k6Zm1w9i2\",layoutId:\"k6Zm1w9i2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azxmux\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:682,intrinsicWidth:1270,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10132.2+12+0+0+1240+0+0),pixelHeight:533,pixelWidth:800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/khYNzebXzaVHOUWjphywIH0tpkY.png\",srcSet:\"https://framerusercontent.com/images/khYNzebXzaVHOUWjphywIH0tpkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/khYNzebXzaVHOUWjphywIH0tpkY.png 800w\"}},foYvvwRAb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:682,intrinsicWidth:1270,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10802.8+50+0+0+620+0+0),pixelHeight:533,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 200px)`,src:\"https://framerusercontent.com/images/khYNzebXzaVHOUWjphywIH0tpkY.png\",srcSet:\"https://framerusercontent.com/images/khYNzebXzaVHOUWjphywIH0tpkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/khYNzebXzaVHOUWjphywIH0tpkY.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:682,intrinsicWidth:1270,pixelHeight:533,pixelWidth:800,sizes:\"320px\",src:\"https://framerusercontent.com/images/khYNzebXzaVHOUWjphywIH0tpkY.png\",srcSet:\"https://framerusercontent.com/images/khYNzebXzaVHOUWjphywIH0tpkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/khYNzebXzaVHOUWjphywIH0tpkY.png 800w\"},className:\"framer-by5qb5\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zsy4hj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Matt Baszucki's YouTube Channel\"})}),className:\"framer-1h28ris\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1albafb\",\"data-styles-preset\":\"iz5PwDlED\",children:\"Matt Baszucki endured years of debilitating bipolar disorder before discovering ketogenic therapy; now, he is dedicated to sharing his story and elevating the voices of others to ensure everyone has the opportunity for recovery.\"})}),className:\"framer-tn4s55\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p5vswk\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@mattbaszucki\",motionChild:true,nodeId:\"G_fFr5cYV\",openInNewTab:true,scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1cxeqs0 framer-v7fax6\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation5,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Matt Baszucki's YouTube\"})}),className:\"framer-2ytikp\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zw19n0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"K54QIqSt_\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Hero1,{color:\"var(--token-48854335-4006-47b5-926a-b2fb76f49d30, rgb(79, 187, 177))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"K54QIqSt_\",layoutId:\"K54QIqSt_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{y:(componentViewport?.y||0)+0+12084.2},foYvvwRAb:{y:(componentViewport?.y||0)+0+12172.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vffzhh-container\",nodeId:\"j_VrbIDoI\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{variant:\"LTLKfOeHT\"}},children:/*#__PURE__*/_jsx(Newsletter,{height:\"100%\",id:\"j_VrbIDoI\",layoutId:\"j_VrbIDoI\",style:{width:\"100%\"},variant:\"W3P5B8ckT\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{y:(componentViewport?.y||0)+0+12534.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:447,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-a74dcx-container hidden-1bijttt\",nodeId:\"azbAC90pU\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPEUyTGVw:{style:{width:\"100%\"},variant:\"DBf1YJq7i\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"azbAC90pU\",layoutId:\"azbAC90pU\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"CPb4IcFIe\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foYvvwRAb:{height:447,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+12622.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b45fdi-container hidden-171s2n2 hidden-84g25t\",nodeId:\"iRlh65dPX\",scopeId:\"gdhhBaSMc\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"iRlh65dPX\",layoutId:\"iRlh65dPX\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"S8yLPw540\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RGTB7.framer-v7fax6, .framer-RGTB7 .framer-v7fax6 { display: block; }\",\".framer-RGTB7.framer-171s2n2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-RGTB7 .framer-8xgu8e-container { flex: none; height: 29px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1ymkq97-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 9; }\",\".framer-RGTB7 .framer-1262uqk { align-content: center; align-items: center; background: linear-gradient(180deg, #fff0db 0%, rgb(251, 220, 204) 46.846846846846844%, rgb(140, 168, 215) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1pp2acb { flex: none; height: 659px; opacity: 0.05; position: absolute; right: -23px; top: 107px; width: 582px; z-index: 0; }\",\".framer-RGTB7 .framer-1i9dkga { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 88px 100px 22px 100px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RGTB7 .framer-o59m1i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-RGTB7 .framer-2izcz7, .framer-RGTB7 .framer-to5trv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 895px; }\",\".framer-RGTB7 .framer-1gpjv33 { flex: none; height: auto; max-width: 1200px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-1xjrn2y, .framer-RGTB7 .framer-1ojms0f, .framer-RGTB7 .framer-1ihr1tx, .framer-RGTB7 .framer-1061epb { flex: none; height: auto; max-width: 1080px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-1ed4dr0 { 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: center; overflow: hidden; padding: 28px 0px 42px 100px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-10jdcg9-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 563px); position: relative; width: 1000px; }\",\".framer-RGTB7 .framer-uneyqe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 16px 100px 22px 100px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RGTB7 .framer-1ah43zw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1ncnp2j, .framer-RGTB7 .framer-33xft1 { flex: none; height: auto; max-width: 1200px; overflow: visible; position: relative; white-space: pre-wrap; width: 93%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-flvsp6 { flex: none; height: auto; max-width: 1200px; overflow: visible; position: relative; white-space: pre-wrap; width: 76%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-1q4ti5y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 40px 8px 40px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-ibqvm5 { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.39); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 50px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGTB7 .framer-gy5l7j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-kc8tha, .framer-RGTB7 .framer-1m8n4k1, .framer-RGTB7 .framer-g0wcsb, .framer-RGTB7 .framer-1prd8im, .framer-RGTB7 .framer-xwno82, .framer-RGTB7 .framer-1xvr8de, .framer-RGTB7 .framer-9ki313, .framer-RGTB7 .framer-1buom5z, .framer-RGTB7 .framer-5ut1fe, .framer-RGTB7 .framer-2s1ibt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-RGTB7 .framer-y6zm2j, .framer-RGTB7 .framer-1o5g9iy, .framer-RGTB7 .framer-1ikozbc, .framer-RGTB7 .framer-18tgylo, .framer-RGTB7 .framer-51zy1r, .framer-RGTB7 .framer-17thtm7, .framer-RGTB7 .framer-1akl6bn, .framer-RGTB7 .framer-l89oif, .framer-RGTB7 .framer-1qsu76x, .framer-RGTB7 .framer-uzo7ki { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: center; max-width: 610px; overflow: hidden; padding: 0px 0px 128px 0px; position: relative; width: 1px; }\",\".framer-RGTB7 .framer-1vf6ci0, .framer-RGTB7 .framer-1pzelot, .framer-RGTB7 .framer-ti1bpf, .framer-RGTB7 .framer-zu4es4, .framer-RGTB7 .framer-r3xfoe, .framer-RGTB7 .framer-1rejqlw, .framer-RGTB7 .framer-bvkvlv, .framer-RGTB7 .framer-8vc8u0, .framer-RGTB7 .framer-ucea2f, .framer-RGTB7 .framer-91kctm, .framer-RGTB7 .framer-o2mimm, .framer-RGTB7 .framer-8wms0v, .framer-RGTB7 .framer-1gvx69a, .framer-RGTB7 .framer-12bsoyx, .framer-RGTB7 .framer-wmpbvb, .framer-RGTB7 .framer-ody3fi, .framer-RGTB7 .framer-dnz80p, .framer-RGTB7 .framer-b5ym5w, .framer-RGTB7 .framer-1u2wcvm, .framer-RGTB7 .framer-es28tx, .framer-RGTB7 .framer-em4wen, .framer-RGTB7 .framer-sb3pp3, .framer-RGTB7 .framer-1s63rhw, .framer-RGTB7 .framer-fxi4tr, .framer-RGTB7 .framer-1f3t0ov, .framer-RGTB7 .framer-lu9aqa, .framer-RGTB7 .framer-1u1wk1t, .framer-RGTB7 .framer-1mwev8, .framer-RGTB7 .framer-hr48nr, .framer-RGTB7 .framer-1ilxmbf, .framer-RGTB7 .framer-15z81ch, .framer-RGTB7 .framer-1opl9z6, .framer-RGTB7 .framer-my3doa, .framer-RGTB7 .framer-13rb5ta, .framer-RGTB7 .framer-ykh0ze { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-110z9po, .framer-RGTB7 .framer-yrb7ny, .framer-RGTB7 .framer-18fsqhm, .framer-RGTB7 .framer-1gpxse4, .framer-RGTB7 .framer-yl244m, .framer-RGTB7 .framer-eysho, .framer-RGTB7 .framer-igv23y, .framer-RGTB7 .framer-19o1sng, .framer-RGTB7 .framer-sqdao9, .framer-RGTB7 .framer-cxwuiw { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 70px; }\",\".framer-RGTB7 .framer-u109jf, .framer-RGTB7 .framer-gk98r1, .framer-RGTB7 .framer-1mkwjjk, .framer-RGTB7 .framer-1l17w61, .framer-RGTB7 .framer-1uyf8oe, .framer-RGTB7 .framer-70ei7q, .framer-RGTB7 .framer-18gzhw6, .framer-RGTB7 .framer-da6quf, .framer-RGTB7 .framer-1hzmwqk, .framer-RGTB7 .framer-k75uyn, .framer-RGTB7 .framer-1wnc55q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; }\",\".framer-RGTB7 .framer-1wvw0c1, .framer-RGTB7 .framer-1m03idk, .framer-RGTB7 .framer-uh412u, .framer-RGTB7 .framer-1767d2o, .framer-RGTB7 .framer-15zn4, .framer-RGTB7 .framer-16z6tko, .framer-RGTB7 .framer-grvtx8, .framer-RGTB7 .framer-1lbums, .framer-RGTB7 .framer-1jv2jjz, .framer-RGTB7 .framer-1y5u58p, .framer-RGTB7 .framer-1b5mhqj { aspect-ratio: 1 / 1; background-color: var(--token-dfe88354-89bc-4ddc-be9d-fa2676709d25, #24716b); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 15px); overflow: hidden; position: relative; width: 15px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-RGTB7 .framer-196tddi, .framer-RGTB7 .framer-1bobtdo, .framer-RGTB7 .framer-njshwb, .framer-RGTB7 .framer-phakkp, .framer-RGTB7 .framer-mog2jp, .framer-RGTB7 .framer-1lglqq8, .framer-RGTB7 .framer-rcyx4m, .framer-RGTB7 .framer-6hr5qc, .framer-RGTB7 .framer-1yrj6i6, .framer-RGTB7 .framer-1pqm07i { align-content: center; align-items: center; background-color: var(--token-48854335-4006-47b5-926a-b2fb76f49d30, #4fbbb1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 3px; z-index: 0; }\",\".framer-RGTB7 .framer-znwd89, .framer-RGTB7 .framer-swbal9, .framer-RGTB7 .framer-nijjdi, .framer-RGTB7 .framer-sjcgah, .framer-RGTB7 .framer-dnpsfe, .framer-RGTB7 .framer-wlqg4d, .framer-RGTB7 .framer-1m8wzb6, .framer-RGTB7 .framer-1n1f2n3, .framer-RGTB7 .framer-fnv2wl, .framer-RGTB7 .framer-6mon9s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 610px; overflow: visible; padding: 0px 0px 70px 0px; position: relative; width: 1px; }\",\".framer-RGTB7 .framer-1dmhj0k, .framer-RGTB7 .framer-zq9kud, .framer-RGTB7 .framer-14zuprv, .framer-RGTB7 .framer-rlmw1t, .framer-RGTB7 .framer-3vf20t, .framer-RGTB7 .framer-xuvt0b, .framer-RGTB7 .framer-uu4lbb, .framer-RGTB7 .framer-kzmjlf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-krp054-container, .framer-RGTB7 .framer-18xhb3u-container, .framer-RGTB7 .framer-60diuk-container, .framer-RGTB7 .framer-hv73vx-container, .framer-RGTB7 .framer-122vwzu-container, .framer-RGTB7 .framer-xhxmuh-container, .framer-RGTB7 .framer-171rmxj-container, .framer-RGTB7 .framer-1ctb7ln-container, .framer-RGTB7 .framer-epb64e-container, .framer-RGTB7 .framer-ryo3wx-container, .framer-RGTB7 .framer-1h1nbgg-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RGTB7 .framer-u9arvt, .framer-RGTB7 .framer-inhq4d, .framer-RGTB7 .framer-17do4vc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1gyp9o2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-RGTB7 .framer-1iglmnc { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: center; max-width: 610px; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 1px; }\",\".framer-RGTB7 .framer-11p5yav { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 70px; }\",\".framer-RGTB7 .framer-d3efkk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 610px; overflow: visible; padding: 0px 0px 50px 0px; position: relative; width: 1px; }\",\".framer-RGTB7 .framer-6kv4jv { align-content: center; align-items: center; background-color: #8da9d7; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 30px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGTB7 .framer-r5v6z2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1xk36vc { 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: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RGTB7 .framer-1tzsak1, .framer-RGTB7 .framer-vvpwbg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1gbznej, .framer-RGTB7 .framer-1j88kng { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-lcm4d5 { display: grid; flex: none; gap: 20px; grid-auto-rows: 400px; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, 400px); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1hrkyot { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-dfe88354-89bc-4ddc-be9d-fa2676709d25, #24716b); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGTB7 .framer-14wod3e-container, .framer-RGTB7 .framer-11nzxr2-container, .framer-RGTB7 .framer-cvopzg-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-RGTB7 .framer-1uoojwh { bottom: 6px; flex: none; height: 232px; overflow: visible; position: absolute; right: -1px; width: 345px; z-index: 1; }\",\".framer-RGTB7 .framer-wkfbj2 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-48854335-4006-47b5-926a-b2fb76f49d30, #4fbbb1); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGTB7 .framer-xl8gy1 { bottom: -17px; flex: none; height: 255px; left: -13px; overflow: visible; position: absolute; right: -13px; z-index: 1; }\",\".framer-RGTB7 .framer-1q67z70 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-018d953b-e691-47a7-901b-bcc23c5f23de, #ebe7e3); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGTB7 .framer-87nep6 { bottom: -6px; flex: none; height: 244px; left: -19px; overflow: visible; position: absolute; right: -27px; z-index: 1; }\",\".framer-RGTB7 .framer-13i56yn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1oebifi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 74%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-jdqgpp { align-content: flex-end; align-items: flex-end; background-color: var(--token-018d953b-e691-47a7-901b-bcc23c5f23de, #ebe7e3); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 630px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 90%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGTB7 .framer-y5ebqw-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-byo6rh, .framer-RGTB7 .framer-32hj2i, .framer-RGTB7 .framer-uo9pol, .framer-RGTB7 .framer-diuxdz, .framer-RGTB7 .framer-j1odr6, .framer-RGTB7 .framer-1y7067i, .framer-RGTB7 .framer-1es0r4t, .framer-RGTB7 .framer-1w9r2g3, .framer-RGTB7 .framer-12bo9ty { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 30px 10px 10px 10px; position: relative; text-decoration: none; width: 414px; }\",\".framer-RGTB7 .framer-1k7r91x, .framer-RGTB7 .framer-1840em5, .framer-RGTB7 .framer-1iqq1s3, .framer-RGTB7 .framer-pc6euv, .framer-RGTB7 .framer-x9ti5t, .framer-RGTB7 .framer-1h2d5ob, .framer-RGTB7 .framer-1oa08wg, .framer-RGTB7 .framer-1mnvrjw, .framer-RGTB7 .framer-igqhf1 { --border-bottom-width: 4px; --border-color: var(--token-c50a07d6-f658-4fe7-bcb9-2dad725e477e, #ebe7e3); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 125px; border-bottom-right-radius: 125px; border-top-left-radius: 125px; border-top-right-radius: 125px; flex: none; height: var(--framer-aspect-ratio-supported, 176px); position: relative; width: 176px; }\",\".framer-RGTB7 .framer-uau82j, .framer-RGTB7 .framer-1izmx67, .framer-RGTB7 .framer-kfh3gt, .framer-RGTB7 .framer-1su2rjn, .framer-RGTB7 .framer-1er1we8, .framer-RGTB7 .framer-smrone, .framer-RGTB7 .framer-1s00z4p, .framer-RGTB7 .framer-19bkfbf, .framer-RGTB7 .framer-w5p7y7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-hsv94g, .framer-RGTB7 .framer-17nmmka, .framer-RGTB7 .framer-tp2xv0, .framer-RGTB7 .framer-1xyrhms, .framer-RGTB7 .framer-1lbzinw, .framer-RGTB7 .framer-19yj327, .framer-RGTB7 .framer-otfjbn, .framer-RGTB7 .framer-1800pbz, .framer-RGTB7 .framer-t1dfyv, .framer-RGTB7 .framer-1s6wlgv, .framer-RGTB7 .framer-1ljqj6k, .framer-RGTB7 .framer-djr6m, .framer-RGTB7 .framer-1dq2rs1, .framer-RGTB7 .framer-fe833s, .framer-RGTB7 .framer-fg1zre, .framer-RGTB7 .framer-1s3udw, .framer-RGTB7 .framer-1it7c4t, .framer-RGTB7 .framer-c9jb9e, .framer-RGTB7 .framer-z80oqn, .framer-RGTB7 .framer-1oqtkqw, .framer-RGTB7 .framer-1s6gjhi, .framer-RGTB7 .framer-1qyhjdd, .framer-RGTB7 .framer-1m8u3ur, .framer-RGTB7 .framer-dg05q5, .framer-RGTB7 .framer-4imszp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-1vljm9j, .framer-RGTB7 .framer-x4l4kg, .framer-RGTB7 .framer-laj4pa, .framer-RGTB7 .framer-11btcxt, .framer-RGTB7 .framer-1e3j48i, .framer-RGTB7 .framer-d097zb, .framer-RGTB7 .framer-1ii5i7r, .framer-RGTB7 .framer-13385op, .framer-RGTB7 .framer-10z3ri2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-8o8d96, .framer-RGTB7 .framer-1uxxuuo, .framer-RGTB7 .framer-1u5ka13, .framer-RGTB7 .framer-1a80bjl, .framer-RGTB7 .framer-18hlv8f, .framer-RGTB7 .framer-ic9o73, .framer-RGTB7 .framer-5metzl, .framer-RGTB7 .framer-7tb17c, .framer-RGTB7 .framer-1mkfeqf, .framer-RGTB7 .framer-1ul0919, .framer-RGTB7 .framer-16d01tf, .framer-RGTB7 .framer-17xa631, .framer-RGTB7 .framer-16i10y, .framer-RGTB7 .framer-ujabk6, .framer-RGTB7 .framer-1ip3xjr, .framer-RGTB7 .framer-1eqr1i6, .framer-RGTB7 .framer-1kky0o4, .framer-RGTB7 .framer-vqff4t, .framer-RGTB7 .framer-nxl80k, .framer-RGTB7 .framer-1c64q0p, .framer-RGTB7 .framer-1ndmve8, .framer-RGTB7 .framer-dqwfaq, .framer-RGTB7 .framer-6qk04x, .framer-RGTB7 .framer-1x7b7ap, .framer-RGTB7 .framer-12mwn4k, .framer-RGTB7 .framer-veqzgh, .framer-RGTB7 .framer-1y0rtlz, .framer-RGTB7 .framer-23yzzc, .framer-RGTB7 .framer-1167fpo, .framer-RGTB7 .framer-g0pvfp, .framer-RGTB7 .framer-1b4gxe4, .framer-RGTB7 .framer-1y9iyfk, .framer-RGTB7 .framer-hcxmig, .framer-RGTB7 .framer-a28c3y, .framer-RGTB7 .framer-1iz3ev0, .framer-RGTB7 .framer-ntvgfa { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RGTB7 .framer-1ts5kdv, .framer-RGTB7 .framer-1itco3r, .framer-RGTB7 .framer-1wnunn, .framer-RGTB7 .framer-vqv0at, .framer-RGTB7 .framer-vgurs4, .framer-RGTB7 .framer-hdh7jt, .framer-RGTB7 .framer-1wio67o, .framer-RGTB7 .framer-dyxe23, .framer-RGTB7 .framer-1wcooup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1b78kl2, .framer-RGTB7 .framer-1onlsey, .framer-RGTB7 .framer-sc1s9j, .framer-RGTB7 .framer-1jjhfxo, .framer-RGTB7 .framer-14pwief, .framer-RGTB7 .framer-10rxg7k, .framer-RGTB7 .framer-yrqvym, .framer-RGTB7 .framer-r3123y, .framer-RGTB7 .framer-beu8sx { align-content: center; align-items: center; background-color: var(--token-c50a07d6-f658-4fe7-bcb9-2dad725e477e, #ebe7e3); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGTB7 .framer-1mi1qvm, .framer-RGTB7 .framer-1nrkb69, .framer-RGTB7 .framer-1ad02fu, .framer-RGTB7 .framer-bcpla8, .framer-RGTB7 .framer-9x107f, .framer-RGTB7 .framer-1n3ak81, .framer-RGTB7 .framer-1pqrury, .framer-RGTB7 .framer-1fgdhly, .framer-RGTB7 .framer-15atjyv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1l9ouvz, .framer-RGTB7 .framer-66cwju, .framer-RGTB7 .framer-1jghy3n, .framer-RGTB7 .framer-9s7m3w, .framer-RGTB7 .framer-hk9gmh, .framer-RGTB7 .framer-1q6uqqw, .framer-RGTB7 .framer-ev3wmj, .framer-RGTB7 .framer-1rwi7py, .framer-RGTB7 .framer-1w7gcfz { align-content: center; align-items: center; background-color: var(--token-f9c29e9f-69e6-4641-8b3b-d85feafee953, #4fbbb1); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 20px 10px 20px 10px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RGTB7 .framer-1d6dqz2-container, .framer-RGTB7 .framer-9bu98v-container, .framer-RGTB7 .framer-1nychi-container, .framer-RGTB7 .framer-scru7l-container, .framer-RGTB7 .framer-t5tcoe-container, .framer-RGTB7 .framer-70hsl4-container, .framer-RGTB7 .framer-fmxrj8-container, .framer-RGTB7 .framer-10ymi7y-container, .framer-RGTB7 .framer-118odht-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-RGTB7 .framer-msjdzz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1ao299l { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-10s12df { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RGTB7 .framer-1lc4m7q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-13vcas7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 66%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-gn1y1i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1g6jztl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-RGTB7 .framer-17cw2en { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 400px; position: relative; width: 50%; }\",\".framer-RGTB7 .framer-1i0atqg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-RGTB7 .framer-faeux8 { --border-bottom-width: 1px; --border-color: var(--token-48854335-4006-47b5-926a-b2fb76f49d30, #4fbbb1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-u13oe3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-RGTB7 .framer-y2riwz, .framer-RGTB7 .framer-deyi13 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-RGTB7 .framer-n8srpx, .framer-RGTB7 .framer-13q1qus, .framer-RGTB7 .framer-lo8338 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-gbu2w6, .framer-RGTB7 .framer-1kfaylf, .framer-RGTB7 .framer-l2jsg9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-94j1i, .framer-RGTB7 .framer-ybj32h, .framer-RGTB7 .framer-6s29nh { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RGTB7 .framer-c2yzwn, .framer-RGTB7 .framer-710kxm, .framer-RGTB7 .framer-104ntsy, .framer-RGTB7 .framer-lsjzg6, .framer-RGTB7 .framer-1y8voft, .framer-RGTB7 .framer-2ytikp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RGTB7 .framer-18go5va, .framer-RGTB7 .framer-1ozik4r { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1s2jkhk, .framer-RGTB7 .framer-1m9rx0j { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 20px; height: auto; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-10b5f9t, .framer-RGTB7 .framer-wj7uwh { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-17tvy4l, .framer-RGTB7 .framer-1ews84x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-nunk3k { --border-bottom-width: 1px; --border-color: var(--token-48854335-4006-47b5-926a-b2fb76f49d30, #4fbbb1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px 0px 13px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1ld9bo7-container, .framer-RGTB7 .framer-l9ckh3-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-RGTB7 .framer-1ylqzsg { --border-bottom-width: 1px; --border-color: var(--token-48854335-4006-47b5-926a-b2fb76f49d30, #4fbbb1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 10px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1o7rqgl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 75px 0px 75px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1o943zw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 61%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-12nxi24 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-x7mcgm-container { flex: none; height: auto; position: relative; width: 1040px; }\",\".framer-RGTB7 .framer-1lxfd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1yhgpmy { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1nvmfxj, .framer-RGTB7 .framer-azxmux { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.13), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.125), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.125), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.125); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 600px; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1lrixwl { border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 240px; overflow: hidden; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGTB7 .framer-1725cva, .framer-RGTB7 .framer-i6c8t1, .framer-RGTB7 .framer-zsy4hj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1b2dzly, .framer-RGTB7 .framer-1xoe0jo, .framer-RGTB7 .framer-1h28ris { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-1xkde47, .framer-RGTB7 .framer-wmm4db, .framer-RGTB7 .framer-tn4s55 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGTB7 .framer-shb3gt, .framer-RGTB7 .framer-ca8riv, .framer-RGTB7 .framer-1p5vswk { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-14f45lu, .framer-RGTB7 .framer-8hiec3, .framer-RGTB7 .framer-1cxeqs0 { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RGTB7 .framer-1e1k657-container, .framer-RGTB7 .framer-1nc78zn-container, .framer-RGTB7 .framer-zw19n0-container { flex: none; height: 60px; position: relative; width: 30px; }\",\".framer-RGTB7 .framer-1yiyssa { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.13), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.125), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.125), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.125); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 600px; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-1ax7m6i, .framer-RGTB7 .framer-by5qb5 { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGTB7 .framer-vffzhh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-RGTB7 .framer-a74dcx-container, .framer-RGTB7 .framer-1b45fdi-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RGTB7.framer-171s2n2, .framer-RGTB7 .framer-1262uqk, .framer-RGTB7 .framer-1i9dkga, .framer-RGTB7 .framer-o59m1i, .framer-RGTB7 .framer-2izcz7, .framer-RGTB7 .framer-to5trv, .framer-RGTB7 .framer-1ed4dr0, .framer-RGTB7 .framer-uneyqe, .framer-RGTB7 .framer-1ah43zw, .framer-RGTB7 .framer-1q4ti5y, .framer-RGTB7 .framer-ibqvm5, .framer-RGTB7 .framer-gy5l7j, .framer-RGTB7 .framer-kc8tha, .framer-RGTB7 .framer-y6zm2j, .framer-RGTB7 .framer-110z9po, .framer-RGTB7 .framer-u109jf, .framer-RGTB7 .framer-196tddi, .framer-RGTB7 .framer-znwd89, .framer-RGTB7 .framer-1dmhj0k, .framer-RGTB7 .framer-1m8n4k1, .framer-RGTB7 .framer-swbal9, .framer-RGTB7 .framer-zq9kud, .framer-RGTB7 .framer-yrb7ny, .framer-RGTB7 .framer-gk98r1, .framer-RGTB7 .framer-1bobtdo, .framer-RGTB7 .framer-1o5g9iy, .framer-RGTB7 .framer-g0wcsb, .framer-RGTB7 .framer-1ikozbc, .framer-RGTB7 .framer-18fsqhm, .framer-RGTB7 .framer-1mkwjjk, .framer-RGTB7 .framer-njshwb, .framer-RGTB7 .framer-nijjdi, .framer-RGTB7 .framer-14zuprv, .framer-RGTB7 .framer-1prd8im, .framer-RGTB7 .framer-sjcgah, .framer-RGTB7 .framer-u9arvt, .framer-RGTB7 .framer-1gpxse4, .framer-RGTB7 .framer-1l17w61, .framer-RGTB7 .framer-phakkp, .framer-RGTB7 .framer-18tgylo, .framer-RGTB7 .framer-xwno82, .framer-RGTB7 .framer-51zy1r, .framer-RGTB7 .framer-yl244m, .framer-RGTB7 .framer-1uyf8oe, .framer-RGTB7 .framer-mog2jp, .framer-RGTB7 .framer-dnpsfe, .framer-RGTB7 .framer-inhq4d, .framer-RGTB7 .framer-1xvr8de, .framer-RGTB7 .framer-wlqg4d, .framer-RGTB7 .framer-rlmw1t, .framer-RGTB7 .framer-eysho, .framer-RGTB7 .framer-70ei7q, .framer-RGTB7 .framer-1lglqq8, .framer-RGTB7 .framer-17thtm7, .framer-RGTB7 .framer-9ki313, .framer-RGTB7 .framer-1akl6bn, .framer-RGTB7 .framer-igv23y, .framer-RGTB7 .framer-18gzhw6, .framer-RGTB7 .framer-rcyx4m, .framer-RGTB7 .framer-1m8wzb6, .framer-RGTB7 .framer-3vf20t, .framer-RGTB7 .framer-1buom5z, .framer-RGTB7 .framer-1n1f2n3, .framer-RGTB7 .framer-xuvt0b, .framer-RGTB7 .framer-19o1sng, .framer-RGTB7 .framer-da6quf, .framer-RGTB7 .framer-6hr5qc, .framer-RGTB7 .framer-l89oif, .framer-RGTB7 .framer-5ut1fe, .framer-RGTB7 .framer-1qsu76x, .framer-RGTB7 .framer-sqdao9, .framer-RGTB7 .framer-1hzmwqk, .framer-RGTB7 .framer-1yrj6i6, .framer-RGTB7 .framer-fnv2wl, .framer-RGTB7 .framer-17do4vc, .framer-RGTB7 .framer-2s1ibt, .framer-RGTB7 .framer-6mon9s, .framer-RGTB7 .framer-uu4lbb, .framer-RGTB7 .framer-cxwuiw, .framer-RGTB7 .framer-k75uyn, .framer-RGTB7 .framer-1pqm07i, .framer-RGTB7 .framer-uzo7ki, .framer-RGTB7 .framer-1gyp9o2, .framer-RGTB7 .framer-1iglmnc, .framer-RGTB7 .framer-11p5yav, .framer-RGTB7 .framer-1wnc55q, .framer-RGTB7 .framer-d3efkk, .framer-RGTB7 .framer-kzmjlf, .framer-RGTB7 .framer-6kv4jv, .framer-RGTB7 .framer-r5v6z2, .framer-RGTB7 .framer-1xk36vc, .framer-RGTB7 .framer-1tzsak1, .framer-RGTB7 .framer-1hrkyot, .framer-RGTB7 .framer-wkfbj2, .framer-RGTB7 .framer-1q67z70, .framer-RGTB7 .framer-13i56yn, .framer-RGTB7 .framer-jdqgpp, .framer-RGTB7 .framer-uau82j, .framer-RGTB7 .framer-1vljm9j, .framer-RGTB7 .framer-1ts5kdv, .framer-RGTB7 .framer-1b78kl2, .framer-RGTB7 .framer-1mi1qvm, .framer-RGTB7 .framer-1l9ouvz, .framer-RGTB7 .framer-1izmx67, .framer-RGTB7 .framer-x4l4kg, .framer-RGTB7 .framer-1itco3r, .framer-RGTB7 .framer-1onlsey, .framer-RGTB7 .framer-1nrkb69, .framer-RGTB7 .framer-66cwju, .framer-RGTB7 .framer-kfh3gt, .framer-RGTB7 .framer-laj4pa, .framer-RGTB7 .framer-1wnunn, .framer-RGTB7 .framer-sc1s9j, .framer-RGTB7 .framer-1ad02fu, .framer-RGTB7 .framer-1jghy3n, .framer-RGTB7 .framer-1su2rjn, .framer-RGTB7 .framer-11btcxt, .framer-RGTB7 .framer-vqv0at, .framer-RGTB7 .framer-1jjhfxo, .framer-RGTB7 .framer-bcpla8, .framer-RGTB7 .framer-9s7m3w, .framer-RGTB7 .framer-1er1we8, .framer-RGTB7 .framer-1e3j48i, .framer-RGTB7 .framer-vgurs4, .framer-RGTB7 .framer-14pwief, .framer-RGTB7 .framer-9x107f, .framer-RGTB7 .framer-hk9gmh, .framer-RGTB7 .framer-smrone, .framer-RGTB7 .framer-d097zb, .framer-RGTB7 .framer-hdh7jt, .framer-RGTB7 .framer-10rxg7k, .framer-RGTB7 .framer-1n3ak81, .framer-RGTB7 .framer-1q6uqqw, .framer-RGTB7 .framer-1s00z4p, .framer-RGTB7 .framer-1ii5i7r, .framer-RGTB7 .framer-1wio67o, .framer-RGTB7 .framer-yrqvym, .framer-RGTB7 .framer-1pqrury, .framer-RGTB7 .framer-ev3wmj, .framer-RGTB7 .framer-19bkfbf, .framer-RGTB7 .framer-13385op, .framer-RGTB7 .framer-dyxe23, .framer-RGTB7 .framer-r3123y, .framer-RGTB7 .framer-1fgdhly, .framer-RGTB7 .framer-1rwi7py, .framer-RGTB7 .framer-w5p7y7, .framer-RGTB7 .framer-10z3ri2, .framer-RGTB7 .framer-1wcooup, .framer-RGTB7 .framer-beu8sx, .framer-RGTB7 .framer-15atjyv, .framer-RGTB7 .framer-1w7gcfz, .framer-RGTB7 .framer-msjdzz, .framer-RGTB7 .framer-1ao299l, .framer-RGTB7 .framer-10s12df, .framer-RGTB7 .framer-1lc4m7q, .framer-RGTB7 .framer-gn1y1i, .framer-RGTB7 .framer-1g6jztl, .framer-RGTB7 .framer-1i0atqg, .framer-RGTB7 .framer-faeux8, .framer-RGTB7 .framer-u13oe3, .framer-RGTB7 .framer-y2riwz, .framer-RGTB7 .framer-gbu2w6, .framer-RGTB7 .framer-94j1i, .framer-RGTB7 .framer-1s2jkhk, .framer-RGTB7 .framer-17tvy4l, .framer-RGTB7 .framer-nunk3k, .framer-RGTB7 .framer-deyi13, .framer-RGTB7 .framer-1kfaylf, .framer-RGTB7 .framer-ybj32h, .framer-RGTB7 .framer-vvpwbg, .framer-RGTB7 .framer-1m9rx0j, .framer-RGTB7 .framer-1ews84x, .framer-RGTB7 .framer-1ylqzsg, .framer-RGTB7 .framer-l2jsg9, .framer-RGTB7 .framer-6s29nh, .framer-RGTB7 .framer-1o7rqgl, .framer-RGTB7 .framer-12nxi24, .framer-RGTB7 .framer-1lxfd, .framer-RGTB7 .framer-1nvmfxj, .framer-RGTB7 .framer-1725cva, .framer-RGTB7 .framer-shb3gt, .framer-RGTB7 .framer-14f45lu, .framer-RGTB7 .framer-1yiyssa, .framer-RGTB7 .framer-i6c8t1, .framer-RGTB7 .framer-ca8riv, .framer-RGTB7 .framer-8hiec3, .framer-RGTB7 .framer-azxmux, .framer-RGTB7 .framer-zsy4hj, .framer-RGTB7 .framer-1p5vswk, .framer-RGTB7 .framer-1cxeqs0 { gap: 0px; } .framer-RGTB7.framer-171s2n2 > *, .framer-RGTB7 .framer-1262uqk > *, .framer-RGTB7 .framer-1ed4dr0 > *, .framer-RGTB7 .framer-ibqvm5 > *, .framer-RGTB7 .framer-110z9po > *, .framer-RGTB7 .framer-196tddi > *, .framer-RGTB7 .framer-yrb7ny > *, .framer-RGTB7 .framer-1bobtdo > *, .framer-RGTB7 .framer-18fsqhm > *, .framer-RGTB7 .framer-njshwb > *, .framer-RGTB7 .framer-1gpxse4 > *, .framer-RGTB7 .framer-phakkp > *, .framer-RGTB7 .framer-yl244m > *, .framer-RGTB7 .framer-mog2jp > *, .framer-RGTB7 .framer-eysho > *, .framer-RGTB7 .framer-1lglqq8 > *, .framer-RGTB7 .framer-igv23y > *, .framer-RGTB7 .framer-rcyx4m > *, .framer-RGTB7 .framer-19o1sng > *, .framer-RGTB7 .framer-6hr5qc > *, .framer-RGTB7 .framer-sqdao9 > *, .framer-RGTB7 .framer-1yrj6i6 > *, .framer-RGTB7 .framer-cxwuiw > *, .framer-RGTB7 .framer-1pqm07i > *, .framer-RGTB7 .framer-6kv4jv > *, .framer-RGTB7 .framer-1vljm9j > *, .framer-RGTB7 .framer-x4l4kg > *, .framer-RGTB7 .framer-laj4pa > *, .framer-RGTB7 .framer-11btcxt > *, .framer-RGTB7 .framer-1e3j48i > *, .framer-RGTB7 .framer-d097zb > *, .framer-RGTB7 .framer-1ii5i7r > *, .framer-RGTB7 .framer-13385op > *, .framer-RGTB7 .framer-10z3ri2 > *, .framer-RGTB7 .framer-msjdzz > *, .framer-RGTB7 .framer-1lxfd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-RGTB7.framer-171s2n2 > :first-child, .framer-RGTB7 .framer-1262uqk > :first-child, .framer-RGTB7 .framer-1i9dkga > :first-child, .framer-RGTB7 .framer-o59m1i > :first-child, .framer-RGTB7 .framer-1ed4dr0 > :first-child, .framer-RGTB7 .framer-uneyqe > :first-child, .framer-RGTB7 .framer-1ah43zw > :first-child, .framer-RGTB7 .framer-1q4ti5y > :first-child, .framer-RGTB7 .framer-ibqvm5 > :first-child, .framer-RGTB7 .framer-gy5l7j > :first-child, .framer-RGTB7 .framer-y6zm2j > :first-child, .framer-RGTB7 .framer-110z9po > :first-child, .framer-RGTB7 .framer-196tddi > :first-child, .framer-RGTB7 .framer-znwd89 > :first-child, .framer-RGTB7 .framer-1dmhj0k > :first-child, .framer-RGTB7 .framer-swbal9 > :first-child, .framer-RGTB7 .framer-zq9kud > :first-child, .framer-RGTB7 .framer-yrb7ny > :first-child, .framer-RGTB7 .framer-1bobtdo > :first-child, .framer-RGTB7 .framer-1o5g9iy > :first-child, .framer-RGTB7 .framer-1ikozbc > :first-child, .framer-RGTB7 .framer-18fsqhm > :first-child, .framer-RGTB7 .framer-njshwb > :first-child, .framer-RGTB7 .framer-nijjdi > :first-child, .framer-RGTB7 .framer-14zuprv > :first-child, .framer-RGTB7 .framer-sjcgah > :first-child, .framer-RGTB7 .framer-u9arvt > :first-child, .framer-RGTB7 .framer-1gpxse4 > :first-child, .framer-RGTB7 .framer-phakkp > :first-child, .framer-RGTB7 .framer-18tgylo > :first-child, .framer-RGTB7 .framer-51zy1r > :first-child, .framer-RGTB7 .framer-yl244m > :first-child, .framer-RGTB7 .framer-mog2jp > :first-child, .framer-RGTB7 .framer-dnpsfe > :first-child, .framer-RGTB7 .framer-inhq4d > :first-child, .framer-RGTB7 .framer-wlqg4d > :first-child, .framer-RGTB7 .framer-rlmw1t > :first-child, .framer-RGTB7 .framer-eysho > :first-child, .framer-RGTB7 .framer-1lglqq8 > :first-child, .framer-RGTB7 .framer-17thtm7 > :first-child, .framer-RGTB7 .framer-1akl6bn > :first-child, .framer-RGTB7 .framer-igv23y > :first-child, .framer-RGTB7 .framer-rcyx4m > :first-child, .framer-RGTB7 .framer-1m8wzb6 > :first-child, .framer-RGTB7 .framer-3vf20t > :first-child, .framer-RGTB7 .framer-1n1f2n3 > :first-child, .framer-RGTB7 .framer-xuvt0b > :first-child, .framer-RGTB7 .framer-19o1sng > :first-child, .framer-RGTB7 .framer-6hr5qc > :first-child, .framer-RGTB7 .framer-l89oif > :first-child, .framer-RGTB7 .framer-1qsu76x > :first-child, .framer-RGTB7 .framer-sqdao9 > :first-child, .framer-RGTB7 .framer-1yrj6i6 > :first-child, .framer-RGTB7 .framer-fnv2wl > :first-child, .framer-RGTB7 .framer-17do4vc > :first-child, .framer-RGTB7 .framer-6mon9s > :first-child, .framer-RGTB7 .framer-uu4lbb > :first-child, .framer-RGTB7 .framer-cxwuiw > :first-child, .framer-RGTB7 .framer-1pqm07i > :first-child, .framer-RGTB7 .framer-uzo7ki > :first-child, .framer-RGTB7 .framer-1iglmnc > :first-child, .framer-RGTB7 .framer-11p5yav > :first-child, .framer-RGTB7 .framer-d3efkk > :first-child, .framer-RGTB7 .framer-kzmjlf > :first-child, .framer-RGTB7 .framer-6kv4jv > :first-child, .framer-RGTB7 .framer-1xk36vc > :first-child, .framer-RGTB7 .framer-1tzsak1 > :first-child, .framer-RGTB7 .framer-1hrkyot > :first-child, .framer-RGTB7 .framer-wkfbj2 > :first-child, .framer-RGTB7 .framer-1q67z70 > :first-child, .framer-RGTB7 .framer-13i56yn > :first-child, .framer-RGTB7 .framer-uau82j > :first-child, .framer-RGTB7 .framer-1vljm9j > :first-child, .framer-RGTB7 .framer-1ts5kdv > :first-child, .framer-RGTB7 .framer-1izmx67 > :first-child, .framer-RGTB7 .framer-x4l4kg > :first-child, .framer-RGTB7 .framer-1itco3r > :first-child, .framer-RGTB7 .framer-kfh3gt > :first-child, .framer-RGTB7 .framer-laj4pa > :first-child, .framer-RGTB7 .framer-1wnunn > :first-child, .framer-RGTB7 .framer-1su2rjn > :first-child, .framer-RGTB7 .framer-11btcxt > :first-child, .framer-RGTB7 .framer-vqv0at > :first-child, .framer-RGTB7 .framer-1er1we8 > :first-child, .framer-RGTB7 .framer-1e3j48i > :first-child, .framer-RGTB7 .framer-vgurs4 > :first-child, .framer-RGTB7 .framer-smrone > :first-child, .framer-RGTB7 .framer-d097zb > :first-child, .framer-RGTB7 .framer-hdh7jt > :first-child, .framer-RGTB7 .framer-1s00z4p > :first-child, .framer-RGTB7 .framer-1ii5i7r > :first-child, .framer-RGTB7 .framer-1wio67o > :first-child, .framer-RGTB7 .framer-19bkfbf > :first-child, .framer-RGTB7 .framer-13385op > :first-child, .framer-RGTB7 .framer-dyxe23 > :first-child, .framer-RGTB7 .framer-w5p7y7 > :first-child, .framer-RGTB7 .framer-10z3ri2 > :first-child, .framer-RGTB7 .framer-1wcooup > :first-child, .framer-RGTB7 .framer-msjdzz > :first-child, .framer-RGTB7 .framer-10s12df > :first-child, .framer-RGTB7 .framer-1lc4m7q > :first-child, .framer-RGTB7 .framer-1i0atqg > :first-child, .framer-RGTB7 .framer-gbu2w6 > :first-child, .framer-RGTB7 .framer-1s2jkhk > :first-child, .framer-RGTB7 .framer-17tvy4l > :first-child, .framer-RGTB7 .framer-1kfaylf > :first-child, .framer-RGTB7 .framer-vvpwbg > :first-child, .framer-RGTB7 .framer-1m9rx0j > :first-child, .framer-RGTB7 .framer-1ews84x > :first-child, .framer-RGTB7 .framer-l2jsg9 > :first-child, .framer-RGTB7 .framer-1o7rqgl > :first-child, .framer-RGTB7 .framer-12nxi24 > :first-child, .framer-RGTB7 .framer-1lxfd > :first-child, .framer-RGTB7 .framer-1nvmfxj > :first-child, .framer-RGTB7 .framer-1725cva > :first-child, .framer-RGTB7 .framer-1yiyssa > :first-child, .framer-RGTB7 .framer-i6c8t1 > :first-child, .framer-RGTB7 .framer-azxmux > :first-child, .framer-RGTB7 .framer-zsy4hj > :first-child { margin-top: 0px; } .framer-RGTB7.framer-171s2n2 > :last-child, .framer-RGTB7 .framer-1262uqk > :last-child, .framer-RGTB7 .framer-1i9dkga > :last-child, .framer-RGTB7 .framer-o59m1i > :last-child, .framer-RGTB7 .framer-1ed4dr0 > :last-child, .framer-RGTB7 .framer-uneyqe > :last-child, .framer-RGTB7 .framer-1ah43zw > :last-child, .framer-RGTB7 .framer-1q4ti5y > :last-child, .framer-RGTB7 .framer-ibqvm5 > :last-child, .framer-RGTB7 .framer-gy5l7j > :last-child, .framer-RGTB7 .framer-y6zm2j > :last-child, .framer-RGTB7 .framer-110z9po > :last-child, .framer-RGTB7 .framer-196tddi > :last-child, .framer-RGTB7 .framer-znwd89 > :last-child, .framer-RGTB7 .framer-1dmhj0k > :last-child, .framer-RGTB7 .framer-swbal9 > :last-child, .framer-RGTB7 .framer-zq9kud > :last-child, .framer-RGTB7 .framer-yrb7ny > :last-child, .framer-RGTB7 .framer-1bobtdo > :last-child, .framer-RGTB7 .framer-1o5g9iy > :last-child, .framer-RGTB7 .framer-1ikozbc > :last-child, .framer-RGTB7 .framer-18fsqhm > :last-child, .framer-RGTB7 .framer-njshwb > :last-child, .framer-RGTB7 .framer-nijjdi > :last-child, .framer-RGTB7 .framer-14zuprv > :last-child, .framer-RGTB7 .framer-sjcgah > :last-child, .framer-RGTB7 .framer-u9arvt > :last-child, .framer-RGTB7 .framer-1gpxse4 > :last-child, .framer-RGTB7 .framer-phakkp > :last-child, .framer-RGTB7 .framer-18tgylo > :last-child, .framer-RGTB7 .framer-51zy1r > :last-child, .framer-RGTB7 .framer-yl244m > :last-child, .framer-RGTB7 .framer-mog2jp > :last-child, .framer-RGTB7 .framer-dnpsfe > :last-child, .framer-RGTB7 .framer-inhq4d > :last-child, .framer-RGTB7 .framer-wlqg4d > :last-child, .framer-RGTB7 .framer-rlmw1t > :last-child, .framer-RGTB7 .framer-eysho > :last-child, .framer-RGTB7 .framer-1lglqq8 > :last-child, .framer-RGTB7 .framer-17thtm7 > :last-child, .framer-RGTB7 .framer-1akl6bn > :last-child, .framer-RGTB7 .framer-igv23y > :last-child, .framer-RGTB7 .framer-rcyx4m > :last-child, .framer-RGTB7 .framer-1m8wzb6 > :last-child, .framer-RGTB7 .framer-3vf20t > :last-child, .framer-RGTB7 .framer-1n1f2n3 > :last-child, .framer-RGTB7 .framer-xuvt0b > :last-child, .framer-RGTB7 .framer-19o1sng > :last-child, .framer-RGTB7 .framer-6hr5qc > :last-child, .framer-RGTB7 .framer-l89oif > :last-child, .framer-RGTB7 .framer-1qsu76x > :last-child, .framer-RGTB7 .framer-sqdao9 > :last-child, .framer-RGTB7 .framer-1yrj6i6 > :last-child, .framer-RGTB7 .framer-fnv2wl > :last-child, .framer-RGTB7 .framer-17do4vc > :last-child, .framer-RGTB7 .framer-6mon9s > :last-child, .framer-RGTB7 .framer-uu4lbb > :last-child, .framer-RGTB7 .framer-cxwuiw > :last-child, .framer-RGTB7 .framer-1pqm07i > :last-child, .framer-RGTB7 .framer-uzo7ki > :last-child, .framer-RGTB7 .framer-1iglmnc > :last-child, .framer-RGTB7 .framer-11p5yav > :last-child, .framer-RGTB7 .framer-d3efkk > :last-child, .framer-RGTB7 .framer-kzmjlf > :last-child, .framer-RGTB7 .framer-6kv4jv > :last-child, .framer-RGTB7 .framer-1xk36vc > :last-child, .framer-RGTB7 .framer-1tzsak1 > :last-child, .framer-RGTB7 .framer-1hrkyot > :last-child, .framer-RGTB7 .framer-wkfbj2 > :last-child, .framer-RGTB7 .framer-1q67z70 > :last-child, .framer-RGTB7 .framer-13i56yn > :last-child, .framer-RGTB7 .framer-uau82j > :last-child, .framer-RGTB7 .framer-1vljm9j > :last-child, .framer-RGTB7 .framer-1ts5kdv > :last-child, .framer-RGTB7 .framer-1izmx67 > :last-child, .framer-RGTB7 .framer-x4l4kg > :last-child, .framer-RGTB7 .framer-1itco3r > :last-child, .framer-RGTB7 .framer-kfh3gt > :last-child, .framer-RGTB7 .framer-laj4pa > :last-child, .framer-RGTB7 .framer-1wnunn > :last-child, .framer-RGTB7 .framer-1su2rjn > :last-child, .framer-RGTB7 .framer-11btcxt > :last-child, .framer-RGTB7 .framer-vqv0at > :last-child, .framer-RGTB7 .framer-1er1we8 > :last-child, .framer-RGTB7 .framer-1e3j48i > :last-child, .framer-RGTB7 .framer-vgurs4 > :last-child, .framer-RGTB7 .framer-smrone > :last-child, .framer-RGTB7 .framer-d097zb > :last-child, .framer-RGTB7 .framer-hdh7jt > :last-child, .framer-RGTB7 .framer-1s00z4p > :last-child, .framer-RGTB7 .framer-1ii5i7r > :last-child, .framer-RGTB7 .framer-1wio67o > :last-child, .framer-RGTB7 .framer-19bkfbf > :last-child, .framer-RGTB7 .framer-13385op > :last-child, .framer-RGTB7 .framer-dyxe23 > :last-child, .framer-RGTB7 .framer-w5p7y7 > :last-child, .framer-RGTB7 .framer-10z3ri2 > :last-child, .framer-RGTB7 .framer-1wcooup > :last-child, .framer-RGTB7 .framer-msjdzz > :last-child, .framer-RGTB7 .framer-10s12df > :last-child, .framer-RGTB7 .framer-1lc4m7q > :last-child, .framer-RGTB7 .framer-1i0atqg > :last-child, .framer-RGTB7 .framer-gbu2w6 > :last-child, .framer-RGTB7 .framer-1s2jkhk > :last-child, .framer-RGTB7 .framer-17tvy4l > :last-child, .framer-RGTB7 .framer-1kfaylf > :last-child, .framer-RGTB7 .framer-vvpwbg > :last-child, .framer-RGTB7 .framer-1m9rx0j > :last-child, .framer-RGTB7 .framer-1ews84x > :last-child, .framer-RGTB7 .framer-l2jsg9 > :last-child, .framer-RGTB7 .framer-1o7rqgl > :last-child, .framer-RGTB7 .framer-12nxi24 > :last-child, .framer-RGTB7 .framer-1lxfd > :last-child, .framer-RGTB7 .framer-1nvmfxj > :last-child, .framer-RGTB7 .framer-1725cva > :last-child, .framer-RGTB7 .framer-1yiyssa > :last-child, .framer-RGTB7 .framer-i6c8t1 > :last-child, .framer-RGTB7 .framer-azxmux > :last-child, .framer-RGTB7 .framer-zsy4hj > :last-child { margin-bottom: 0px; } .framer-RGTB7 .framer-1i9dkga > *, .framer-RGTB7 .framer-uneyqe > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-RGTB7 .framer-o59m1i > *, .framer-RGTB7 .framer-1q4ti5y > *, .framer-RGTB7 .framer-gy5l7j > *, .framer-RGTB7 .framer-1hrkyot > *, .framer-RGTB7 .framer-wkfbj2 > *, .framer-RGTB7 .framer-1q67z70 > *, .framer-RGTB7 .framer-1i0atqg > *, .framer-RGTB7 .framer-gbu2w6 > *, .framer-RGTB7 .framer-17tvy4l > *, .framer-RGTB7 .framer-1kfaylf > *, .framer-RGTB7 .framer-1ews84x > *, .framer-RGTB7 .framer-l2jsg9 > *, .framer-RGTB7 .framer-12nxi24 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-RGTB7 .framer-2izcz7 > *, .framer-RGTB7 .framer-to5trv > *, .framer-RGTB7 .framer-kc8tha > *, .framer-RGTB7 .framer-u109jf > *, .framer-RGTB7 .framer-1m8n4k1 > *, .framer-RGTB7 .framer-gk98r1 > *, .framer-RGTB7 .framer-g0wcsb > *, .framer-RGTB7 .framer-1mkwjjk > *, .framer-RGTB7 .framer-1prd8im > *, .framer-RGTB7 .framer-1l17w61 > *, .framer-RGTB7 .framer-xwno82 > *, .framer-RGTB7 .framer-1uyf8oe > *, .framer-RGTB7 .framer-1xvr8de > *, .framer-RGTB7 .framer-70ei7q > *, .framer-RGTB7 .framer-9ki313 > *, .framer-RGTB7 .framer-18gzhw6 > *, .framer-RGTB7 .framer-1buom5z > *, .framer-RGTB7 .framer-da6quf > *, .framer-RGTB7 .framer-5ut1fe > *, .framer-RGTB7 .framer-1hzmwqk > *, .framer-RGTB7 .framer-2s1ibt > *, .framer-RGTB7 .framer-k75uyn > *, .framer-RGTB7 .framer-1gyp9o2 > *, .framer-RGTB7 .framer-1wnc55q > *, .framer-RGTB7 .framer-jdqgpp > *, .framer-RGTB7 .framer-1b78kl2 > *, .framer-RGTB7 .framer-1mi1qvm > *, .framer-RGTB7 .framer-1l9ouvz > *, .framer-RGTB7 .framer-1onlsey > *, .framer-RGTB7 .framer-1nrkb69 > *, .framer-RGTB7 .framer-66cwju > *, .framer-RGTB7 .framer-sc1s9j > *, .framer-RGTB7 .framer-1ad02fu > *, .framer-RGTB7 .framer-1jghy3n > *, .framer-RGTB7 .framer-1jjhfxo > *, .framer-RGTB7 .framer-bcpla8 > *, .framer-RGTB7 .framer-9s7m3w > *, .framer-RGTB7 .framer-14pwief > *, .framer-RGTB7 .framer-9x107f > *, .framer-RGTB7 .framer-hk9gmh > *, .framer-RGTB7 .framer-10rxg7k > *, .framer-RGTB7 .framer-1n3ak81 > *, .framer-RGTB7 .framer-1q6uqqw > *, .framer-RGTB7 .framer-yrqvym > *, .framer-RGTB7 .framer-1pqrury > *, .framer-RGTB7 .framer-ev3wmj > *, .framer-RGTB7 .framer-r3123y > *, .framer-RGTB7 .framer-1fgdhly > *, .framer-RGTB7 .framer-1rwi7py > *, .framer-RGTB7 .framer-beu8sx > *, .framer-RGTB7 .framer-15atjyv > *, .framer-RGTB7 .framer-1w7gcfz > *, .framer-RGTB7 .framer-faeux8 > *, .framer-RGTB7 .framer-u13oe3 > *, .framer-RGTB7 .framer-94j1i > *, .framer-RGTB7 .framer-nunk3k > *, .framer-RGTB7 .framer-ybj32h > *, .framer-RGTB7 .framer-1ylqzsg > *, .framer-RGTB7 .framer-6s29nh > *, .framer-RGTB7 .framer-shb3gt > *, .framer-RGTB7 .framer-14f45lu > *, .framer-RGTB7 .framer-ca8riv > *, .framer-RGTB7 .framer-8hiec3 > *, .framer-RGTB7 .framer-1p5vswk > *, .framer-RGTB7 .framer-1cxeqs0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RGTB7 .framer-2izcz7 > :first-child, .framer-RGTB7 .framer-to5trv > :first-child, .framer-RGTB7 .framer-kc8tha > :first-child, .framer-RGTB7 .framer-u109jf > :first-child, .framer-RGTB7 .framer-1m8n4k1 > :first-child, .framer-RGTB7 .framer-gk98r1 > :first-child, .framer-RGTB7 .framer-g0wcsb > :first-child, .framer-RGTB7 .framer-1mkwjjk > :first-child, .framer-RGTB7 .framer-1prd8im > :first-child, .framer-RGTB7 .framer-1l17w61 > :first-child, .framer-RGTB7 .framer-xwno82 > :first-child, .framer-RGTB7 .framer-1uyf8oe > :first-child, .framer-RGTB7 .framer-1xvr8de > :first-child, .framer-RGTB7 .framer-70ei7q > :first-child, .framer-RGTB7 .framer-9ki313 > :first-child, .framer-RGTB7 .framer-18gzhw6 > :first-child, .framer-RGTB7 .framer-1buom5z > :first-child, .framer-RGTB7 .framer-da6quf > :first-child, .framer-RGTB7 .framer-5ut1fe > :first-child, .framer-RGTB7 .framer-1hzmwqk > :first-child, .framer-RGTB7 .framer-2s1ibt > :first-child, .framer-RGTB7 .framer-k75uyn > :first-child, .framer-RGTB7 .framer-1gyp9o2 > :first-child, .framer-RGTB7 .framer-1wnc55q > :first-child, .framer-RGTB7 .framer-r5v6z2 > :first-child, .framer-RGTB7 .framer-jdqgpp > :first-child, .framer-RGTB7 .framer-1b78kl2 > :first-child, .framer-RGTB7 .framer-1mi1qvm > :first-child, .framer-RGTB7 .framer-1l9ouvz > :first-child, .framer-RGTB7 .framer-1onlsey > :first-child, .framer-RGTB7 .framer-1nrkb69 > :first-child, .framer-RGTB7 .framer-66cwju > :first-child, .framer-RGTB7 .framer-sc1s9j > :first-child, .framer-RGTB7 .framer-1ad02fu > :first-child, .framer-RGTB7 .framer-1jghy3n > :first-child, .framer-RGTB7 .framer-1jjhfxo > :first-child, .framer-RGTB7 .framer-bcpla8 > :first-child, .framer-RGTB7 .framer-9s7m3w > :first-child, .framer-RGTB7 .framer-14pwief > :first-child, .framer-RGTB7 .framer-9x107f > :first-child, .framer-RGTB7 .framer-hk9gmh > :first-child, .framer-RGTB7 .framer-10rxg7k > :first-child, .framer-RGTB7 .framer-1n3ak81 > :first-child, .framer-RGTB7 .framer-1q6uqqw > :first-child, .framer-RGTB7 .framer-yrqvym > :first-child, .framer-RGTB7 .framer-1pqrury > :first-child, .framer-RGTB7 .framer-ev3wmj > :first-child, .framer-RGTB7 .framer-r3123y > :first-child, .framer-RGTB7 .framer-1fgdhly > :first-child, .framer-RGTB7 .framer-1rwi7py > :first-child, .framer-RGTB7 .framer-beu8sx > :first-child, .framer-RGTB7 .framer-15atjyv > :first-child, .framer-RGTB7 .framer-1w7gcfz > :first-child, .framer-RGTB7 .framer-1ao299l > :first-child, .framer-RGTB7 .framer-gn1y1i > :first-child, .framer-RGTB7 .framer-1g6jztl > :first-child, .framer-RGTB7 .framer-faeux8 > :first-child, .framer-RGTB7 .framer-u13oe3 > :first-child, .framer-RGTB7 .framer-y2riwz > :first-child, .framer-RGTB7 .framer-94j1i > :first-child, .framer-RGTB7 .framer-nunk3k > :first-child, .framer-RGTB7 .framer-deyi13 > :first-child, .framer-RGTB7 .framer-ybj32h > :first-child, .framer-RGTB7 .framer-1ylqzsg > :first-child, .framer-RGTB7 .framer-6s29nh > :first-child, .framer-RGTB7 .framer-shb3gt > :first-child, .framer-RGTB7 .framer-14f45lu > :first-child, .framer-RGTB7 .framer-ca8riv > :first-child, .framer-RGTB7 .framer-8hiec3 > :first-child, .framer-RGTB7 .framer-1p5vswk > :first-child, .framer-RGTB7 .framer-1cxeqs0 > :first-child { margin-left: 0px; } .framer-RGTB7 .framer-2izcz7 > :last-child, .framer-RGTB7 .framer-to5trv > :last-child, .framer-RGTB7 .framer-kc8tha > :last-child, .framer-RGTB7 .framer-u109jf > :last-child, .framer-RGTB7 .framer-1m8n4k1 > :last-child, .framer-RGTB7 .framer-gk98r1 > :last-child, .framer-RGTB7 .framer-g0wcsb > :last-child, .framer-RGTB7 .framer-1mkwjjk > :last-child, .framer-RGTB7 .framer-1prd8im > :last-child, .framer-RGTB7 .framer-1l17w61 > :last-child, .framer-RGTB7 .framer-xwno82 > :last-child, .framer-RGTB7 .framer-1uyf8oe > :last-child, .framer-RGTB7 .framer-1xvr8de > :last-child, .framer-RGTB7 .framer-70ei7q > :last-child, .framer-RGTB7 .framer-9ki313 > :last-child, .framer-RGTB7 .framer-18gzhw6 > :last-child, .framer-RGTB7 .framer-1buom5z > :last-child, .framer-RGTB7 .framer-da6quf > :last-child, .framer-RGTB7 .framer-5ut1fe > :last-child, .framer-RGTB7 .framer-1hzmwqk > :last-child, .framer-RGTB7 .framer-2s1ibt > :last-child, .framer-RGTB7 .framer-k75uyn > :last-child, .framer-RGTB7 .framer-1gyp9o2 > :last-child, .framer-RGTB7 .framer-1wnc55q > :last-child, .framer-RGTB7 .framer-r5v6z2 > :last-child, .framer-RGTB7 .framer-jdqgpp > :last-child, .framer-RGTB7 .framer-1b78kl2 > :last-child, .framer-RGTB7 .framer-1mi1qvm > :last-child, .framer-RGTB7 .framer-1l9ouvz > :last-child, .framer-RGTB7 .framer-1onlsey > :last-child, .framer-RGTB7 .framer-1nrkb69 > :last-child, .framer-RGTB7 .framer-66cwju > :last-child, .framer-RGTB7 .framer-sc1s9j > :last-child, .framer-RGTB7 .framer-1ad02fu > :last-child, .framer-RGTB7 .framer-1jghy3n > :last-child, .framer-RGTB7 .framer-1jjhfxo > :last-child, .framer-RGTB7 .framer-bcpla8 > :last-child, .framer-RGTB7 .framer-9s7m3w > :last-child, .framer-RGTB7 .framer-14pwief > :last-child, .framer-RGTB7 .framer-9x107f > :last-child, .framer-RGTB7 .framer-hk9gmh > :last-child, .framer-RGTB7 .framer-10rxg7k > :last-child, .framer-RGTB7 .framer-1n3ak81 > :last-child, .framer-RGTB7 .framer-1q6uqqw > :last-child, .framer-RGTB7 .framer-yrqvym > :last-child, .framer-RGTB7 .framer-1pqrury > :last-child, .framer-RGTB7 .framer-ev3wmj > :last-child, .framer-RGTB7 .framer-r3123y > :last-child, .framer-RGTB7 .framer-1fgdhly > :last-child, .framer-RGTB7 .framer-1rwi7py > :last-child, .framer-RGTB7 .framer-beu8sx > :last-child, .framer-RGTB7 .framer-15atjyv > :last-child, .framer-RGTB7 .framer-1w7gcfz > :last-child, .framer-RGTB7 .framer-1ao299l > :last-child, .framer-RGTB7 .framer-gn1y1i > :last-child, .framer-RGTB7 .framer-1g6jztl > :last-child, .framer-RGTB7 .framer-faeux8 > :last-child, .framer-RGTB7 .framer-u13oe3 > :last-child, .framer-RGTB7 .framer-y2riwz > :last-child, .framer-RGTB7 .framer-94j1i > :last-child, .framer-RGTB7 .framer-nunk3k > :last-child, .framer-RGTB7 .framer-deyi13 > :last-child, .framer-RGTB7 .framer-ybj32h > :last-child, .framer-RGTB7 .framer-1ylqzsg > :last-child, .framer-RGTB7 .framer-6s29nh > :last-child, .framer-RGTB7 .framer-shb3gt > :last-child, .framer-RGTB7 .framer-14f45lu > :last-child, .framer-RGTB7 .framer-ca8riv > :last-child, .framer-RGTB7 .framer-8hiec3 > :last-child, .framer-RGTB7 .framer-1p5vswk > :last-child, .framer-RGTB7 .framer-1cxeqs0 > :last-child { margin-right: 0px; } .framer-RGTB7 .framer-1ah43zw > *, .framer-RGTB7 .framer-1nvmfxj > *, .framer-RGTB7 .framer-1yiyssa > *, .framer-RGTB7 .framer-azxmux > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-RGTB7 .framer-y6zm2j > *, .framer-RGTB7 .framer-znwd89 > *, .framer-RGTB7 .framer-swbal9 > *, .framer-RGTB7 .framer-1o5g9iy > *, .framer-RGTB7 .framer-1ikozbc > *, .framer-RGTB7 .framer-nijjdi > *, .framer-RGTB7 .framer-sjcgah > *, .framer-RGTB7 .framer-18tgylo > *, .framer-RGTB7 .framer-51zy1r > *, .framer-RGTB7 .framer-dnpsfe > *, .framer-RGTB7 .framer-wlqg4d > *, .framer-RGTB7 .framer-17thtm7 > *, .framer-RGTB7 .framer-1akl6bn > *, .framer-RGTB7 .framer-1m8wzb6 > *, .framer-RGTB7 .framer-1n1f2n3 > *, .framer-RGTB7 .framer-l89oif > *, .framer-RGTB7 .framer-1qsu76x > *, .framer-RGTB7 .framer-fnv2wl > *, .framer-RGTB7 .framer-6mon9s > *, .framer-RGTB7 .framer-uzo7ki > *, .framer-RGTB7 .framer-1iglmnc > *, .framer-RGTB7 .framer-d3efkk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-RGTB7 .framer-1dmhj0k > *, .framer-RGTB7 .framer-zq9kud > *, .framer-RGTB7 .framer-14zuprv > *, .framer-RGTB7 .framer-u9arvt > *, .framer-RGTB7 .framer-inhq4d > *, .framer-RGTB7 .framer-rlmw1t > *, .framer-RGTB7 .framer-3vf20t > *, .framer-RGTB7 .framer-xuvt0b > *, .framer-RGTB7 .framer-17do4vc > *, .framer-RGTB7 .framer-uu4lbb > *, .framer-RGTB7 .framer-kzmjlf > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-RGTB7 .framer-11p5yav > *, .framer-RGTB7 .framer-1tzsak1 > *, .framer-RGTB7 .framer-13i56yn > *, .framer-RGTB7 .framer-1lc4m7q > *, .framer-RGTB7 .framer-1s2jkhk > *, .framer-RGTB7 .framer-vvpwbg > *, .framer-RGTB7 .framer-1m9rx0j > *, .framer-RGTB7 .framer-1o7rqgl > *, .framer-RGTB7 .framer-1725cva > *, .framer-RGTB7 .framer-i6c8t1 > *, .framer-RGTB7 .framer-zsy4hj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RGTB7 .framer-r5v6z2 > *, .framer-RGTB7 .framer-1ao299l > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-RGTB7 .framer-1xk36vc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-RGTB7 .framer-uau82j > *, .framer-RGTB7 .framer-1izmx67 > *, .framer-RGTB7 .framer-kfh3gt > *, .framer-RGTB7 .framer-1su2rjn > *, .framer-RGTB7 .framer-1er1we8 > *, .framer-RGTB7 .framer-smrone > *, .framer-RGTB7 .framer-1s00z4p > *, .framer-RGTB7 .framer-19bkfbf > *, .framer-RGTB7 .framer-w5p7y7 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-RGTB7 .framer-1ts5kdv > *, .framer-RGTB7 .framer-1itco3r > *, .framer-RGTB7 .framer-1wnunn > *, .framer-RGTB7 .framer-vqv0at > *, .framer-RGTB7 .framer-vgurs4 > *, .framer-RGTB7 .framer-hdh7jt > *, .framer-RGTB7 .framer-1wio67o > *, .framer-RGTB7 .framer-dyxe23 > *, .framer-RGTB7 .framer-1wcooup > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-RGTB7 .framer-10s12df > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-RGTB7 .framer-gn1y1i > *, .framer-RGTB7 .framer-1g6jztl > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-RGTB7 .framer-y2riwz > *, .framer-RGTB7 .framer-deyi13 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-RGTB7[data-border=\"true\"]::after, .framer-RGTB7 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-RGTB7.framer-171s2n2 { width: 810px; } .framer-RGTB7 .framer-8xgu8e-container, .framer-RGTB7 .framer-ykh0ze { order: 0; } .framer-RGTB7 .framer-1ymkq97-container { order: 1; } .framer-RGTB7 .framer-1262uqk { order: 2; padding: 0px 0px 20px 0px; } .framer-RGTB7 .framer-1pp2acb { right: -49px; top: 111px; } .framer-RGTB7 .framer-1i9dkga { padding: 74px 60px 25px 40px; } .framer-RGTB7 .framer-o59m1i, .framer-RGTB7 .framer-2izcz7, .framer-RGTB7 .framer-to5trv, .framer-RGTB7 .framer-x7mcgm-container, .framer-RGTB7 .framer-1lrixwl { width: 100%; } .framer-RGTB7 .framer-1gpjv33 { flex: 1 0 0px; width: 1px; } .framer-RGTB7 .framer-1ed4dr0 { padding: 28px 0px 50px 40px; } .framer-RGTB7 .framer-10jdcg9-container { height: var(--framer-aspect-ratio-supported, 383px); width: 680px; } .framer-RGTB7 .framer-uneyqe { padding: 0px 60px 25px 40px; } .framer-RGTB7 .framer-1q4ti5y { padding: 4px 40px 4px 40px; } .framer-RGTB7 .framer-ibqvm5 { border-bottom-left-radius: 29px; border-bottom-right-radius: 29px; border-top-left-radius: 29px; border-top-right-radius: 29px; padding: 50px 30px 0px 30px; } .framer-RGTB7 .framer-6kv4jv { order: 3; } .framer-RGTB7 .framer-r5v6z2 { order: 4; padding: 100px 30px 100px 30px; } .framer-RGTB7 .framer-lcm4d5 { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-RGTB7 .framer-1uoojwh { bottom: 7px; height: 240px; left: calc(50.68493150684934% - 350px / 2); right: unset; width: 350px; } .framer-RGTB7 .framer-xl8gy1 { bottom: 0px; height: 237px; left: -20px; right: -12px; } .framer-RGTB7 .framer-1q67z70 { grid-column: auto / span 2; } .framer-RGTB7 .framer-87nep6 { bottom: -15px; height: unset; left: unset; right: -12px; top: -14px; width: 440px; } .framer-RGTB7 .framer-13i56yn { order: 5; } .framer-RGTB7 .framer-1oebifi { width: 81%; } .framer-RGTB7 .framer-jdqgpp { order: 6; } .framer-RGTB7 .framer-msjdzz { order: 7; } .framer-RGTB7 .framer-1ao299l { padding: 0px 30px 0px 30px; } .framer-RGTB7 .framer-13vcas7 { width: 80%; } .framer-RGTB7 .framer-1g6jztl { flex-direction: column; gap: 20px; } .framer-RGTB7 .framer-17cw2en { height: 403px; width: 100%; } .framer-RGTB7 .framer-1i0atqg { flex: none; width: 100%; } .framer-RGTB7 .framer-18go5va, .framer-RGTB7 .framer-1ozik4r { grid-template-columns: repeat(2, minmax(50px, 1fr)); padding: 0px 0px 50px 0px; } .framer-RGTB7 .framer-1o943zw { order: 1; width: 75%; } .framer-RGTB7 .framer-1lxfd { order: 8; } .framer-RGTB7 .framer-1yhgpmy { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-RGTB7 .framer-1ax7m6i, .framer-RGTB7 .framer-by5qb5 { aspect-ratio: unset; height: 240px; width: 100%; } .framer-RGTB7 .framer-vffzhh-container { order: 10; } .framer-RGTB7 .framer-1b45fdi-container { order: 11; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RGTB7 .framer-1g6jztl { gap: 0px; } .framer-RGTB7 .framer-1g6jztl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RGTB7 .framer-1g6jztl > :first-child { margin-top: 0px; } .framer-RGTB7 .framer-1g6jztl > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-RGTB7.framer-171s2n2 { width: 390px; } .framer-RGTB7 .framer-1ymkq97-container { z-index: 10; } .framer-RGTB7 .framer-1pp2acb { height: 457px; right: -51px; top: 53px; width: 327px; } .framer-RGTB7 .framer-1i9dkga { padding: 55px 20px 15px 20px; } .framer-RGTB7 .framer-o59m1i { order: 0; width: 100%; } .framer-RGTB7 .framer-2izcz7, .framer-RGTB7 .framer-to5trv, .framer-RGTB7 .framer-1j88kng, .framer-RGTB7 .framer-13vcas7, .framer-RGTB7 .framer-x7mcgm-container { width: 100%; } .framer-RGTB7 .framer-1gpjv33 { max-width: 100%; } .framer-RGTB7 .framer-1ed4dr0 { padding: 36px 0px 0px 20px; } .framer-RGTB7 .framer-10jdcg9-container { height: var(--framer-aspect-ratio-supported, 197px); width: 350px; } .framer-RGTB7 .framer-uneyqe { padding: 35px 20px 15px 20px; } .framer-RGTB7 .framer-1ah43zw { gap: 18px; order: 0; padding: 0px 0px 32px 0px; } .framer-RGTB7 .framer-1ncnp2j, .framer-RGTB7 .framer-flvsp6, .framer-RGTB7 .framer-33xft1 { max-width: 100%; width: 100%; } .framer-RGTB7 .framer-1q4ti5y { padding: 0px 20px 0px 20px; } .framer-RGTB7 .framer-ibqvm5 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 30px 0px 0px 0px; } .framer-RGTB7 .framer-gy5l7j { padding: 0px 0px 32px 20px; } .framer-RGTB7 .framer-kc8tha, .framer-RGTB7 .framer-1m8n4k1, .framer-RGTB7 .framer-g0wcsb, .framer-RGTB7 .framer-1prd8im, .framer-RGTB7 .framer-xwno82, .framer-RGTB7 .framer-1xvr8de, .framer-RGTB7 .framer-9ki313, .framer-RGTB7 .framer-1buom5z, .framer-RGTB7 .framer-5ut1fe, .framer-RGTB7 .framer-2s1ibt, .framer-RGTB7 .framer-1gyp9o2 { gap: 0px; } .framer-RGTB7 .framer-110z9po, .framer-RGTB7 .framer-18fsqhm, .framer-RGTB7 .framer-yl244m, .framer-RGTB7 .framer-igv23y, .framer-RGTB7 .framer-sqdao9, .framer-RGTB7 .framer-11p5yav { width: 50px; } .framer-RGTB7 .framer-u109jf, .framer-RGTB7 .framer-gk98r1, .framer-RGTB7 .framer-1mkwjjk, .framer-RGTB7 .framer-1l17w61, .framer-RGTB7 .framer-1uyf8oe, .framer-RGTB7 .framer-70ei7q, .framer-RGTB7 .framer-18gzhw6, .framer-RGTB7 .framer-da6quf, .framer-RGTB7 .framer-1hzmwqk, .framer-RGTB7 .framer-k75uyn, .framer-RGTB7 .framer-1wnc55q { height: 48px; width: 48px; } .framer-RGTB7 .framer-znwd89, .framer-RGTB7 .framer-nijjdi, .framer-RGTB7 .framer-dnpsfe, .framer-RGTB7 .framer-1m8wzb6, .framer-RGTB7 .framer-fnv2wl { padding: 0px 30px 70px 0px; } .framer-RGTB7 .framer-swbal9, .framer-RGTB7 .framer-sjcgah, .framer-RGTB7 .framer-wlqg4d, .framer-RGTB7 .framer-1n1f2n3, .framer-RGTB7 .framer-6mon9s { order: 1; padding: 0px 30px 70px 0px; } .framer-RGTB7 .framer-yrb7ny, .framer-RGTB7 .framer-1gpxse4, .framer-RGTB7 .framer-eysho, .framer-RGTB7 .framer-19o1sng, .framer-RGTB7 .framer-cxwuiw { order: 0; width: 50px; } .framer-RGTB7 .framer-d3efkk { padding: 0px 30px 50px 0px; } .framer-RGTB7 .framer-6kv4jv { background-color: #8ca8d7; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; gap: 55px; } .framer-RGTB7 .framer-r5v6z2, .framer-RGTB7 .framer-1ao299l { padding: 40px 24px 40px 24px; } .framer-RGTB7 .framer-lcm4d5 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-RGTB7 .framer-1uoojwh { bottom: 10px; height: 225px; left: calc(50.00000000000002% - 323px / 2); right: unset; width: 323px; } .framer-RGTB7 .framer-xl8gy1 { bottom: 0px; height: 227px; left: -12px; right: -12px; } .framer-RGTB7 .framer-87nep6 { bottom: -23px; height: 271px; left: -4px; right: -70px; } .framer-RGTB7 .framer-1oebifi { width: 83%; } .framer-RGTB7 .framer-10s12df { gap: 40px; } .framer-RGTB7 .framer-1lc4m7q { padding: 48px 0px 0px 0px; } .framer-RGTB7 .framer-1g6jztl { flex-direction: column; gap: 20px; } .framer-RGTB7 .framer-17cw2en, .framer-RGTB7 .framer-1lrixwl { height: 200px; width: 100%; } .framer-RGTB7 .framer-1i0atqg { flex: none; width: 100%; } .framer-RGTB7 .framer-18go5va, .framer-RGTB7 .framer-1ozik4r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-RGTB7 .framer-1s2jkhk, .framer-RGTB7 .framer-1m9rx0j { align-self: unset; height: min-content; } .framer-RGTB7 .framer-1o7rqgl { padding: 50px 0px 29px 0px; } .framer-RGTB7 .framer-1o943zw { width: 86%; } .framer-RGTB7 .framer-1lxfd { padding: 12px 40px 100px 40px; } .framer-RGTB7 .framer-1yhgpmy { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-RGTB7 .framer-14f45lu, .framer-RGTB7 .framer-8hiec3, .framer-RGTB7 .framer-1cxeqs0 { flex: 1 0 0px; width: 1px; } .framer-RGTB7 .framer-1ax7m6i, .framer-RGTB7 .framer-by5qb5 { aspect-ratio: unset; height: 200px; width: 100%; } .framer-RGTB7 .framer-a74dcx-container { max-width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RGTB7 .framer-1ah43zw, .framer-RGTB7 .framer-kc8tha, .framer-RGTB7 .framer-1m8n4k1, .framer-RGTB7 .framer-g0wcsb, .framer-RGTB7 .framer-1prd8im, .framer-RGTB7 .framer-xwno82, .framer-RGTB7 .framer-1xvr8de, .framer-RGTB7 .framer-9ki313, .framer-RGTB7 .framer-1buom5z, .framer-RGTB7 .framer-5ut1fe, .framer-RGTB7 .framer-2s1ibt, .framer-RGTB7 .framer-1gyp9o2, .framer-RGTB7 .framer-6kv4jv, .framer-RGTB7 .framer-10s12df, .framer-RGTB7 .framer-1g6jztl, .framer-RGTB7 .framer-18go5va, .framer-RGTB7 .framer-1ozik4r { gap: 0px; } .framer-RGTB7 .framer-1ah43zw > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-RGTB7 .framer-1ah43zw > :first-child, .framer-RGTB7 .framer-6kv4jv > :first-child, .framer-RGTB7 .framer-10s12df > :first-child, .framer-RGTB7 .framer-1g6jztl > :first-child, .framer-RGTB7 .framer-18go5va > :first-child, .framer-RGTB7 .framer-1ozik4r > :first-child { margin-top: 0px; } .framer-RGTB7 .framer-1ah43zw > :last-child, .framer-RGTB7 .framer-6kv4jv > :last-child, .framer-RGTB7 .framer-10s12df > :last-child, .framer-RGTB7 .framer-1g6jztl > :last-child, .framer-RGTB7 .framer-18go5va > :last-child, .framer-RGTB7 .framer-1ozik4r > :last-child { margin-bottom: 0px; } .framer-RGTB7 .framer-kc8tha > *, .framer-RGTB7 .framer-1m8n4k1 > *, .framer-RGTB7 .framer-g0wcsb > *, .framer-RGTB7 .framer-1prd8im > *, .framer-RGTB7 .framer-xwno82 > *, .framer-RGTB7 .framer-1xvr8de > *, .framer-RGTB7 .framer-9ki313 > *, .framer-RGTB7 .framer-1buom5z > *, .framer-RGTB7 .framer-5ut1fe > *, .framer-RGTB7 .framer-2s1ibt > *, .framer-RGTB7 .framer-1gyp9o2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-RGTB7 .framer-kc8tha > :first-child, .framer-RGTB7 .framer-1m8n4k1 > :first-child, .framer-RGTB7 .framer-g0wcsb > :first-child, .framer-RGTB7 .framer-1prd8im > :first-child, .framer-RGTB7 .framer-xwno82 > :first-child, .framer-RGTB7 .framer-1xvr8de > :first-child, .framer-RGTB7 .framer-9ki313 > :first-child, .framer-RGTB7 .framer-1buom5z > :first-child, .framer-RGTB7 .framer-5ut1fe > :first-child, .framer-RGTB7 .framer-2s1ibt > :first-child, .framer-RGTB7 .framer-1gyp9o2 > :first-child { margin-left: 0px; } .framer-RGTB7 .framer-kc8tha > :last-child, .framer-RGTB7 .framer-1m8n4k1 > :last-child, .framer-RGTB7 .framer-g0wcsb > :last-child, .framer-RGTB7 .framer-1prd8im > :last-child, .framer-RGTB7 .framer-xwno82 > :last-child, .framer-RGTB7 .framer-1xvr8de > :last-child, .framer-RGTB7 .framer-9ki313 > :last-child, .framer-RGTB7 .framer-1buom5z > :last-child, .framer-RGTB7 .framer-5ut1fe > :last-child, .framer-RGTB7 .framer-2s1ibt > :last-child, .framer-RGTB7 .framer-1gyp9o2 > :last-child { margin-right: 0px; } .framer-RGTB7 .framer-6kv4jv > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } .framer-RGTB7 .framer-10s12df > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-RGTB7 .framer-1g6jztl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RGTB7 .framer-18go5va > *, .framer-RGTB7 .framer-1ozik4r > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15169\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"foYvvwRAb\":{\"layout\":[\"fixed\",\"auto\"]},\"DPEUyTGVw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"VCknjC0zj\":{\"pattern\":\":VCknjC0zj\",\"name\":\"1\"},\"SfpOIi0lF\":{\"pattern\":\":SfpOIi0lF\",\"name\":\"2\"},\"jsIteLmdm\":{\"pattern\":\":jsIteLmdm\",\"name\":\"3\"},\"EO57tBs11\":{\"pattern\":\":EO57tBs11\",\"name\":\"4\"},\"iDBAAd8Hn\":{\"pattern\":\":iDBAAd8Hn\",\"name\":\"3\"},\"de3vTikB3\":{\"pattern\":\":de3vTikB3\",\"name\":\"4\"},\"uikHFbT8J\":{\"pattern\":\":uikHFbT8J\",\"name\":\"3\"},\"eKqtD7L7Z\":{\"pattern\":\":eKqtD7L7Z\",\"name\":\"2\"},\"ay661TDXH\":{\"pattern\":\":ay661TDXH\",\"name\":\"3\"},\"z76AEws9l\":{\"pattern\":\":z76AEws9l\",\"name\":\"2\"},\"wBklrs3Ch\":{\"pattern\":\":wBklrs3Ch\",\"name\":\"5\"},\"tkvS8PgG_\":{\"pattern\":\":tkvS8PgG_\",\"name\":\"video\"}}\n * @framerResponsiveScreen\n */const FramergdhhBaSMc=withCSS(Component,css,\"framer-RGTB7\");export default FramergdhhBaSMc;FramergdhhBaSMc.displayName=\"Research\";FramergdhhBaSMc.defaultProps={height:15169,width:1200};addFonts(FramergdhhBaSMc,[{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:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...Banner2Fonts,...Navigation3Fonts,...YouTubeFonts,...AccordionAccordion3Fonts,...AnimatedNumberCounterFonts,...HeroFonts,...SlideshowFonts,...LoadMoreFonts,...LoadMore2Fonts,...YouTubePlaylistPlayerFramerFonts,...Hero1Fonts,...NewsletterFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergdhhBaSMc\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"15169\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"foYvvwRAb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DPEUyTGVw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"VCknjC0zj\\\":{\\\"pattern\\\":\\\":VCknjC0zj\\\",\\\"name\\\":\\\"1\\\"},\\\"SfpOIi0lF\\\":{\\\"pattern\\\":\\\":SfpOIi0lF\\\",\\\"name\\\":\\\"2\\\"},\\\"jsIteLmdm\\\":{\\\"pattern\\\":\\\":jsIteLmdm\\\",\\\"name\\\":\\\"3\\\"},\\\"EO57tBs11\\\":{\\\"pattern\\\":\\\":EO57tBs11\\\",\\\"name\\\":\\\"4\\\"},\\\"iDBAAd8Hn\\\":{\\\"pattern\\\":\\\":iDBAAd8Hn\\\",\\\"name\\\":\\\"3\\\"},\\\"de3vTikB3\\\":{\\\"pattern\\\":\\\":de3vTikB3\\\",\\\"name\\\":\\\"4\\\"},\\\"uikHFbT8J\\\":{\\\"pattern\\\":\\\":uikHFbT8J\\\",\\\"name\\\":\\\"3\\\"},\\\"eKqtD7L7Z\\\":{\\\"pattern\\\":\\\":eKqtD7L7Z\\\",\\\"name\\\":\\\"2\\\"},\\\"ay661TDXH\\\":{\\\"pattern\\\":\\\":ay661TDXH\\\",\\\"name\\\":\\\"3\\\"},\\\"z76AEws9l\\\":{\\\"pattern\\\":\\\":z76AEws9l\\\",\\\"name\\\":\\\"2\\\"},\\\"wBklrs3Ch\\\":{\\\"pattern\\\":\\\":wBklrs3Ch\\\",\\\"name\\\":\\\"5\\\"},\\\"tkvS8PgG_\\\":{\\\"pattern\\\":\\\":tkvS8PgG_\\\",\\\"name\\\":\\\"video\\\"}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["NumberAnimator", "props", "ref", "pe", "isInView", "useInView", "numberText", "setNumberText", "ye", "start", "end", "decimals", "commas", "rounding", "fontColor", "animation", "currentAnimation", "setCurrentAnimation", "isCanvas", "RenderTarget", "formatNumber", "value", "numberString", "runAnimation", "animate", "latest", "ue", "u", "motion", "addPropertyControls", "ControlType", "Component", "Home_default", "React", "title", "titleId", "props", "svgRef", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "Home_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "defaultEvents", "noopReturn", "t", "isFunction", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "e", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "t", "P", "j", "testAnimation", "e", "t", "C", "R", "H", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "MotionDivWithFX", "withFX", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Wld3NDzSj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapn9xadi", "args", "sharedStyleClassNames", "isDisplayed", "scopingClassNames", "cx", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "RichText2", "css", "FramerMRESCmdTI", "withCSS", "MRESCmdTI_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Wld3NDzSj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapn9xadi", "args", "sharedStyleClassNames", "isDisplayed", "scopingClassNames", "cx", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "RichText2", "css", "FramerrLdDiQzHx", "withCSS", "rLdDiQzHx_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "W88zB8mIG", "wpkm0Au7d", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1e56eyd", "args", "onTap1dsfq7", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "ComponentPresetsProvider", "css", "Framervh4ztMvfu", "withCSS", "vh4ztMvfu_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "YouTubePlaylistPlayer", "playlistId", "playlistTitle", "titleSize", "titleWeight", "titleColor", "showScrollIndicators", "deviceType", "videos", "setVideos", "ye", "currentIndex", "setCurrentIndex", "player", "setPlayer", "playerReady", "setPlayerReady", "loading", "setLoading", "canScrollLeft", "setCanScrollLeft", "canScrollRight", "setCanScrollRight", "playerContainerRef", "pe", "thumbnailsContainerRef", "ue", "window", "initializePlayer", "tag", "firstScriptTag", "checkScroll", "scrollLeft", "scrollWidth", "clientWidth", "container", "playerElement", "newPlayer", "onPlayerReady", "onPlayerStateChange", "err", "event", "playlist", "playlistData", "i", "newIndex", "currentThumbnail", "containerRect", "thumbnailRect", "handleVideoSelect", "index", "scrollThumbnails", "direction", "scrollAmount", "targetScroll", "containerStyle", "videoContainerStyle", "aspectRatioStyle", "playerStyle", "titleStyle", "size", "scrollContainerWrapperStyle", "thumbnailsContainerStyle", "leftGradientStyle", "rightGradientStyle", "getButtonSize", "scrollButtonBaseStyle", "leftButtonStyle", "rightButtonStyle", "getThumbnailWidth", "thumbnailRowStyle", "getThumbnailStyle", "isActive", "thumbnailImageContainerStyle", "thumbnailImageStyle", "thumbnailOverlayStyle", "playIconStyle", "thumbnailTitleStyle", "loadingItemStyle", "noVideosStyle", "u", "p", "l", "video", "scrollbarHideStyle", "YouTubePlaylistPlayerFramer", "props", "addPropertyControls", "ControlType", "Banner2Fonts", "getFonts", "vUW4t1HjG_default", "Navigation3Fonts", "o95UEGztn_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "YouTubeFonts", "Youtube", "MotionDivWithFX", "withFX", "AccordionAccordion3Fonts", "vh4ztMvfu_default", "AnimatedNumberCounterFonts", "NumberAnimator", "HeroFonts", "Icon", "SlideshowFonts", "Slideshow", "LoadMoreFonts", "MRESCmdTI_default", "LoadMore2Fonts", "rLdDiQzHx_default", "YouTubePlaylistPlayerFramerFonts", "YouTubePlaylistPlayerFramer", "Hero1Fonts", "NewsletterFonts", "jK0vP92l5_default", "FooterFonts", "KNMzQSHo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "transition3", "animation4", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "transition4", "animation5", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "loaderVariants", "repeaterState", "variants", "currentVariant", "QueryData1", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "QueryData2", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "d0hP9ziffmmFpYDRSp", "xIuIOIUnEmmFpYDRSp", "FQ8Q8WVKnmmFpYDRSp", "SzXyRj9UNMus6qV5nP", "K4uDDF8uWmmFpYDRSp", "mMIHckbLgmmFpYDRSp", "idmmFpYDRSp", "d0hP9ziffxSTsu5jkd", "xIuIOIUnExSTsu5jkd", "u7XBDMXZUxSTsu5jkd", "mMIHckbLgxSTsu5jkd", "SzXyRj9UNoIaES_x26", "idxSTsu5jkd", "O5XejjypjBMWwYAiTx", "Z_UeVuguZBMWwYAiTx", "vOHzwFdw_BMWwYAiTx", "Mxu4OfS88BMWwYAiTx", "idBMWwYAiTx", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "Wld3NDzSj1b86s49", "overlay", "args", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "elementId11", "ref12", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "Image2", "x", "RichText2", "Link", "ChildrenCanSuspend", "Q8AYnmjJX_default", "collection", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "E2KQ2ZR16_default", "collection2", "paginationInfo2", "loadMore2", "index2", "css", "FramergdhhBaSMc", "withCSS", "gdhhBaSMc_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
