{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/tTa7SkgIvSxH6varE7KA/a7A19L0Kn4KpZKfUWs17/CxwIqBsPN.js", "ssg:https://framerusercontent.com/modules/qddgM1rlaHGkSUab8LmJ/xKzEEEXZuqWBEhKXp0gC/coXKIt1rS.js", "ssg:https://framerusercontent.com/modules/sxJHT1expWBcP1aJ5Tz2/6EXGTizlnFRTjPpyrAZN/J4K8Vs4Dv.js", "ssg:https://framerusercontent.com/modules/3ycdaNMmaeU2AaTPcDSb/N92HZidbg4lJGKn8zuQD/Oq9AnEjTz.js", "ssg:https://framerusercontent.com/modules/r2Pc3VtuAWyVXs77fKpU/1YiTFkF1mObgg7cKf5ua/VDRHFoji0.js", "ssg:https://framerusercontent.com/modules/Of0DV8CREk2Lw9rmL3mX/I4tiKRKN8oaD9QjLwTEy/YjW8dx7Xb.js", "ssg:https://framerusercontent.com/modules/EwHeV2YsD1glm7TrTTfw/tvFlV1Z9MIn1S1jbR6yl/ykFRluUSC.js", "ssg:https://framerusercontent.com/modules/pLKAJUGQpG0PwklpN080/XvLNmXsFDs6JUPOsOQft/zpiObbS1e.js", "ssg:https://framerusercontent.com/modules/aNFdcoSWXZcAiZF12vRI/PxltrXPPqd7dB3XIni4U/zipLk6crX.js"],
  "sourcesContent": ["import { useState, useEffect } from \"react\";\nexport const isBrowser = () => typeof document === \"object\";\nexport function getBrowserVisibilityProp() {\n  if (!isBrowser()) return;\n  if (typeof document.hidden !== \"undefined\") {\n    // Opera 12.10 and Firefox 18 and later support\n    return \"visibilitychange\";\n  } else if (typeof document.msHidden !== \"undefined\") {\n    return \"msvisibilitychange\";\n  } else if (typeof document.webkitHidden !== \"undefined\") {\n    return \"webkitvisibilitychange\";\n  }\n}\nexport function getBrowserDocumentHiddenProp() {\n  if (!isBrowser()) return;\n  if (typeof document.hidden !== \"undefined\") {\n    return \"hidden\";\n  } else if (typeof document.msHidden !== \"undefined\") {\n    return \"msHidden\";\n  } else if (typeof document.webkitHidden !== \"undefined\") {\n    return \"webkitHidden\";\n  }\n}\nexport function getIsDocumentHidden() {\n  if (!isBrowser()) return;\n  return !document[getBrowserDocumentHiddenProp()];\n}\nexport function usePageVisibility() {\n  if (!isBrowser()) return;\n  const [isVisible, setIsVisible] = useState(getIsDocumentHidden());\n  const onVisibilityChange = () => setIsVisible(getIsDocumentHidden());\n  useEffect(() => {\n    const visibilityChange = getBrowserVisibilityProp();\n    document.addEventListener(visibilityChange, onVisibilityChange, false);\n    return () => {\n      document.removeEventListener(visibilityChange, onVisibilityChange);\n    };\n  });\n  return isVisible;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"getBrowserVisibilityProp\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"getIsDocumentHidden\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"usePageVisibility\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"isBrowser\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"getBrowserDocumentHiddenProp\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./UsePageVisibility.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { Children, useLayoutEffect, useEffect, useState, useRef, useMemo, createRef, useCallback, cloneElement, forwardRef } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport { motion, animate, useMotionValue, useTransform, LayoutGroup, wrap, sync } from \"framer-motion\";\nimport { resize } from \"@motionone/dom\";\nimport { usePageVisibility } from \"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\"; /**\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                                                                                                                                          */\nexport default function Slideshow(props) {\n  /**\n  * Properties\n  */\n  const {\n    slots,\n    startFrom,\n    direction,\n    effectsOptions,\n    autoPlayControl,\n    dragControl,\n    alignment,\n    gap,\n    padding,\n    paddingPerSide,\n    paddingTop,\n    paddingRight,\n    paddingBottom,\n    paddingLeft,\n    itemAmount,\n    fadeOptions,\n    intervalControl,\n    transitionControl,\n    arrowOptions,\n    borderRadius,\n    progressOptions,\n    style\n  } = props;\n  const {\n    effectsOpacity,\n    effectsScale,\n    effectsRotate,\n    effectsPerspective,\n    effectsHover\n  } = effectsOptions;\n  const {\n    fadeContent,\n    overflow,\n    fadeWidth,\n    fadeInset,\n    fadeAlpha\n  } = fadeOptions;\n  const {\n    showMouseControls,\n    arrowSize,\n    arrowRadius,\n    arrowFill,\n    leftArrow,\n    rightArrow,\n    arrowShouldSpace = true,\n    arrowShouldFadeIn = false,\n    arrowPosition,\n    arrowPadding,\n    arrowGap,\n    arrowPaddingTop,\n    arrowPaddingRight,\n    arrowPaddingBottom,\n    arrowPaddingLeft\n  } = arrowOptions;\n  const {\n    showProgressDots,\n    dotSize,\n    dotsInset,\n    dotsRadius,\n    dotsPadding,\n    dotsGap,\n    dotsFill,\n    dotsBackground,\n    dotsActiveOpacity,\n    dotsOpacity,\n    dotsBlur\n  } = progressOptions;\n  const paddingValue = paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : `${padding}px`; /**\n                                                                                                                                  * Checks\n                                                                                                                                  */\n  const isCanvas = RenderTarget.current() === RenderTarget.canvas;\n  const hasChildren = Children.count(slots) > 0;\n  const isHorizontal = direction === \"left\" || direction === \"right\";\n  const isInverted = direction === \"right\" || direction === \"bottom\"; /**\n                                                                      * Empty state for Canvas\n                                                                      */\n  if (!hasChildren) {\n    return /*#__PURE__*/_jsxs(\"section\", {\n      style: placeholderStyles,\n      children: [/*#__PURE__*/_jsx(\"div\", {\n        style: emojiStyles,\n        children: \"\u2B50\uFE0F\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: titleStyles,\n        children: \"Connect to Content\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: subtitleStyles,\n        children: \"Add layers or components to make infinite auto-playing slideshows.\"\n      })]\n    });\n  } /**\n    * Refs, State\n    */\n  const parentRef = useRef(null);\n  const childrenRef = useMemo(() => {\n    return slots.map(index => /*#__PURE__*/createRef());\n  }, [slots]);\n  const timeoutRef = useRef(undefined);\n  const [size, setSize] = useState({\n    parent: null,\n    children: null,\n    item: null,\n    itemWidth: null,\n    itemHeight: null\n  }); /* For pausing on hover */\n  const [isHovering, setIsHovering] = useState(false);\n  const [shouldPlayOnHover, setShouldPlayOnHover] = useState(autoPlayControl); /* For cursor updates */\n  const [isMouseDown, setIsMouseDown] = useState(false); /* Check if resizing */\n  const [isResizing, setIsResizing] = useState(false); /**\n                                                       * Array for children\n                                                       */\n  const dupedChildren = [];\n  let duplicateBy = 4;\n  if (isCanvas) {\n    duplicateBy = 1;\n  } /**\n    * Measure parent, child, items\n    */\n  const measure = useCallback(() => {\n    sync.read(() => {\n      if (hasChildren && parentRef.current) {\n        const total = slots.length - 1;\n        const parentLength = isHorizontal ? parentRef.current.offsetWidth : parentRef.current.offsetHeight;\n        const start = childrenRef[0].current ? isHorizontal ? childrenRef[0].current.offsetLeft : childrenRef[0].current.offsetTop : 0;\n        const end = childrenRef[total].current ? isHorizontal ? childrenRef[total].current.offsetLeft + childrenRef[total].current.offsetWidth : childrenRef[total].current.offsetTop + childrenRef[total].current.offsetHeight : 0;\n        const childrenLength = end - start + gap;\n        const itemSize = childrenRef[0].current ? isHorizontal ? childrenRef[0].current.offsetWidth : childrenRef[0].current.offsetHeight : 0;\n        const itemWidth = childrenRef[0].current ? childrenRef[0].current.offsetWidth : 0;\n        const itemHeight = childrenRef[0].current ? childrenRef[0].current.offsetHeight : 0;\n        setSize({\n          parent: parentLength,\n          children: childrenLength,\n          item: itemSize,\n          itemWidth,\n          itemHeight\n        });\n      }\n    });\n  }, [hasChildren]); /**\n                     * Add refs to all children\n                     * Added itemAmount for resizing\n                     */\n  useLayoutEffect(() => {\n    if (hasChildren) measure();\n  }, [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                                 */\n  let initialResize = useRef(true);\n  useEffect(() => {\n    return resize(parentRef.current, ({\n      contentSize\n    }) => {\n      if (!initialResize.current && (contentSize.width || contentSize.height)) {\n        measure();\n        setIsResizing(true);\n      }\n      initialResize.current = false;\n    });\n  }, []);\n  useEffect(() => {\n    if (isResizing) {\n      const timer = setTimeout(() => setIsResizing(false), 500);\n      return () => clearTimeout(timer);\n    }\n  }, [isResizing]); /**\n                    * Animation, pagination\n                    */\n  const totalItems = slots === null || slots === void 0 ? void 0 : slots.length;\n  const childrenSize = isCanvas ? 0 : size === null || size === void 0 ? void 0 : size.children;\n  const itemWithGap = (size === null || size === void 0 ? void 0 : size.item) + gap;\n  const itemOffset = startFrom * itemWithGap;\n  const [currentItem, setCurrentItem] = useState(startFrom + totalItems);\n  const [isDragging, setIsDragging] = useState(false); /* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */\n  const isVisible = usePageVisibility();\n  const factor = isInverted ? 1 : -1; /* The x and y values to start from */\n  const xOrY = useMotionValue(childrenSize); /* For canvas only. Using xOrY is slower upon page switching */\n  const canvasPosition = isHorizontal ? -startFrom * ((size === null || size === void 0 ? void 0 : size.itemWidth) + gap) : -startFrom * ((size === null || size === void 0 ? void 0 : size.itemHeight) + gap); /* Calculate the new value to animate to */\n  const newPosition = () => factor * currentItem * itemWithGap; /* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */\n  const wrappedValue = !isCanvas ? useTransform(xOrY, value => {\n    const wrapped = wrap(-childrenSize, -childrenSize * 2, value);\n    return isNaN(wrapped) ? 0 : wrapped;\n  }) : 0; /* Convert the current item to a wrapping index for dots */\n  const wrappedIndex = wrap(0, totalItems, currentItem);\n  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 */\n  useLayoutEffect(() => {\n    if ((size === null || size === void 0 ? void 0 : size.children) === null) return; /* Initial measure */ // if (initialResize.current) {\n    //     xOrY.set((childrenSize + itemOffset) * factor)\n    // }\n    /* Subsequent resizes */\n    if (!initialResize.current && isResizing) {\n      xOrY.set(newPosition());\n    }\n  }, [size, childrenSize, factor, itemOffset, currentItem, itemWithGap, isResizing]); /**\n                                                                                      * Page item methods\n                                                                                      * Switching, deltas, autoplaying\n                                                                                      */ /* Next and previous function, animates the X */\n  const switchPages = () => {\n    if (isCanvas || !hasChildren || !size.parent || isDragging) return;\n    if (xOrY.get() !== newPosition()) {\n      animate(xOrY, newPosition(), transitionControl);\n    }\n    if (autoPlayControl && shouldPlayOnHover) {\n      timeoutRef.current = setTimeout(() => {\n        setCurrentItem(currentItem + 1);\n        switchPages();\n      }, intervalControl * 1e3);\n    }\n  }; /* Page navigation functions */\n  const setDelta = delta => {\n    if (!isInverted) {\n      setCurrentItem(currentItem + delta);\n    } else {\n      setCurrentItem(currentItem - delta);\n    }\n  };\n  const setPage = index => {\n    const currentItemWrapped = wrap(0, totalItems, currentItem);\n    const currentItemWrappedInvert = wrap(0, -totalItems, currentItem);\n    const goto = index - currentItemWrapped;\n    const gotoInverted = index - Math.abs(currentItemWrappedInvert);\n    if (!isInverted) {\n      setCurrentItem(currentItem + goto);\n    } else {\n      setCurrentItem(currentItem - gotoInverted);\n    }\n  }; /**\n     * Drag\n     */\n  const handleDragStart = () => {\n    setIsDragging(true);\n  };\n  const handleDragEnd = (event, {\n    offset,\n    velocity\n  }) => {\n    setIsDragging(false);\n    const offsetXorY = isHorizontal ? offset.x : offset.y;\n    const velocityThreshold = 200 // Based on testing, can be tweaked or could be 0\n    ;\n    const velocityXorY = isHorizontal ? velocity.x : velocity.y;\n    const isHalfOfNext = offsetXorY < -size.item / 2;\n    const isHalfOfPrev = offsetXorY > size.item / 2; /* In case you drag more than 1 item left or right */\n    const normalizedOffset = Math.abs(offsetXorY);\n    const itemDelta = Math.round(normalizedOffset / size.item); /* Minimum delta is 1 to initiate a page switch */ /* For velocity use only */\n    const itemDeltaFromOne = itemDelta === 0 ? 1 : itemDelta; /* For quick flicks, even with low offsets */\n    if (velocityXorY > velocityThreshold) {\n      setDelta(-itemDeltaFromOne);\n    } else if (velocityXorY < -velocityThreshold) {\n      setDelta(itemDeltaFromOne);\n    } else {\n      /* For dragging over half of the current item with 0 velocity */if (isHalfOfNext) {\n        setDelta(itemDelta);\n      }\n      if (isHalfOfPrev) {\n        setDelta(-itemDelta);\n      }\n    }\n  }; /* Kickstart the auto-playing once we have all the children */\n  useEffect(() => {\n    if (!isVisible || isResizing) return;\n    switchPages();\n    return () => timeoutRef.current && clearTimeout(timeoutRef.current);\n  }, [dupedChildren, isVisible, isResizing]); /* Create copies of our children to create a perfect loop */\n  let childCounter = 0; /**\n                        * Sizing\n                        * */\n  let 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                                                                                          */\n  for (let index = 0; index < duplicateBy; index++) {\n    dupedChildren.push(...Children.map(slots, (child, childIndex) => {\n      let ref;\n      if (childIndex === 0) {\n        ref = childrenRef[0];\n      }\n      if (childIndex === slots.length - 1) {\n        ref = childrenRef[1];\n      }\n      return /*#__PURE__*/_jsx(Slide, {\n        ref: childrenRef[childIndex],\n        slideKey: index + childIndex + \"lg\",\n        index: index,\n        width: isHorizontal ? itemAmount > 1 ? columnOrRowValue : \"100%\" : \"100%\",\n        height: !isHorizontal ? itemAmount > 1 ? columnOrRowValue : \"100%\" : \"100%\",\n        size: size,\n        child: child,\n        numChildren: slots === null || slots === void 0 ? void 0 : slots.length,\n        wrappedValue: wrappedValue,\n        childCounter: childCounter++,\n        gap: gap,\n        isCanvas: isCanvas,\n        isHorizontal: isHorizontal,\n        effectsOpacity: effectsOpacity,\n        effectsScale: effectsScale,\n        effectsRotate: effectsRotate,\n        children: index + childIndex\n      }, index + childIndex + \"lg\");\n    }));\n  } /**\n    * Fades with masks\n    */\n  const fadeDirection = isHorizontal ? \"to right\" : \"to bottom\";\n  const fadeWidthStart = fadeWidth / 2;\n  const fadeWidthEnd = 100 - fadeWidth / 2;\n  const fadeInsetStart = clamp(fadeInset, 0, fadeWidthStart);\n  const fadeInsetEnd = 100 - fadeInset;\n  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                                                                                                                                                                                                                              */\n  const dots = [];\n  const dotsBlurStyle = {};\n  if (showProgressDots) {\n    for (let i = 0; i < (slots === null || slots === void 0 ? void 0 : slots.length); i++) {\n      dots.push( /*#__PURE__*/_jsx(Dot, {\n        dotStyle: {\n          ...dotStyle,\n          width: dotSize,\n          height: dotSize,\n          backgroundColor: dotsFill\n        },\n        buttonStyle: baseButtonStyles,\n        selectedOpacity: dotsActiveOpacity,\n        opacity: dotsOpacity,\n        onClick: () => setPage(i),\n        wrappedIndex: wrappedIndex,\n        wrappedIndexInverted: wrappedIndexInverted,\n        total: totalItems,\n        index: i,\n        gap: dotsGap,\n        padding: dotsPadding,\n        isHorizontal: isHorizontal,\n        isInverted: isInverted\n      }, i));\n    }\n    if (dotsBlur > 0) {\n      dotsBlurStyle.backdropFilter = dotsBlurStyle.WebkitBackdropFilter = dotsBlurStyle.MozBackdropFilter = `blur(${dotsBlur}px)`;\n    }\n  }\n  const dragProps = dragControl ? {\n    drag: isHorizontal ? \"x\" : \"y\",\n    onDragStart: handleDragStart,\n    onDragEnd: handleDragEnd,\n    dragDirectionLock: true,\n    values: {\n      x: xOrY,\n      y: xOrY\n    },\n    dragMomentum: false\n  } : {};\n  const arrowHasTop = arrowPosition === \"top-left\" || arrowPosition === \"top-mid\" || arrowPosition === \"top-right\";\n  const arrowHasBottom = arrowPosition === \"bottom-left\" || arrowPosition === \"bottom-mid\" || arrowPosition === \"bottom-right\";\n  const arrowHasLeft = arrowPosition === \"top-left\" || arrowPosition === \"bottom-left\";\n  const arrowHasRight = arrowPosition === \"top-right\" || arrowPosition === \"bottom-right\";\n  const arrowHasMid = arrowPosition === \"top-mid\" || arrowPosition === \"bottom-mid\" || arrowPosition === \"auto\";\n  return /*#__PURE__*/_jsxs(\"section\", {\n    style: {\n      ...containerStyle,\n      padding: paddingValue,\n      WebkitMaskImage: fadeContent ? fadeMask : undefined,\n      MozMaskImage: fadeContent ? fadeMask : undefined,\n      maskImage: fadeContent ? fadeMask : undefined,\n      opacity: (size === null || size === void 0 ? void 0 : size.item) !== null ? 1 : 0,\n      userSelect: \"none\"\n    },\n    onMouseEnter: () => {\n      setIsHovering(true);\n      if (!effectsHover) setShouldPlayOnHover(false);\n    },\n    onMouseLeave: () => {\n      setIsHovering(false);\n      if (!effectsHover) setShouldPlayOnHover(true);\n    },\n    onMouseDown: event => {\n      // Preventdefault fixes the cursor switching to text on drag on safari\n      event.preventDefault();\n      setIsMouseDown(true);\n    },\n    onMouseUp: () => setIsMouseDown(false),\n    children: [/*#__PURE__*/_jsx(\"div\", {\n      style: {\n        width: \"100%\",\n        height: \"100%\",\n        margin: 0,\n        padding: \"inherit\",\n        position: \"absolute\",\n        inset: 0,\n        overflow: overflow ? \"visible\" : \"hidden\",\n        borderRadius: borderRadius,\n        userSelect: \"none\",\n        perspective: isCanvas ? \"none\" : effectsPerspective\n      },\n      children: /*#__PURE__*/_jsx(motion.ul, {\n        ref: parentRef,\n        ...dragProps,\n        style: {\n          ...containerStyle,\n          gap: gap,\n          placeItems: alignment,\n          x: isHorizontal ? isCanvas ? canvasPosition : wrappedValue : 0,\n          y: !isHorizontal ? isCanvas ? canvasPosition : wrappedValue : 0,\n          flexDirection: isHorizontal ? \"row\" : \"column\",\n          transformStyle: effectsRotate !== 0 && !isCanvas ? \"preserve-3d\" : undefined,\n          cursor: dragControl ? isMouseDown ? \"grabbing\" : \"grab\" : \"auto\",\n          userSelect: \"none\",\n          ...style\n        },\n        children: dupedChildren\n      })\n    }), /*#__PURE__*/_jsxs(\"fieldset\", {\n      style: {\n        ...controlsStyles\n      },\n      \"aria-label\": \"Slideshow pagination controls\",\n      className: \"framer--slideshow-controls\",\n      children: [/*#__PURE__*/_jsxs(motion.div, {\n        style: {\n          position: \"absolute\",\n          display: \"flex\",\n          flexDirection: isHorizontal ? \"row\" : \"column\",\n          justifyContent: arrowShouldSpace ? \"space-between\" : \"center\",\n          gap: arrowShouldSpace ? \"unset\" : arrowGap,\n          opacity: arrowShouldFadeIn ? 0 : 1,\n          alignItems: \"center\",\n          inset: arrowPadding,\n          top: arrowShouldSpace ? arrowPadding : arrowHasTop ? arrowPaddingTop : \"unset\",\n          left: arrowShouldSpace ? arrowPadding : arrowHasLeft ? arrowPaddingLeft : arrowHasMid ? 0 : \"unset\",\n          right: arrowShouldSpace ? arrowPadding : arrowHasRight ? arrowPaddingRight : arrowHasMid ? 0 : \"unset\",\n          bottom: arrowShouldSpace ? arrowPadding : arrowHasBottom ? arrowPaddingBottom : \"unset\"\n        },\n        animate: arrowShouldFadeIn && {\n          opacity: isHovering ? 1 : 0\n        },\n        transition: transitionControl,\n        children: [/*#__PURE__*/_jsx(motion.button, {\n          type: \"button\",\n          style: {\n            ...baseButtonStyles,\n            backgroundColor: arrowFill,\n            width: arrowSize,\n            height: arrowSize,\n            borderRadius: arrowRadius,\n            rotate: !isHorizontal ? 90 : 0,\n            display: showMouseControls ? \"block\" : \"none\",\n            pointerEvents: \"auto\"\n          },\n          onClick: () => setDelta(-1),\n          \"aria-label\": \"Previous\",\n          whileTap: {\n            scale: .9\n          },\n          transition: {\n            duration: .15\n          },\n          children: /*#__PURE__*/_jsx(\"img\", {\n            width: arrowSize,\n            height: arrowSize,\n            src: leftArrow || \"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",\n            alt: \"Back Arrow\"\n          })\n        }), /*#__PURE__*/_jsx(motion.button, {\n          type: \"button\",\n          style: {\n            ...baseButtonStyles,\n            backgroundColor: arrowFill,\n            width: arrowSize,\n            height: arrowSize,\n            borderRadius: arrowRadius,\n            rotate: !isHorizontal ? 90 : 0,\n            display: showMouseControls ? \"block\" : \"none\",\n            pointerEvents: \"auto\"\n          },\n          onClick: () => setDelta(1),\n          \"aria-label\": \"Next\",\n          whileTap: {\n            scale: .9\n          },\n          transition: {\n            duration: .15\n          },\n          children: /*#__PURE__*/_jsx(\"img\", {\n            width: arrowSize,\n            height: arrowSize,\n            src: rightArrow || \"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",\n            alt: \"Next Arrow\"\n          })\n        })]\n      }), dots.length > 1 ? /*#__PURE__*/_jsx(\"div\", {\n        style: {\n          ...dotsContainerStyle,\n          left: isHorizontal ? \"50%\" : dotsInset,\n          top: !isHorizontal ? \"50%\" : \"unset\",\n          transform: isHorizontal ? \"translateX(-50%)\" : \"translateY(-50%)\",\n          flexDirection: isHorizontal ? \"row\" : \"column\",\n          bottom: isHorizontal ? dotsInset : \"unset\",\n          borderRadius: dotsRadius,\n          backgroundColor: dotsBackground,\n          userSelect: \"none\",\n          ...dotsBlurStyle\n        },\n        children: dots\n      }) : null]\n    })]\n  });\n} /* Default Properties */\nSlideshow.defaultProps = {\n  direction: \"left\",\n  dragControl: false,\n  startFrom: 0,\n  itemAmount: 1,\n  infinity: true,\n  gap: 10,\n  padding: 10,\n  autoPlayControl: true,\n  effectsOptions: {\n    effectsOpacity: 1,\n    effectsScale: 1,\n    effectsRotate: 0,\n    effectsPerspective: 1200,\n    effectsHover: true\n  },\n  transitionControl: {\n    type: \"spring\",\n    stiffness: 200,\n    damping: 40\n  },\n  fadeOptions: {\n    fadeContent: false,\n    overflow: false,\n    fadeWidth: 25,\n    fadeAlpha: 0,\n    fadeInset: 0\n  },\n  arrowOptions: {\n    showMouseControls: true,\n    arrowShouldFadeIn: false,\n    arrowShouldSpace: true,\n    arrowFill: \"rgba(0,0,0,0.2)\",\n    arrowSize: 40\n  },\n  progressOptions: {\n    showProgressDots: true\n  }\n}; /* Property Controls */\naddPropertyControls(Slideshow, {\n  slots: {\n    type: ControlType.Array,\n    title: \"Content\",\n    control: {\n      type: ControlType.ComponentInstance\n    }\n  },\n  direction: {\n    type: ControlType.Enum,\n    title: \"Direction\",\n    options: [\"left\", \"right\", \"top\", \"bottom\"],\n    optionIcons: [\"direction-left\", \"direction-right\", \"direction-up\", \"direction-down\"],\n    optionTitles: [\"Left\", \"Right\", \"Top\", \"Bottom\"],\n    displaySegmentedControl: true,\n    defaultValue: Slideshow.defaultProps.direction\n  },\n  autoPlayControl: {\n    type: ControlType.Boolean,\n    title: \"Auto Play\",\n    defaultValue: true\n  },\n  intervalControl: {\n    type: ControlType.Number,\n    title: \"Interval\",\n    defaultValue: 1.5,\n    min: .5,\n    max: 10,\n    step: .1,\n    displayStepper: true,\n    unit: \"s\",\n    hidden: props => !props.autoPlayControl\n  },\n  dragControl: {\n    type: ControlType.Boolean,\n    title: \"Draggable\",\n    defaultValue: false\n  },\n  startFrom: {\n    type: ControlType.Number,\n    title: \"Current\",\n    min: 0,\n    max: 10,\n    displayStepper: true,\n    defaultValue: Slideshow.defaultProps.startFrom\n  },\n  effectsOptions: {\n    type: ControlType.Object,\n    title: \"Effects\",\n    controls: {\n      effectsOpacity: {\n        type: ControlType.Number,\n        title: \"Opacity\",\n        defaultValue: Slideshow.defaultProps.effectsOptions.effectsOpacity,\n        min: 0,\n        max: 1,\n        step: .01,\n        displayStepper: true\n      },\n      effectsScale: {\n        type: ControlType.Number,\n        title: \"Scale\",\n        defaultValue: Slideshow.defaultProps.effectsOptions.effectsScale,\n        min: 0,\n        max: 1,\n        step: .01,\n        displayStepper: true\n      },\n      effectsPerspective: {\n        type: ControlType.Number,\n        title: \"Perspective\",\n        defaultValue: Slideshow.defaultProps.effectsOptions.effectsPerspective,\n        min: 200,\n        max: 2e3,\n        step: 1\n      },\n      effectsRotate: {\n        type: ControlType.Number,\n        title: \"Rotate\",\n        defaultValue: Slideshow.defaultProps.effectsOptions.effectsRotate,\n        min: -180,\n        max: 180,\n        step: 1\n      },\n      effectsHover: {\n        type: ControlType.Boolean,\n        title: \"On Hover\",\n        enabledTitle: \"Play\",\n        disabledTitle: \"Pause\",\n        defaultValue: Slideshow.defaultProps.effectsOptions.effectsHover\n      }\n    }\n  },\n  alignment: {\n    type: ControlType.Enum,\n    title: \"Align\",\n    options: [\"flex-start\", \"center\", \"flex-end\"],\n    optionIcons: {\n      direction: {\n        right: [\"align-top\", \"align-middle\", \"align-bottom\"],\n        left: [\"align-top\", \"align-middle\", \"align-bottom\"],\n        top: [\"align-left\", \"align-center\", \"align-right\"],\n        bottom: [\"align-left\", \"align-center\", \"align-right\"]\n      }\n    },\n    defaultValue: \"center\",\n    displaySegmentedControl: true\n  },\n  itemAmount: {\n    type: ControlType.Number,\n    title: \"Items\",\n    min: 1,\n    max: 10,\n    displayStepper: true,\n    defaultValue: Slideshow.defaultProps.itemAmount\n  },\n  gap: {\n    type: ControlType.Number,\n    title: \"Gap\",\n    min: 0\n  },\n  padding: {\n    title: \"Padding\",\n    type: ControlType.FusedNumber,\n    toggleKey: \"paddingPerSide\",\n    toggleTitles: [\"Padding\", \"Padding per side\"],\n    defaultValue: 0,\n    valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n    valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n    min: 0\n  },\n  borderRadius: {\n    type: ControlType.Number,\n    title: \"Radius\",\n    min: 0,\n    max: 500,\n    displayStepper: true,\n    defaultValue: 0\n  },\n  transitionControl: {\n    type: ControlType.Transition,\n    defaultValue: Slideshow.defaultProps.transitionControl,\n    title: \"Transition\"\n  },\n  fadeOptions: {\n    type: ControlType.Object,\n    title: \"Clipping\",\n    controls: {\n      fadeContent: {\n        type: ControlType.Boolean,\n        title: \"Fade\",\n        defaultValue: false\n      },\n      overflow: {\n        type: ControlType.Boolean,\n        title: \"Overflow\",\n        enabledTitle: \"Show\",\n        disabledTitle: \"Hide\",\n        defaultValue: false,\n        hidden(props) {\n          return props.fadeContent === true;\n        }\n      },\n      fadeWidth: {\n        type: ControlType.Number,\n        title: \"Width\",\n        defaultValue: 25,\n        min: 0,\n        max: 100,\n        unit: \"%\",\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      },\n      fadeInset: {\n        type: ControlType.Number,\n        title: \"Inset\",\n        defaultValue: 0,\n        min: 0,\n        max: 100,\n        unit: \"%\",\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      },\n      fadeAlpha: {\n        type: ControlType.Number,\n        title: \"Opacity\",\n        defaultValue: 0,\n        min: 0,\n        max: 1,\n        step: .05,\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      }\n    }\n  },\n  arrowOptions: {\n    type: ControlType.Object,\n    title: \"Arrows\",\n    controls: {\n      showMouseControls: {\n        type: ControlType.Boolean,\n        title: \"Show\",\n        defaultValue: Slideshow.defaultProps.arrowOptions.showMouseControls\n      },\n      arrowFill: {\n        type: ControlType.Color,\n        title: \"Fill\",\n        hidden: props => !props.showMouseControls,\n        defaultValue: Slideshow.defaultProps.arrowOptions.arrowFill\n      },\n      leftArrow: {\n        type: ControlType.Image,\n        title: \"Previous\",\n        hidden: props => !props.showMouseControls\n      },\n      rightArrow: {\n        type: ControlType.Image,\n        title: \"Next\",\n        hidden: props => !props.showMouseControls\n      },\n      arrowSize: {\n        type: ControlType.Number,\n        title: \"Size\",\n        min: 0,\n        max: 200,\n        displayStepper: true,\n        defaultValue: Slideshow.defaultProps.arrowOptions.arrowSize,\n        hidden: props => !props.showMouseControls\n      },\n      arrowRadius: {\n        type: ControlType.Number,\n        title: \"Radius\",\n        min: 0,\n        max: 500,\n        defaultValue: 40,\n        hidden: props => !props.showMouseControls\n      },\n      arrowShouldFadeIn: {\n        type: ControlType.Boolean,\n        title: \"Fade In\",\n        defaultValue: false,\n        hidden: props => !props.showMouseControls\n      },\n      arrowShouldSpace: {\n        type: ControlType.Boolean,\n        title: \"Distance\",\n        enabledTitle: \"Space\",\n        disabledTitle: \"Group\",\n        defaultValue: Slideshow.defaultProps.arrowOptions.arrowShouldSpace,\n        hidden: props => !props.showMouseControls\n      },\n      arrowPosition: {\n        type: ControlType.Enum,\n        title: \"Position\",\n        options: [\"auto\", \"top-left\", \"top-mid\", \"top-right\", \"bottom-left\", \"bottom-mid\", \"bottom-right\"],\n        optionTitles: [\"Center\", \"Top Left\", \"Top Middle\", \"Top Right\", \"Bottom Left\", \"Bottom Middle\", \"Bottom Right\"],\n        hidden: props => !props.showMouseControls || props.arrowShouldSpace\n      },\n      arrowPadding: {\n        type: ControlType.Number,\n        title: \"Inset\",\n        min: -100,\n        max: 100,\n        defaultValue: 20,\n        displayStepper: true,\n        hidden: props => !props.showMouseControls || !props.arrowShouldSpace\n      },\n      arrowPaddingTop: {\n        type: ControlType.Number,\n        title: \"Top\",\n        min: -500,\n        max: 500,\n        defaultValue: 0,\n        displayStepper: true,\n        hidden: props => !props.showMouseControls || props.arrowShouldSpace || props.arrowPosition === \"auto\" || props.arrowPosition === \"bottom-mid\" || props.arrowPosition === \"bottom-left\" || props.arrowPosition === \"bottom-right\"\n      },\n      arrowPaddingBottom: {\n        type: ControlType.Number,\n        title: \"Bottom\",\n        min: -500,\n        max: 500,\n        defaultValue: 0,\n        displayStepper: true,\n        hidden: props => !props.showMouseControls || props.arrowShouldSpace || props.arrowPosition === \"auto\" || props.arrowPosition === \"top-mid\" || props.arrowPosition === \"top-left\" || props.arrowPosition === \"top-right\"\n      },\n      arrowPaddingRight: {\n        type: ControlType.Number,\n        title: \"Right\",\n        min: -500,\n        max: 500,\n        defaultValue: 0,\n        displayStepper: true,\n        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\"\n      },\n      arrowPaddingLeft: {\n        type: ControlType.Number,\n        title: \"Left\",\n        min: -500,\n        max: 500,\n        defaultValue: 0,\n        displayStepper: true,\n        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\"\n      },\n      arrowGap: {\n        type: ControlType.Number,\n        title: \"Gap\",\n        min: 0,\n        max: 100,\n        defaultValue: 10,\n        displayStepper: true,\n        hidden: props => !props.showMouseControls || props.arrowShouldSpace\n      }\n    }\n  },\n  progressOptions: {\n    type: ControlType.Object,\n    title: \"Dots\",\n    controls: {\n      showProgressDots: {\n        type: ControlType.Boolean,\n        title: \"Show\",\n        defaultValue: false\n      },\n      dotSize: {\n        type: ControlType.Number,\n        title: \"Size\",\n        min: 1,\n        max: 100,\n        defaultValue: 10,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsInset: {\n        type: ControlType.Number,\n        title: \"Inset\",\n        min: -100,\n        max: 100,\n        defaultValue: 10,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsGap: {\n        type: ControlType.Number,\n        title: \"Gap\",\n        min: 0,\n        max: 100,\n        defaultValue: 10,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsPadding: {\n        type: ControlType.Number,\n        title: \"Padding\",\n        min: 0,\n        max: 100,\n        defaultValue: 10,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsFill: {\n        type: ControlType.Color,\n        title: \"Fill\",\n        defaultValue: \"#fff\",\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsBackground: {\n        type: ControlType.Color,\n        title: \"Backdrop\",\n        defaultValue: \"rgba(0,0,0,0.2)\",\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsRadius: {\n        type: ControlType.Number,\n        title: \"Radius\",\n        min: 0,\n        max: 200,\n        defaultValue: 50,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsOpacity: {\n        type: ControlType.Number,\n        title: \"Opacity\",\n        min: 0,\n        max: 1,\n        defaultValue: .5,\n        step: .1,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsActiveOpacity: {\n        type: ControlType.Number,\n        title: \"Current\",\n        min: 0,\n        max: 1,\n        defaultValue: 1,\n        step: .1,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsBlur: {\n        type: ControlType.Number,\n        title: \"Blur\",\n        min: 0,\n        max: 50,\n        defaultValue: 0,\n        step: 1,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      }\n    }\n  }\n}); /* Placeholder Styles */\nconst containerStyle = {\n  display: \"flex\",\n  flexDirection: \"row\",\n  width: \"100%\",\n  height: \"100%\",\n  maxWidth: \"100%\",\n  maxHeight: \"100%\",\n  placeItems: \"center\",\n  margin: 0,\n  padding: 0,\n  listStyleType: \"none\",\n  textIndent: \"none\"\n}; /* Component Styles */\nconst placeholderStyles = {\n  display: \"flex\",\n  width: \"100%\",\n  height: \"100%\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  flexDirection: \"column\",\n  color: \"#96F\",\n  background: \"rgba(136, 85, 255, 0.1)\",\n  fontSize: 11,\n  overflow: \"hidden\",\n  padding: \"20px 20px 30px 20px\"\n};\nconst emojiStyles = {\n  fontSize: 32,\n  marginBottom: 10\n};\nconst titleStyles = {\n  margin: 0,\n  marginBottom: 10,\n  fontWeight: 600,\n  textAlign: \"center\"\n};\nconst subtitleStyles = {\n  margin: 0,\n  opacity: .7,\n  maxWidth: 180,\n  lineHeight: 1.5,\n  textAlign: \"center\"\n}; /* Control Styles */\nconst baseButtonStyles = {\n  border: \"none\",\n  display: \"flex\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  overflow: \"hidden\",\n  background: \"transparent\",\n  cursor: \"pointer\",\n  margin: 0,\n  padding: 0\n};\nconst controlsStyles = {\n  display: \"flex\",\n  justifyContent: \"space-between\",\n  alignItems: \"center\",\n  position: \"absolute\",\n  pointerEvents: \"none\",\n  userSelect: \"none\",\n  top: 0,\n  left: 0,\n  right: 0,\n  bottom: 0,\n  border: 0,\n  padding: 0,\n  margin: 0\n}; /* Clamp function, used for fadeInset */\nconst clamp = (num, min, max) => Math.min(Math.max(num, min), max); /* Slide Component */\nconst Slide = /*#__PURE__*/forwardRef(function Component(props, ref) {\n  var _child_props, _child_props1;\n  const {\n    slideKey,\n    width,\n    height,\n    child,\n    size,\n    gap,\n    wrappedValue,\n    numChildren,\n    childCounter,\n    isCanvas,\n    effects,\n    effectsOpacity,\n    effectsScale,\n    effectsRotate,\n    isHorizontal,\n    isLast,\n    index\n  } = props; /**\n             * Unique offsets + scroll range [0, 1, 1, 0]\n             */\n  const childOffset = ((size === null || size === void 0 ? void 0 : size.item) + gap) * childCounter;\n  const scrollRange = [-(size === null || size === void 0 ? void 0 : size.item), 0, (size === null || size === void 0 ? void 0 : size.parent) - (size === null || size === void 0 ? void 0 : size.item) + gap, size === null || size === void 0 ? void 0 : size.parent].map(val => val - childOffset); /**\n                                                                                                                                                                                                                                                                                                       * Effects\n                                                                                                                                                                                                                                                                                                       */\n  const rotateY = !isCanvas && useTransform(wrappedValue, scrollRange, [-effectsRotate, 0, 0, effectsRotate]);\n  const rotateX = !isCanvas && useTransform(wrappedValue, scrollRange, [effectsRotate, 0, 0, -effectsRotate]);\n  const opacity = !isCanvas && useTransform(wrappedValue, scrollRange, [effectsOpacity, 1, 1, effectsOpacity]);\n  const scale = !isCanvas && useTransform(wrappedValue, scrollRange, [effectsScale, 1, 1, effectsScale]);\n  const originXorY = !isCanvas && useTransform(wrappedValue, scrollRange, [1, 1, 0, 0]);\n  const isVisible = !isCanvas && useTransform(wrappedValue, latest => latest >= scrollRange[1] && latest <= scrollRange[2]);\n  useEffect(() => {\n    if (!isVisible) return;\n    return isVisible.onChange(newValue => {\n      var _ref_current;\n      (_ref_current = ref.current) === null || _ref_current === void 0 ? void 0 : _ref_current.setAttribute(\"aria-hidden\", !newValue);\n    });\n  }, []);\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    inherit: \"id\",\n    children: /*#__PURE__*/_jsx(\"li\", {\n      style: {\n        display: \"contents\"\n      },\n      \"aria-hidden\": index === 0 ? false : true,\n      children: /*#__PURE__*/cloneElement(child, {\n        ref: ref,\n        key: slideKey + \"child\",\n        style: {\n          ...((_child_props = child.props) === null || _child_props === void 0 ? void 0 : _child_props.style),\n          flexShrink: 0,\n          userSelect: \"none\",\n          width,\n          height,\n          opacity: opacity,\n          scale: scale,\n          originX: isHorizontal ? originXorY : .5,\n          originY: !isHorizontal ? originXorY : .5,\n          rotateY: isHorizontal ? rotateY : 0,\n          rotateX: !isHorizontal ? rotateX : 0\n        },\n        layoutId: child.props.layoutId ? child.props.layoutId + \"-original-\" + index : undefined\n      }, (_child_props1 = child.props) === null || _child_props1 === void 0 ? void 0 : _child_props1.children)\n    })\n  });\n});\nfunction Dot({\n  selectedOpacity,\n  opacity,\n  total,\n  index,\n  wrappedIndex,\n  wrappedIndexInverted,\n  dotStyle,\n  buttonStyle,\n  gap,\n  padding,\n  isHorizontal,\n  isInverted,\n  ...props\n}) {\n  /* 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 */\n  if (isInverted) {\n    isSelected = Math.abs(wrappedIndexInverted) === index;\n  }\n  const inlinePadding = gap / 2;\n  let top = !isHorizontal && index > 0 ? inlinePadding : padding;\n  let bottom = !isHorizontal && index !== total - 1 ? inlinePadding : padding;\n  let right = isHorizontal && index !== total - 1 ? inlinePadding : padding;\n  let left = isHorizontal && index > 0 ? inlinePadding : padding;\n  return /*#__PURE__*/_jsx(\"button\", {\n    \"aria-label\": `Scroll to page ${index + 1}`,\n    type: \"button\",\n    ...props,\n    style: {\n      ...buttonStyle,\n      padding: `${top}px ${right}px ${bottom}px ${left}px`\n    },\n    children: /*#__PURE__*/_jsx(motion.div, {\n      style: {\n        ...dotStyle\n      },\n      initial: false,\n      animate: {\n        opacity: isSelected ? selectedOpacity : opacity\n      },\n      transition: {\n        duration: .3\n      }\n    })\n  });\n} /* Dot Styles */\nconst dotsContainerStyle = {\n  display: \"flex\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  overflow: \"hidden\",\n  position: \"absolute\",\n  pointerEvents: \"auto\"\n};\nconst dotStyle = {\n  borderRadius: \"50%\",\n  background: \"white\",\n  cursor: \"pointer\",\n  border: \"none\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  padding: 0\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Slideshow\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"400\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerDisableUnlink\": \"*\",\n        \"framerIntrinsicHeight\": \"200\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (1cc6588)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, Link, RichText, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/9LczQCAmxLBAl2wU6n2B/tsredjHqfaYZhjRmoBFX/es4pFpdM4.js\";\nconst enabledGestures = {\n  bFlTEFmNN: {\n    hover: true\n  }\n};\nconst cycleOrder = [\"bFlTEFmNN\"];\nconst serializationHash = \"framer-qowwX\";\nconst variantClassNames = {\n  bFlTEFmNN: \"framer-v-ach85v\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst getProps = ({\n  height,\n  id,\n  link,\n  title,\n  width,\n  ...props\n}) => {\n  var _ref;\n  return {\n    ...props,\n    hSwXh6EZH: link !== null && link !== void 0 ? link : props.hSwXh6EZH,\n    VWoEC_ZEO: (_ref = title !== null && title !== void 0 ? title : props.VWoEC_ZEO) !== null && _ref !== void 0 ? _ref : \"Resume\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    VWoEC_ZEO,\n    hSwXh6EZH,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"bFlTEFmNN\",\n    enabledGestures,\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-qowwX\", ...sharedStyleClassNames, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsx(Link, {\n          href: hSwXh6EZH,\n          openInNewTab: true,\n          children: /*#__PURE__*/_jsx(motion.a, {\n            ...restProps,\n            className: `${cx(\"framer-ach85v\", className)} framer-1565983`,\n            \"data-framer-name\": \"Variant 1\",\n            layoutDependency: layoutDependency,\n            layoutId: \"bFlTEFmNN\",\n            ref: ref !== null && ref !== void 0 ? ref : ref1,\n            style: {\n              ...style\n            },\n            ...addPropertyOverrides({\n              \"bFlTEFmNN-hover\": {\n                \"data-framer-name\": undefined\n              }\n            }, baseVariant, gestureVariant),\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1hopb0p\",\n              layoutDependency: layoutDependency,\n              layoutId: \"nRDPxLWnL\",\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    className: \"framer-styles-preset-9naui5\",\n                    \"data-styles-preset\": \"es4pFpdM4\",\n                    style: {\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv, var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0)))\"\n                    },\n                    children: \"Resume\"\n                  })\n                }),\n                className: \"framer-yqkk48\",\n                layoutDependency: layoutDependency,\n                layoutId: \"nwa5HEIDL\",\n                style: {\n                  \"--extracted-r6o4lv\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\",\n                  \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                  \"--framer-link-text-decoration\": \"underline\",\n                  \"--framer-paragraph-spacing\": \"0px\"\n                },\n                text: VWoEC_ZEO,\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    className: \"framer-styles-preset-9naui5\",\n                    \"data-styles-preset\": \"es4pFpdM4\",\n                    style: {\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv, var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0)))\"\n                    },\n                    children: \"Resume\"\n                  })\n                }),\n                className: \"framer-1l1f34s\",\n                layoutDependency: layoutDependency,\n                layoutId: \"l7BG095Zu\",\n                style: {\n                  \"--extracted-r6o4lv\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\",\n                  \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                  \"--framer-link-text-decoration\": \"underline\",\n                  \"--framer-paragraph-spacing\": \"0px\"\n                },\n                text: VWoEC_ZEO,\n                variants: {\n                  \"bFlTEFmNN-hover\": {\n                    \"--extracted-r6o4lv\": \"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(46, 46, 46))\"\n                  }\n                },\n                verticalAlignment: \"top\",\n                withExternalLayout: true,\n                ...addPropertyOverrides({\n                  \"bFlTEFmNN-hover\": {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(motion.p, {\n                        className: \"framer-styles-preset-9naui5\",\n                        \"data-styles-preset\": \"es4pFpdM4\",\n                        style: {\n                          \"--framer-text-color\": \"var(--extracted-r6o4lv, var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(46, 46, 46)))\"\n                        },\n                        children: \"Resume\"\n                      })\n                    })\n                  }\n                }, baseVariant, gestureVariant)\n              })]\n            })\n          })\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-qowwX [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-qowwX .framer-1565983 { display: block; }\", \".framer-qowwX .framer-ach85v { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\", \".framer-qowwX .framer-1hopb0p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-qowwX .framer-yqkk48, .framer-qowwX .framer-1l1f34s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qowwX .framer-ach85v, .framer-qowwX .framer-1hopb0p { gap: 0px; } .framer-qowwX .framer-ach85v > *, .framer-qowwX .framer-1hopb0p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qowwX .framer-ach85v > :first-child, .framer-qowwX .framer-1hopb0p > :first-child { margin-top: 0px; } .framer-qowwX .framer-ach85v > :last-child, .framer-qowwX .framer-1hopb0p > :last-child { margin-bottom: 0px; } }\", \".framer-qowwX.framer-v-ach85v.hover .framer-1hopb0p { justify-content: flex-end; }\", ...sharedStyle.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerIntrinsicHeight 28\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerIntrinsicWidth 73\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"Zf_DUtIQU\":{\"layout\":[\"auto\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerVariables {\"VWoEC_ZEO\":\"title\",\"hSwXh6EZH\":\"link\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              */\nconst FramerCxwIqBsPN = withCSS(Component, css, \"framer-qowwX\");\nexport default FramerCxwIqBsPN;\nFramerCxwIqBsPN.displayName = \"link-nt\";\nFramerCxwIqBsPN.defaultProps = {\n  height: 28,\n  width: 73\n};\naddPropertyControls(FramerCxwIqBsPN, {\n  VWoEC_ZEO: {\n    defaultValue: \"Resume\",\n    displayTextArea: false,\n    title: \"Title\",\n    type: ControlType.String\n  },\n  hSwXh6EZH: {\n    title: \"Link\",\n    type: ControlType.Link\n  }\n});\naddFonts(FramerCxwIqBsPN, [...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerCxwIqBsPN\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"28\",\n        \"framerVariables\": \"{\\\"VWoEC_ZEO\\\":\\\"title\\\",\\\"hSwXh6EZH\\\":\\\"link\\\"}\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Zf_DUtIQU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"73\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./CxwIqBsPN.map", "import { fontStore } from \"framer\";\nfontStore.loadFonts([\"GF;DM Sans-regular\", \"Inter-Bold\", \"Inter-BoldItalic\", \"Inter-Italic\"]);\nexport const fonts = [{\n  family: \"DM Sans\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",\n  weight: \"400\"\n}];\nexport const css = ['.framer-sKtym .framer-styles-preset-151cnpj:not(.rich-text-wrapper), .framer-sKtym .framer-styles-preset-151cnpj.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];\nexport const className = \"framer-sKtym\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore } from \"framer\";\nfontStore.loadFonts([\"Inter-Bold\", \"Inter-Black\", \"Inter-BlackItalic\", \"Inter-BoldItalic\"]);\nexport const fonts = [];\nexport const css = ['.framer-06ne2 .framer-styles-preset-cvhavu:not(.rich-text-wrapper), .framer-06ne2 .framer-styles-preset-cvhavu.rich-text-wrapper h5 { --framer-font-family: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];\nexport const className = \"framer-06ne2\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore as r } from \"framer\";\nr.loadWebFontsFromSelectors([\"GF;DM Sans-regular\", \"Inter-Black\", \"Inter-BlackItalic\", \"Inter-BoldItalic\"]);\nexport const fonts = [{\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/Oq9AnEjTz:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTmf3ZGMZpg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTmf3ZGMZpg.ttf\",\n  weight: \"400\"\n}];\nexport const css = ['.framer-1qZ4e .framer-styles-preset-1rcc65v:not(.rich-text-wrapper), .framer-1qZ4e .framer-styles-preset-1rcc65v.rich-text-wrapper h4 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 2.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-25b31a9d-211f-4aed-b06c-add80335f614, #000000); --framer-text-decoration: none; --framer-text-transform: none; }'];\nexport const className = \"framer-1qZ4e\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore as t } from \"framer\";\nt.loadWebFontsFromSelectors([\"GF;DM Sans-regular\", \"GF;DM Sans-700\", \"GF;DM Sans-700italic\", \"GF;DM Sans-italic\"]);\nexport const fonts = [{\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/VDRHFoji0:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTmf3ZGMZpg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTmf3ZGMZpg.ttf\",\n  weight: \"400\"\n}, {\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/VDRHFoji0:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf\",\n  weight: \"700\"\n}, {\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/VDRHFoji0:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm3zRmYJpso5.ttf\"\n  },\n  style: \"italic\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm3zRmYJpso5.ttf\",\n  weight: \"700\"\n}, {\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/VDRHFoji0:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW3zRmYJpso5.ttf\"\n  },\n  style: \"italic\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW3zRmYJpso5.ttf\",\n  weight: \"400\"\n}];\nexport const css = ['.framer-KEgUG .framer-styles-preset-186xs3l:not(.rich-text-wrapper), .framer-KEgUG .framer-styles-preset-186xs3l.rich-text-wrapper h3 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-25b31a9d-211f-4aed-b06c-add80335f614, #000000); --framer-text-decoration: none; --framer-text-transform: none; }'];\nexport const className = \"framer-KEgUG\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore } from \"framer\";\nfontStore.loadFonts([\"Inter-Bold\", \"Inter-Black\", \"Inter-BlackItalic\", \"Inter-BoldItalic\"]);\nexport const fonts = [];\nexport const css = ['.framer-VVblG .framer-styles-preset-t5mmi2:not(.rich-text-wrapper), .framer-VVblG .framer-styles-preset-t5mmi2.rich-text-wrapper h6 { --framer-font-family: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];\nexport const className = \"framer-VVblG\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore } from \"framer\";\nfontStore.loadFonts([\"GF;Fragment Mono-regular\"]);\nexport const fonts = [{\n  family: \"Fragment Mono\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",\n  weight: \"400\"\n}];\nexport const css = ['.framer-lajdm .framer-styles-preset-7vzzxv { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];\nexport const className = \"framer-lajdm\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore } from \"framer\";\nfontStore.loadFonts([\"GF;DM Sans-700\"]);\nexport const fonts = [{\n  family: \"DM Sans\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",\n  weight: \"700\"\n}];\nexport const css = ['.framer-KasKn .framer-styles-preset-o158fg:not(.rich-text-wrapper), .framer-KasKn .framer-styles-preset-o158fg.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-25b31a9d-211f-4aed-b06c-add80335f614, #000000); --framer-text-decoration: none; --framer-text-transform: none; }', '@media (max-width: 810px) and (min-width: 810px) { .framer-KasKn .framer-styles-preset-o158fg:not(.rich-text-wrapper), .framer-KasKn .framer-styles-preset-o158fg.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-25b31a9d-211f-4aed-b06c-add80335f614, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }', '@media (max-width: 809px) and (min-width: 0px) { .framer-KasKn .framer-styles-preset-o158fg:not(.rich-text-wrapper), .framer-KasKn .framer-styles-preset-o158fg.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-25b31a9d-211f-4aed-b06c-add80335f614, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }'];\nexport const className = \"framer-KasKn\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (1cc6588)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, ComponentPresetsProvider, Container, cx, GeneratedComponentContext, getFonts, getWhereExpressionFromPathVariables, Image, NotFoundError, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, resolveLink, RichText, useCurrentPathVariables, useHydratedBreakpointVariants, useLocaleInfo, useQueryData, useRouter, withCSS, withFX } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Slideshow from \"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";\nimport LinkNt from \"https://framerusercontent.com/modules/tTa7SkgIvSxH6varE7KA/a7A19L0Kn4KpZKfUWs17/CxwIqBsPN.js\";\nimport Navigation from \"https://framerusercontent.com/modules/8i4m72Hoy1epQKNht7g7/taI843D4vsz2OFN5h5hr/FYVGgK1WB.js\";\nimport Link from \"https://framerusercontent.com/modules/yeCL2UJRFrlXdNczLCi8/qNuI0Z86ogpg57QDkZyX/iGIrK7GAS.js\";\nimport Project from \"https://framerusercontent.com/modules/lZAZLXNBQBTMoz5HUVYt/SiSemEeWWFHQAIdAG0mP/ksdhk0NIT.js\";\nimport * as sharedStyle11 from \"https://framerusercontent.com/modules/qddgM1rlaHGkSUab8LmJ/xKzEEEXZuqWBEhKXp0gC/coXKIt1rS.js\";\nimport * as sharedStyle9 from \"https://framerusercontent.com/modules/cZDVTJG4VvN72ODaI2Du/qqTXAJ1r0krtvevvoVW6/Eh2bd75CT.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/9LczQCAmxLBAl2wU6n2B/tsredjHqfaYZhjRmoBFX/es4pFpdM4.js\";\nimport * as sharedStyle4 from \"https://framerusercontent.com/modules/bqAZXLnJJi8hoTM7uGGc/xqotx5PA7O3QydozRNik/fVxnimdqP.js\";\nimport * as sharedStyle7 from \"https://framerusercontent.com/modules/sxJHT1expWBcP1aJ5Tz2/6EXGTizlnFRTjPpyrAZN/J4K8Vs4Dv.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/4dE4YRatz0UtgS5sVWSw/RpmDI9g7631UXuGxTsXg/Lm1wJt9jp.js\";\nimport * as sharedStyle6 from \"https://framerusercontent.com/modules/3ycdaNMmaeU2AaTPcDSb/N92HZidbg4lJGKn8zuQD/Oq9AnEjTz.js\";\nimport * as sharedStyle5 from \"https://framerusercontent.com/modules/r2Pc3VtuAWyVXs77fKpU/1YiTFkF1mObgg7cKf5ua/VDRHFoji0.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/fHY25vuXeKDGOfsRBOsq/bEQfEg7IMDDPeHFujRxg/YAP816Y5n.js\";\nimport * as sharedStyle8 from \"https://framerusercontent.com/modules/Of0DV8CREk2Lw9rmL3mX/I4tiKRKN8oaD9QjLwTEy/YjW8dx7Xb.js\";\nimport * as sharedStyle10 from \"https://framerusercontent.com/modules/EwHeV2YsD1glm7TrTTfw/tvFlV1Z9MIn1S1jbR6yl/ykFRluUSC.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/pLKAJUGQpG0PwklpN080/XvLNmXsFDs6JUPOsOQft/zpiObbS1e.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/39hMNCGGvkYOJDSvvBNv/eVUCdEaaQjBQFS3O2l3X/zipLk6crX.js\";\nconst NavigationFonts = getFonts(Navigation);\nconst RichTextWithFX = withFX(RichText);\nconst MotionDivWithFX = withFX(motion.div);\nconst ImageWithFX = withFX(Image);\nconst SlideshowFonts = getFonts(Slideshow);\nconst LinkFonts = getFonts(Link);\nconst LinkNtFonts = getFonts(LinkNt);\nconst cycleOrder = [\"ehBv5_FC9\", \"R3V8u6Mvn\", \"Rchoaog6j\"];\nconst breakpoints = {\n  ehBv5_FC9: \"(min-width: 1099px)\",\n  R3V8u6Mvn: \"(min-width: 768px) and (max-width: 1098px)\",\n  Rchoaog6j: \"(max-width: 767px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst serializationHash = \"framer-3gTKL\";\nconst variantClassNames = {\n  ehBv5_FC9: \"framer-v-1yl3m9n\",\n  R3V8u6Mvn: \"framer-v-1ciu1do\",\n  Rchoaog6j: \"framer-v-jmwmzu\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"ehBv5_FC9\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transition1 = {\n  delay: .5,\n  duration: .8,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: -20\n};\nconst transformTemplate = (_, t) => `perspective(1200px) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .001,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: -20\n};\nconst animation3 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 50\n};\nconst transition2 = {\n  delay: 0,\n  duration: .8,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation4 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 50\n};\nconst toResponsiveImage = value => {\n  if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {\n    return value;\n  }\n  return typeof value === \"string\" ? {\n    src: value\n  } : undefined;\n};\nconst animation5 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1.1,\n  x: 0,\n  y: 0\n};\nconst animation6 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1.1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst isSet = value => {\n  return value !== undefined && value !== null && value !== \"\";\n};\nconst transformTemplate1 = (_, t) => `perspective(1200px) translateX(-50%) ${t}`;\nconst animation7 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 30\n};\nconst animation8 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 30\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"ehBv5_FC9\",\n  Phone: \"Rchoaog6j\",\n  Tablet: \"R3V8u6Mvn\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"ehBv5_FC9\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const currentPathVariables = useCurrentPathVariables();\n  const [currentRouteData] = useQueryData({\n    from: {\n      data: Project,\n      type: \"Collection\"\n    },\n    select: [{\n      name: \"C3Dh4Mi2T\",\n      type: \"Identifier\"\n    }, {\n      name: \"FgHgo9LSE\",\n      type: \"Identifier\"\n    }, {\n      name: \"ohmn9yUh4\",\n      type: \"Identifier\"\n    }, {\n      name: \"pZUNyiuiF\",\n      type: \"Identifier\"\n    }, {\n      name: \"okhPUrj7c\",\n      type: \"Identifier\"\n    }, {\n      name: \"LjyX9FN0_\",\n      type: \"Identifier\"\n    }, {\n      name: \"hPgLxU62A\",\n      type: \"Identifier\"\n    }, {\n      name: \"uAAqo29fy\",\n      type: \"Identifier\"\n    }, {\n      name: \"Keiv5OyGI\",\n      type: \"Identifier\"\n    }, {\n      name: \"RbzK2bSiV\",\n      type: \"Identifier\"\n    }, {\n      name: \"MeYGQZwHm\",\n      type: \"Identifier\"\n    }],\n    where: getWhereExpressionFromPathVariables(currentPathVariables)\n  });\n  const getFromCurrentRouteData = key => {\n    if (!currentRouteData) throw new NotFoundError(`No data in \"Project\" matches path variables: ${JSON.stringify(currentPathVariables)}`);\n    return currentRouteData[key];\n  };\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    C3Dh4Mi2T = getFromCurrentRouteData(\"C3Dh4Mi2T\"),\n    FgHgo9LSE = getFromCurrentRouteData(\"FgHgo9LSE\"),\n    ohmn9yUh4 = getFromCurrentRouteData(\"ohmn9yUh4\"),\n    pZUNyiuiF = getFromCurrentRouteData(\"pZUNyiuiF\"),\n    okhPUrj7c = getFromCurrentRouteData(\"okhPUrj7c\"),\n    LjyX9FN0_ = getFromCurrentRouteData(\"LjyX9FN0_\"),\n    hPgLxU62A = getFromCurrentRouteData(\"hPgLxU62A\"),\n    uAAqo29fy = getFromCurrentRouteData(\"uAAqo29fy\"),\n    Keiv5OyGI = getFromCurrentRouteData(\"Keiv5OyGI\"),\n    RbzK2bSiV = getFromCurrentRouteData(\"RbzK2bSiV\"),\n    MeYGQZwHm = getFromCurrentRouteData(\"MeYGQZwHm\"),\n    lpUwyTTbw,\n    Eh12kcQmL,\n    OiQ7bgvHi,\n    xjJ07e9TheRB4KVWiA,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider(currentRouteData, activeLocale);\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var _document_querySelector;\n      (_document_querySelector = document.querySelector('meta[name=\"viewport\"]')) === null || _document_querySelector === void 0 ? void 0 : _document_querySelector.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(`${metadata1.bodyClassName}-framer-3gTKL`);\n      return () => {\n        document.body.classList.remove(`${metadata1.bodyClassName}-framer-3gTKL`);\n      };\n    }\n  }, [currentRouteData, activeLocale]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const ref1 = React.useRef(null);\n  const isDisplayed = () => {\n    if (baseVariant === \"Rchoaog6j\") return true;\n    return !isBrowser();\n  };\n  const isDisplayed1 = () => {\n    if (baseVariant === \"Rchoaog6j\") return !isBrowser();\n    return true;\n  };\n  const visible = isSet(Eh12kcQmL);\n  const visible1 = isSet(OiQ7bgvHi);\n  const isDisplayed2 = () => {\n    if ([\"R3V8u6Mvn\", \"Rchoaog6j\"].includes(baseVariant)) return !isBrowser();\n    return true;\n  };\n  const router = useRouter();\n  const isDisplayed3 = () => {\n    if ([\"R3V8u6Mvn\", \"Rchoaog6j\"].includes(baseVariant)) return true;\n    return !isBrowser();\n  };\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className, sharedStyle4.className, sharedStyle5.className, sharedStyle6.className, sharedStyle7.className, sharedStyle8.className, sharedStyle9.className, sharedStyle10.className, sharedStyle11.className];\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"ehBv5_FC9\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-3gTKL\", ...sharedStyleClassNames),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-1yl3m9n\", className),\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              R3V8u6Mvn: {\n                \"data-framer-appear-id\": \"7unk19\",\n                animate: optimizeAppear(\"animate\", \"7unk19\", animation1, \"1ciu1do\"),\n                initial: optimizeAppear(\"initial\", \"7unk19\", animation2, \"1ciu1do\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"7unk19\", transformTemplate)\n              },\n              Rchoaog6j: {\n                \"data-framer-appear-id\": \"17kidbj\",\n                animate: optimizeAppear(\"animate\", \"17kidbj\", animation1, \"jmwmzu\"),\n                initial: optimizeAppear(\"initial\", \"17kidbj\", animation2, \"jmwmzu\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"17kidbj\", transformTemplate)\n              }\n            },\n            children: /*#__PURE__*/_jsx(Container, {\n              animate: optimizeAppear(\"animate\", \"1gflt6o\", animation1, \"1yl3m9n\"),\n              className: \"framer-1gflt6o-container\",\n              \"data-framer-appear-id\": \"1gflt6o\",\n              \"data-framer-name\": \"Navigation\",\n              exit: animation,\n              initial: optimizeAppear(\"initial\", \"1gflt6o\", animation2, \"1yl3m9n\"),\n              name: \"Navigation\",\n              transformTemplate: optimizeAppearTransformTemplate(\"1gflt6o\", transformTemplate),\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  R3V8u6Mvn: {\n                    variant: \"JLU1ItgQ7\"\n                  },\n                  Rchoaog6j: {\n                    variant: \"wuUHFN6JO\"\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Navigation, {\n                  height: \"100%\",\n                  id: \"d9miv5pgv\",\n                  layoutId: \"d9miv5pgv\",\n                  name: \"Navigation\",\n                  style: {\n                    maxWidth: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"xGR0edOQP\",\n                  width: \"100%\"\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsxs(\"header\", {\n            className: \"framer-12wig4w\",\n            \"data-framer-name\": \"Content\",\n            name: \"Content\",\n            children: [/*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-eswrj0\",\n              \"data-framer-name\": \"Section Hero\",\n              name: \"Section Hero\",\n              children: [/*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-18zm0m0\",\n                \"data-framer-name\": \"Title\",\n                name: \"Title\",\n                children: [/*#__PURE__*/_jsx(RichTextWithFX, {\n                  __framer__animate: {\n                    transition: transition2\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation3,\n                  __framer__exit: animation4,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: 0,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h1\", {\n                      className: \"framer-styles-preset-5kkvul\",\n                      \"data-styles-preset\": \"Lm1wJt9jp\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\"\n                      },\n                      children: \"Lady Jane\"\n                    })\n                  }),\n                  className: \"framer-1bvmbqq\",\n                  text: C3Dh4Mi2T,\n                  transformTemplate: transformTemplate,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichTextWithFX, {\n                  __framer__animate: {\n                    transition: transition2\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation3,\n                  __framer__exit: animation4,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: 0,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-3nqyhf\",\n                      \"data-styles-preset\": \"YAP816Y5n\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\"\n                      },\n                      children: \"No strings attached: menstrual product storage system\"\n                    })\n                  }),\n                  className: \"framer-34ef62\",\n                  text: FgHgo9LSE,\n                  transformTemplate: transformTemplate,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition2\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation3,\n                __framer__exit: animation4,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: 0,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-kk1ely\",\n                \"data-framer-name\": \"Case Overview\",\n                name: \"Case Overview\",\n                transformTemplate: transformTemplate,\n                children: [/*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1d1rhuz\",\n                  \"data-framer-name\": \"Client\",\n                  name: \"Client\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-o158fg\",\n                        \"data-styles-preset\": \"zpiObbS1e\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\"\n                        },\n                        children: \"My Contribution\"\n                      })\n                    }),\n                    className: \"framer-6i5ak4\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsxs(React.Fragment, {\n                      children: [/*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-9naui5\",\n                        \"data-styles-preset\": \"es4pFpdM4\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\"\n                        },\n                        children: \"Research\"\n                      }), /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-9naui5\",\n                        \"data-styles-preset\": \"es4pFpdM4\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\"\n                        },\n                        children: \"Design\"\n                      })]\n                    }),\n                    className: \"framer-1x1q44f\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1678p5b\",\n                  \"data-framer-name\": \"Services\",\n                  name: \"Services\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-o158fg\",\n                        \"data-styles-preset\": \"zpiObbS1e\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\"\n                        },\n                        children: \"The Team\"\n                      })\n                    }),\n                    className: \"framer-1pa0gsu\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsxs(React.Fragment, {\n                      children: [/*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-9naui5\",\n                        \"data-styles-preset\": \"es4pFpdM4\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\"\n                        },\n                        children: \"Visual Design\"\n                      }), /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-9naui5\",\n                        \"data-styles-preset\": \"es4pFpdM4\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\"\n                        },\n                        children: \"UI & UX Design\"\n                      })]\n                    }),\n                    className: \"framer-9ogwyb\",\n                    text: ohmn9yUh4,\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1guwnws\",\n                  \"data-framer-name\": \"Date\",\n                  name: \"Date\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-o158fg\",\n                        \"data-styles-preset\": \"zpiObbS1e\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\"\n                        },\n                        children: \"Date\"\n                      })\n                    }),\n                    className: \"framer-g73g7o\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-9naui5\",\n                        \"data-styles-preset\": \"es4pFpdM4\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\"\n                        },\n                        children: \"January 2023\"\n                      })\n                    }),\n                    className: \"framer-1bmb860\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              })]\n            }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n              __framer__animate: {\n                transition: transition2\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation3,\n              __framer__exit: animation4,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: 0,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-1mzpqjt\",\n              \"data-framer-name\": \"Section - Promo Image\",\n              name: \"Section - Promo Image\",\n              transformTemplate: transformTemplate,\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  R3V8u6Mvn: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 1200,\n                      intrinsicWidth: 1600,\n                      pixelHeight: 1200,\n                      pixelWidth: 1600,\n                      positionX: \"center\",\n                      positionY: \"center\",\n                      sizes: \"min((100vw - 80px) * 0.5285, 100vw - 80px)\",\n                      ...toResponsiveImage(pZUNyiuiF)\n                    }\n                  },\n                  Rchoaog6j: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 1200,\n                      intrinsicWidth: 1600,\n                      pixelHeight: 1200,\n                      pixelWidth: 1600,\n                      positionX: \"center\",\n                      positionY: \"center\",\n                      sizes: \"min((100vw - 40px) * 0.5285, 100vw - 40px)\",\n                      ...toResponsiveImage(pZUNyiuiF)\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(ImageWithFX, {\n                  __framer__animate: {\n                    transition: transition2\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation5,\n                  __framer__exit: animation6,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: 0,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  background: {\n                    alt: \"\",\n                    fit: \"fit\",\n                    intrinsicHeight: 1200,\n                    intrinsicWidth: 1600,\n                    pixelHeight: 1200,\n                    pixelWidth: 1600,\n                    positionX: \"center\",\n                    positionY: \"center\",\n                    sizes: \"min((100vw - 240px) * 0.5285, 100vw - 240px)\",\n                    ...toResponsiveImage(pZUNyiuiF)\n                  },\n                  className: \"framer-ekckpi\",\n                  \"data-framer-name\": \"image\",\n                  name: \"image\",\n                  transformTemplate: transformTemplate\n                })\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-8ukwyy\",\n              children: /*#__PURE__*/_jsx(ComponentPresetsProvider, {\n                presets: {},\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    R3V8u6Mvn: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    },\n                    Rchoaog6j: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-151cnpj\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: okhPUrj7c,\n                    className: \"framer-x0twnl\",\n                    \"data-framer-name\": \"Project Overview\",\n                    name: \"Project Overview\",\n                    stylesPresetsClassNames: {\n                      h1: \"framer-styles-preset-3nqyhf\",\n                      h2: \"framer-styles-preset-1wml6uu\",\n                      h3: \"framer-styles-preset-186xs3l\",\n                      h4: \"framer-styles-preset-1rcc65v\",\n                      h5: \"framer-styles-preset-cvhavu\",\n                      h6: \"framer-styles-preset-t5mmi2\",\n                      p: \"framer-styles-preset-1mb4u4n\"\n                    },\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            }), isDisplayed() && /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-zurblf hidden-1yl3m9n hidden-1ciu1do\"\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1o7ootj-container\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  R3V8u6Mvn: {\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Slideshow, {\n                  alignment: \"center\",\n                  arrowOptions: {\n                    arrowFill: \"rgba(0, 0, 0, 0.2)\",\n                    arrowGap: 10,\n                    arrowPadding: 20,\n                    arrowPaddingBottom: 0,\n                    arrowPaddingLeft: 0,\n                    arrowPaddingRight: 0,\n                    arrowPaddingTop: 0,\n                    arrowPosition: \"auto\",\n                    arrowRadius: 40,\n                    arrowShouldFadeIn: false,\n                    arrowShouldSpace: true,\n                    arrowSize: 40,\n                    showMouseControls: true\n                  },\n                  autoPlayControl: false,\n                  borderRadius: 25,\n                  direction: \"left\",\n                  dragControl: true,\n                  effectsOptions: {\n                    effectsHover: true,\n                    effectsOpacity: 1,\n                    effectsPerspective: 1200,\n                    effectsRotate: 0,\n                    effectsScale: 1\n                  },\n                  fadeOptions: {\n                    fadeAlpha: 0,\n                    fadeContent: false,\n                    fadeInset: 0,\n                    fadeWidth: 25,\n                    overflow: false\n                  },\n                  gap: 10,\n                  height: \"100%\",\n                  id: \"fzSQ1jA5y\",\n                  intervalControl: 1.5,\n                  itemAmount: 1,\n                  layoutId: \"fzSQ1jA5y\",\n                  padding: 0,\n                  paddingBottom: 0,\n                  paddingLeft: 0,\n                  paddingPerSide: false,\n                  paddingRight: 0,\n                  paddingTop: 0,\n                  progressOptions: {\n                    dotsActiveOpacity: 1,\n                    dotsBackground: \"rgba(0, 0, 0, 0.2)\",\n                    dotsBlur: 0,\n                    dotsFill: \"rgb(255, 255, 255)\",\n                    dotsGap: 10,\n                    dotsInset: 10,\n                    dotSize: 10,\n                    dotsOpacity: .5,\n                    dotsPadding: 10,\n                    dotsRadius: 50,\n                    showProgressDots: true\n                  },\n                  slots: [/*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"688px\",\n                      src: \"https://framerusercontent.com/images/NuqS4BG0tbyUwdJrCZ9uqkuvc.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/NuqS4BG0tbyUwdJrCZ9uqkuvc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/NuqS4BG0tbyUwdJrCZ9uqkuvc.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/NuqS4BG0tbyUwdJrCZ9uqkuvc.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/NuqS4BG0tbyUwdJrCZ9uqkuvc.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/NuqS4BG0tbyUwdJrCZ9uqkuvc.jpg 4960w\"\n                    },\n                    className: \"framer-1pg5mvs\",\n                    \"data-framer-name\": \"context\",\n                    name: \"context\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"688px\",\n                      src: \"https://framerusercontent.com/images/J1jkNqeUenwyYJoUkVW4imUOo.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/J1jkNqeUenwyYJoUkVW4imUOo.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/J1jkNqeUenwyYJoUkVW4imUOo.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/J1jkNqeUenwyYJoUkVW4imUOo.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/J1jkNqeUenwyYJoUkVW4imUOo.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/J1jkNqeUenwyYJoUkVW4imUOo.jpg 4960w\"\n                    },\n                    className: \"framer-11pm12z\",\n                    \"data-framer-name\": \"design_goals\",\n                    name: \"design_goals\"\n                  })],\n                  startFrom: 0,\n                  style: {\n                    height: \"100%\",\n                    maxWidth: \"100%\",\n                    width: \"100%\"\n                  },\n                  transitionControl: {\n                    damping: 40,\n                    stiffness: 200,\n                    type: \"spring\"\n                  },\n                  width: \"100%\"\n                })\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-mpoctl\",\n              children: /*#__PURE__*/_jsx(ComponentPresetsProvider, {\n                presets: {},\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    R3V8u6Mvn: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    },\n                    Rchoaog6j: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-151cnpj\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: LjyX9FN0_,\n                    className: \"framer-1ea4zho\",\n                    \"data-framer-name\": \"Project Overview\",\n                    name: \"Project Overview\",\n                    stylesPresetsClassNames: {\n                      h1: \"framer-styles-preset-3nqyhf\",\n                      h2: \"framer-styles-preset-1wml6uu\",\n                      h3: \"framer-styles-preset-186xs3l\",\n                      h4: \"framer-styles-preset-1rcc65v\",\n                      h5: \"framer-styles-preset-cvhavu\",\n                      h6: \"framer-styles-preset-t5mmi2\",\n                      p: \"framer-styles-preset-1mb4u4n\"\n                    },\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-16wtiax-container\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  R3V8u6Mvn: {\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Slideshow, {\n                  alignment: \"center\",\n                  arrowOptions: {\n                    arrowFill: \"rgba(0, 0, 0, 0.2)\",\n                    arrowGap: 10,\n                    arrowPadding: 20,\n                    arrowPaddingBottom: 0,\n                    arrowPaddingLeft: 0,\n                    arrowPaddingRight: 0,\n                    arrowPaddingTop: 0,\n                    arrowPosition: \"auto\",\n                    arrowRadius: 40,\n                    arrowShouldFadeIn: false,\n                    arrowShouldSpace: true,\n                    arrowSize: 40,\n                    showMouseControls: true\n                  },\n                  autoPlayControl: false,\n                  borderRadius: 25,\n                  direction: \"left\",\n                  dragControl: true,\n                  effectsOptions: {\n                    effectsHover: true,\n                    effectsOpacity: 1,\n                    effectsPerspective: 1200,\n                    effectsRotate: 0,\n                    effectsScale: 1\n                  },\n                  fadeOptions: {\n                    fadeAlpha: 0,\n                    fadeContent: false,\n                    fadeInset: 0,\n                    fadeWidth: 25,\n                    overflow: false\n                  },\n                  gap: 10,\n                  height: \"100%\",\n                  id: \"qjG6MJBVa\",\n                  intervalControl: 1.5,\n                  itemAmount: 1,\n                  layoutId: \"qjG6MJBVa\",\n                  padding: 0,\n                  paddingBottom: 0,\n                  paddingLeft: 0,\n                  paddingPerSide: false,\n                  paddingRight: 0,\n                  paddingTop: 0,\n                  progressOptions: {\n                    dotsActiveOpacity: 1,\n                    dotsBackground: \"rgba(0, 0, 0, 0.2)\",\n                    dotsBlur: 0,\n                    dotsFill: \"rgb(255, 255, 255)\",\n                    dotsGap: 10,\n                    dotsInset: 10,\n                    dotSize: 10,\n                    dotsOpacity: .5,\n                    dotsPadding: 10,\n                    dotsRadius: 50,\n                    showProgressDots: true\n                  },\n                  slots: [/*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"687px\",\n                      src: \"https://framerusercontent.com/images/y6voqijZf18IFDgTdf3RaiWFmUM.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/y6voqijZf18IFDgTdf3RaiWFmUM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/y6voqijZf18IFDgTdf3RaiWFmUM.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/y6voqijZf18IFDgTdf3RaiWFmUM.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/y6voqijZf18IFDgTdf3RaiWFmUM.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/y6voqijZf18IFDgTdf3RaiWFmUM.jpg 4960w\"\n                    },\n                    className: \"framer-ja98an\",\n                    \"data-framer-name\": \"market_research\",\n                    name: \"market_research\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"688px\",\n                      src: \"https://framerusercontent.com/images/nIzleLxHI15NlZEBqfaydxaseVc.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/nIzleLxHI15NlZEBqfaydxaseVc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/nIzleLxHI15NlZEBqfaydxaseVc.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/nIzleLxHI15NlZEBqfaydxaseVc.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/nIzleLxHI15NlZEBqfaydxaseVc.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/nIzleLxHI15NlZEBqfaydxaseVc.jpg 4960w\"\n                    },\n                    className: \"framer-1ko3s3w\",\n                    \"data-framer-name\": \"moodboard\",\n                    name: \"moodboard\"\n                  })],\n                  startFrom: 0,\n                  style: {\n                    height: \"100%\",\n                    maxWidth: \"100%\",\n                    width: \"100%\"\n                  },\n                  transitionControl: {\n                    damping: 40,\n                    stiffness: 200,\n                    type: \"spring\"\n                  },\n                  width: \"100%\"\n                })\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-kltxqy\",\n              children: /*#__PURE__*/_jsx(ComponentPresetsProvider, {\n                presets: {},\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    R3V8u6Mvn: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    },\n                    Rchoaog6j: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: hPgLxU62A,\n                    className: \"framer-8nu9ls\",\n                    \"data-framer-name\": \"Project Overview\",\n                    name: \"Project Overview\",\n                    stylesPresetsClassNames: {\n                      h1: \"framer-styles-preset-3nqyhf\",\n                      h2: \"framer-styles-preset-1wml6uu\",\n                      h3: \"framer-styles-preset-186xs3l\",\n                      h4: \"framer-styles-preset-1rcc65v\",\n                      h5: \"framer-styles-preset-cvhavu\",\n                      h6: \"framer-styles-preset-t5mmi2\",\n                      p: \"framer-styles-preset-1mb4u4n\"\n                    },\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-xsaof1-container\",\n              children: /*#__PURE__*/_jsx(Slideshow, {\n                alignment: \"center\",\n                arrowOptions: {\n                  arrowFill: \"rgba(0, 0, 0, 0.2)\",\n                  arrowGap: 10,\n                  arrowPadding: 20,\n                  arrowPaddingBottom: 0,\n                  arrowPaddingLeft: 0,\n                  arrowPaddingRight: 0,\n                  arrowPaddingTop: 0,\n                  arrowPosition: \"auto\",\n                  arrowRadius: 40,\n                  arrowShouldFadeIn: false,\n                  arrowShouldSpace: true,\n                  arrowSize: 40,\n                  showMouseControls: true\n                },\n                autoPlayControl: false,\n                borderRadius: 25,\n                direction: \"left\",\n                dragControl: true,\n                effectsOptions: {\n                  effectsHover: true,\n                  effectsOpacity: 1,\n                  effectsPerspective: 1200,\n                  effectsRotate: 0,\n                  effectsScale: 1\n                },\n                fadeOptions: {\n                  fadeAlpha: 0,\n                  fadeContent: false,\n                  fadeInset: 0,\n                  fadeWidth: 25,\n                  overflow: false\n                },\n                gap: 10,\n                height: \"100%\",\n                id: \"ZWoMpHAoP\",\n                intervalControl: 1.5,\n                itemAmount: 1,\n                layoutId: \"ZWoMpHAoP\",\n                padding: 0,\n                paddingBottom: 0,\n                paddingLeft: 0,\n                paddingPerSide: false,\n                paddingRight: 0,\n                paddingTop: 0,\n                progressOptions: {\n                  dotsActiveOpacity: 1,\n                  dotsBackground: \"rgba(0, 0, 0, 0.2)\",\n                  dotsBlur: 0,\n                  dotsFill: \"rgb(255, 255, 255)\",\n                  dotsGap: 10,\n                  dotsInset: 10,\n                  dotSize: 10,\n                  dotsOpacity: .5,\n                  dotsPadding: 10,\n                  dotsRadius: 50,\n                  showProgressDots: true\n                },\n                slots: [/*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 1753.5,\n                    intrinsicWidth: 2480,\n                    pixelHeight: 3507,\n                    pixelWidth: 4960,\n                    sizes: \"687px\",\n                    src: \"https://framerusercontent.com/images/reLAVFU5TeGkI0XFKMn5FCxA.jpg?scale-down-to=4096\",\n                    srcSet: \"https://framerusercontent.com/images/reLAVFU5TeGkI0XFKMn5FCxA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/reLAVFU5TeGkI0XFKMn5FCxA.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/reLAVFU5TeGkI0XFKMn5FCxA.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/reLAVFU5TeGkI0XFKMn5FCxA.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/reLAVFU5TeGkI0XFKMn5FCxA.jpg 4960w\"\n                  },\n                  className: \"framer-1gbxonz\",\n                  \"data-framer-name\": \"prototyping\",\n                  name: \"prototyping\"\n                }), /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 1753.5,\n                    intrinsicWidth: 2480,\n                    pixelHeight: 3507,\n                    pixelWidth: 4960,\n                    sizes: \"687px\",\n                    src: \"https://framerusercontent.com/images/yb3od8X6OMjQx0efxTRrUMK0E.jpg?scale-down-to=4096\",\n                    srcSet: \"https://framerusercontent.com/images/yb3od8X6OMjQx0efxTRrUMK0E.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/yb3od8X6OMjQx0efxTRrUMK0E.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/yb3od8X6OMjQx0efxTRrUMK0E.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/yb3od8X6OMjQx0efxTRrUMK0E.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/yb3od8X6OMjQx0efxTRrUMK0E.jpg 4960w\"\n                  },\n                  className: \"framer-1f24oyt\",\n                  \"data-framer-name\": \"user_testing\",\n                  name: \"user_testing\"\n                })],\n                startFrom: 0,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                transitionControl: {\n                  damping: 40,\n                  stiffness: 200,\n                  type: \"spring\"\n                },\n                width: \"100%\"\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-197a9gg\",\n              children: /*#__PURE__*/_jsx(ComponentPresetsProvider, {\n                presets: {},\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    R3V8u6Mvn: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    },\n                    Rchoaog6j: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: uAAqo29fy,\n                    className: \"framer-jsmd0x\",\n                    \"data-framer-name\": \"Project Overview\",\n                    name: \"Project Overview\",\n                    stylesPresetsClassNames: {\n                      h1: \"framer-styles-preset-3nqyhf\",\n                      h2: \"framer-styles-preset-1wml6uu\",\n                      h3: \"framer-styles-preset-186xs3l\",\n                      h4: \"framer-styles-preset-1rcc65v\",\n                      h5: \"framer-styles-preset-cvhavu\",\n                      h6: \"framer-styles-preset-t5mmi2\",\n                      p: \"framer-styles-preset-1mb4u4n\"\n                    },\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-c42gm0\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  R3V8u6Mvn: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      loading: \"lazy\",\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"max(100vw - 80px, 0px)\",\n                      src: \"https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg 4960w\"\n                    }\n                  },\n                  Rchoaog6j: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      loading: \"lazy\",\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"calc(100vw - 40px)\",\n                      src: \"https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg 4960w\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 1753.5,\n                    intrinsicWidth: 2480,\n                    loading: \"lazy\",\n                    pixelHeight: 3507,\n                    pixelWidth: 4960,\n                    sizes: \"max(100vw - 240px, 0px)\",\n                    src: \"https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=4096\",\n                    srcSet: \"https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/DTZFglzOVemkMQ7ctNdC1yLGc4.jpg 4960w\"\n                  },\n                  className: \"framer-1gxz52\",\n                  \"data-framer-name\": \"design_brief\",\n                  name: \"design_brief\"\n                })\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-1dejys1\",\n              children: /*#__PURE__*/_jsx(ComponentPresetsProvider, {\n                presets: {},\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    R3V8u6Mvn: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    },\n                    Rchoaog6j: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: Keiv5OyGI,\n                    className: \"framer-1sclfmx\",\n                    \"data-framer-name\": \"Project Overview\",\n                    name: \"Project Overview\",\n                    stylesPresetsClassNames: {\n                      h1: \"framer-styles-preset-3nqyhf\",\n                      h2: \"framer-styles-preset-1wml6uu\",\n                      h3: \"framer-styles-preset-186xs3l\",\n                      h4: \"framer-styles-preset-1rcc65v\",\n                      h5: \"framer-styles-preset-cvhavu\",\n                      h6: \"framer-styles-preset-t5mmi2\",\n                      p: \"framer-styles-preset-1mb4u4n\"\n                    },\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1yeettv-container\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  R3V8u6Mvn: {\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Slideshow, {\n                  alignment: \"center\",\n                  arrowOptions: {\n                    arrowFill: \"rgba(0, 0, 0, 0.2)\",\n                    arrowGap: 10,\n                    arrowPadding: 20,\n                    arrowPaddingBottom: 0,\n                    arrowPaddingLeft: 0,\n                    arrowPaddingRight: 0,\n                    arrowPaddingTop: 0,\n                    arrowPosition: \"auto\",\n                    arrowRadius: 40,\n                    arrowShouldFadeIn: false,\n                    arrowShouldSpace: true,\n                    arrowSize: 40,\n                    showMouseControls: true\n                  },\n                  autoPlayControl: false,\n                  borderRadius: 25,\n                  direction: \"left\",\n                  dragControl: true,\n                  effectsOptions: {\n                    effectsHover: true,\n                    effectsOpacity: 1,\n                    effectsPerspective: 1200,\n                    effectsRotate: 0,\n                    effectsScale: 1\n                  },\n                  fadeOptions: {\n                    fadeAlpha: 0,\n                    fadeContent: false,\n                    fadeInset: 0,\n                    fadeWidth: 25,\n                    overflow: false\n                  },\n                  gap: 10,\n                  height: \"100%\",\n                  id: \"aPkCcy2cQ\",\n                  intervalControl: 1.5,\n                  itemAmount: 1,\n                  layoutId: \"aPkCcy2cQ\",\n                  padding: 0,\n                  paddingBottom: 0,\n                  paddingLeft: 0,\n                  paddingPerSide: false,\n                  paddingRight: 0,\n                  paddingTop: 0,\n                  progressOptions: {\n                    dotsActiveOpacity: 1,\n                    dotsBackground: \"rgba(0, 0, 0, 0.2)\",\n                    dotsBlur: 0,\n                    dotsFill: \"rgb(255, 255, 255)\",\n                    dotsGap: 10,\n                    dotsInset: 10,\n                    dotSize: 10,\n                    dotsOpacity: .5,\n                    dotsPadding: 10,\n                    dotsRadius: 50,\n                    showProgressDots: true\n                  },\n                  slots: [/*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"687px\",\n                      src: \"https://framerusercontent.com/images/7QPHuGAyJ2pLLhlQupy7Xn2NxH0.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/7QPHuGAyJ2pLLhlQupy7Xn2NxH0.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/7QPHuGAyJ2pLLhlQupy7Xn2NxH0.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/7QPHuGAyJ2pLLhlQupy7Xn2NxH0.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/7QPHuGAyJ2pLLhlQupy7Xn2NxH0.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/7QPHuGAyJ2pLLhlQupy7Xn2NxH0.jpg 4960w\"\n                    },\n                    className: \"framer-102k9ad\",\n                    \"data-framer-name\": \"modelling\",\n                    name: \"modelling\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"687px\",\n                      src: \"https://framerusercontent.com/images/V7doMF7MdxeN1CZOjtCWbC00I.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/V7doMF7MdxeN1CZOjtCWbC00I.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/V7doMF7MdxeN1CZOjtCWbC00I.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/V7doMF7MdxeN1CZOjtCWbC00I.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/V7doMF7MdxeN1CZOjtCWbC00I.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/V7doMF7MdxeN1CZOjtCWbC00I.jpg 4960w\"\n                    },\n                    className: \"framer-1eahbyv\",\n                    \"data-framer-name\": \"appearance_model\",\n                    name: \"appearance_model\"\n                  })],\n                  startFrom: 0,\n                  style: {\n                    height: \"100%\",\n                    maxWidth: \"100%\",\n                    width: \"100%\"\n                  },\n                  transitionControl: {\n                    damping: 40,\n                    stiffness: 200,\n                    type: \"spring\"\n                  },\n                  width: \"100%\"\n                })\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-h8360s\",\n              children: /*#__PURE__*/_jsx(ComponentPresetsProvider, {\n                presets: {},\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    R3V8u6Mvn: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    },\n                    Rchoaog6j: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: RbzK2bSiV,\n                    className: \"framer-138zgzt\",\n                    \"data-framer-name\": \"Project Overview\",\n                    name: \"Project Overview\",\n                    stylesPresetsClassNames: {\n                      h1: \"framer-styles-preset-3nqyhf\",\n                      h2: \"framer-styles-preset-1wml6uu\",\n                      h3: \"framer-styles-preset-186xs3l\",\n                      h4: \"framer-styles-preset-1rcc65v\",\n                      h5: \"framer-styles-preset-cvhavu\",\n                      h6: \"framer-styles-preset-t5mmi2\",\n                      p: \"framer-styles-preset-1mb4u4n\"\n                    },\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-ccl30o-container\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  R3V8u6Mvn: {\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Slideshow, {\n                  alignment: \"center\",\n                  arrowOptions: {\n                    arrowFill: \"rgba(0, 0, 0, 0.2)\",\n                    arrowGap: 10,\n                    arrowPadding: 20,\n                    arrowPaddingBottom: 0,\n                    arrowPaddingLeft: 0,\n                    arrowPaddingRight: 0,\n                    arrowPaddingTop: 0,\n                    arrowPosition: \"auto\",\n                    arrowRadius: 40,\n                    arrowShouldFadeIn: false,\n                    arrowShouldSpace: true,\n                    arrowSize: 40,\n                    showMouseControls: true\n                  },\n                  autoPlayControl: false,\n                  borderRadius: 25,\n                  direction: \"left\",\n                  dragControl: true,\n                  effectsOptions: {\n                    effectsHover: true,\n                    effectsOpacity: 1,\n                    effectsPerspective: 1200,\n                    effectsRotate: 0,\n                    effectsScale: 1\n                  },\n                  fadeOptions: {\n                    fadeAlpha: 0,\n                    fadeContent: false,\n                    fadeInset: 0,\n                    fadeWidth: 25,\n                    overflow: false\n                  },\n                  gap: 10,\n                  height: \"100%\",\n                  id: \"AMdHPd_zX\",\n                  intervalControl: 1.5,\n                  itemAmount: 1,\n                  layoutId: \"AMdHPd_zX\",\n                  padding: 0,\n                  paddingBottom: 0,\n                  paddingLeft: 0,\n                  paddingPerSide: false,\n                  paddingRight: 0,\n                  paddingTop: 0,\n                  progressOptions: {\n                    dotsActiveOpacity: 1,\n                    dotsBackground: \"rgba(0, 0, 0, 0.2)\",\n                    dotsBlur: 0,\n                    dotsFill: \"rgb(255, 255, 255)\",\n                    dotsGap: 10,\n                    dotsInset: 10,\n                    dotSize: 10,\n                    dotsOpacity: .5,\n                    dotsPadding: 10,\n                    dotsRadius: 50,\n                    showProgressDots: true\n                  },\n                  slots: [/*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"687px\",\n                      src: \"https://framerusercontent.com/images/lTFL9jYgSdVNkBLJ0mPFy4bFoU4.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/lTFL9jYgSdVNkBLJ0mPFy4bFoU4.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/lTFL9jYgSdVNkBLJ0mPFy4bFoU4.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/lTFL9jYgSdVNkBLJ0mPFy4bFoU4.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/lTFL9jYgSdVNkBLJ0mPFy4bFoU4.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/lTFL9jYgSdVNkBLJ0mPFy4bFoU4.jpg 4960w\"\n                    },\n                    className: \"framer-1wtu3wi\",\n                    \"data-framer-name\": \"lady_jane\",\n                    name: \"lady_jane\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"687px\",\n                      src: \"https://framerusercontent.com/images/FnBce0Qpyt9gQbQpBScBMLXIY.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/FnBce0Qpyt9gQbQpBScBMLXIY.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/FnBce0Qpyt9gQbQpBScBMLXIY.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/FnBce0Qpyt9gQbQpBScBMLXIY.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/FnBce0Qpyt9gQbQpBScBMLXIY.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/FnBce0Qpyt9gQbQpBScBMLXIY.jpg 4960w\"\n                    },\n                    className: \"framer-1r0yr4j\",\n                    \"data-framer-name\": \"user_interation\",\n                    name: \"user_interation\"\n                  })],\n                  startFrom: 0,\n                  style: {\n                    height: \"100%\",\n                    maxWidth: \"100%\",\n                    width: \"100%\"\n                  },\n                  transitionControl: {\n                    damping: 40,\n                    stiffness: 200,\n                    type: \"spring\"\n                  },\n                  width: \"100%\"\n                })\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-1di7ddx\",\n              children: /*#__PURE__*/_jsx(ComponentPresetsProvider, {\n                presets: {},\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    R3V8u6Mvn: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    },\n                    Rchoaog6j: {\n                      stylesPresetsClassNames: {\n                        code: \"framer-styles-preset-7vzzxv\",\n                        h1: \"framer-styles-preset-3nqyhf\",\n                        h2: \"framer-styles-preset-1wml6uu\",\n                        h3: \"framer-styles-preset-186xs3l\",\n                        h4: \"framer-styles-preset-1rcc65v\",\n                        h5: \"framer-styles-preset-cvhavu\",\n                        h6: \"framer-styles-preset-t5mmi2\",\n                        p: \"framer-styles-preset-1mb4u4n\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: MeYGQZwHm,\n                    className: \"framer-f7e4u2\",\n                    \"data-framer-name\": \"Project Overview\",\n                    name: \"Project Overview\",\n                    stylesPresetsClassNames: {\n                      h1: \"framer-styles-preset-3nqyhf\",\n                      h2: \"framer-styles-preset-1wml6uu\",\n                      h3: \"framer-styles-preset-186xs3l\",\n                      h4: \"framer-styles-preset-1rcc65v\",\n                      h5: \"framer-styles-preset-cvhavu\",\n                      h6: \"framer-styles-preset-t5mmi2\",\n                      p: \"framer-styles-preset-1mb4u4n\"\n                    },\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-8i24uy\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  R3V8u6Mvn: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      loading: \"lazy\",\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"688.0639px\",\n                      src: \"https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg 4960w\"\n                    }\n                  },\n                  Rchoaog6j: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1753.5,\n                      intrinsicWidth: 2480,\n                      loading: \"lazy\",\n                      pixelHeight: 3507,\n                      pixelWidth: 4960,\n                      sizes: \"max(100vw - 40px, 0px)\",\n                      src: \"https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=4096\",\n                      srcSet: \"https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg 4960w\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 1753.5,\n                    intrinsicWidth: 2480,\n                    loading: \"lazy\",\n                    pixelHeight: 3507,\n                    pixelWidth: 4960,\n                    sizes: \"max(100vw - 240px, 0px)\",\n                    src: \"https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=4096\",\n                    srcSet: \"https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/q5YdMqZcIr1kDBMyIoM5onjjCDk.jpg 4960w\"\n                  },\n                  className: \"framer-1k2hsz6\",\n                  \"data-framer-name\": \"closer_image\",\n                  name: \"closer_image\"\n                })\n              })\n            }), isDisplayed1() && /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                R3V8u6Mvn: {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    loading: \"lazy\",\n                    sizes: \"calc(100vw - 80px)\",\n                    ...toResponsiveImage(lpUwyTTbw)\n                  }\n                }\n              },\n              children: /*#__PURE__*/_jsx(Image, {\n                background: {\n                  alt: \"\",\n                  fit: \"fill\",\n                  loading: \"lazy\",\n                  sizes: \"calc(100vw - 240px)\",\n                  ...toResponsiveImage(lpUwyTTbw)\n                },\n                className: \"framer-1y1y2kn hidden-jmwmzu\",\n                children: visible && /*#__PURE__*/_jsx(RichTextWithFX, {\n                  __framer__animate: {\n                    transition: transition2\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation3,\n                  __framer__exit: animation4,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: 0,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1wml6uu\",\n                      \"data-styles-preset\": \"fVxnimdqP\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"\n                      },\n                      children: \"The end result is a user-friendly electric bicycle that makes it easy for riders to enjoy the benefits of e-bikes without feeling overwhelmed by technology. With VoltBike, riding smarter has never been easier!\"\n                    })\n                  }),\n                  className: \"framer-tdc31y\",\n                  \"data-framer-name\": \"Bottom Project Description\",\n                  name: \"Bottom Project Description\",\n                  text: Eh12kcQmL,\n                  transformTemplate: transformTemplate1,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })\n            }), visible1 && /*#__PURE__*/_jsx(RichTextWithFX, {\n              __framer__animate: {\n                transition: transition2\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation3,\n              __framer__exit: animation4,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: 0,\n              __fromCanvasComponent: true,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(\"p\", {\n                  className: \"framer-styles-preset-1wml6uu\",\n                  \"data-styles-preset\": \"fVxnimdqP\",\n                  style: {\n                    \"--framer-text-color\": \"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"\n                  },\n                  children: \"Through extensive user research, we discovered that many e-bike users felt overwhelmed by the technology and controls on their bikes. To address this, we created a simple and intuitive interface that allows riders to easily adjust their level of assist and monitor their battery life. We also incorporated GPS navigation, allowing riders to plan their route and track their progress.\"\n                })\n              }),\n              className: \"framer-wrxqgs\",\n              \"data-framer-name\": \"Top Project Description\",\n              name: \"Top Project Description\",\n              text: OiQ7bgvHi,\n              transformTemplate: transformTemplate,\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-j4q0oz\",\n              \"data-framer-name\": \"Footer\",\n              name: \"Footer\",\n              children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition2\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation7,\n                __framer__exit: animation8,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-htdejh\",\n                \"data-framer-name\": \"Top Section\",\n                name: \"Top Section\",\n                transformTemplate: transformTemplate,\n                children: [/*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1em5zzr\",\n                  \"data-framer-name\": \"Info\",\n                  name: \"Info\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      Rchoaog6j: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7RE0gU2Fucy1yZWd1bGFy\",\n                              \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"20px\",\n                              \"--framer-letter-spacing\": \"0px\",\n                              \"--framer-line-height\": \"1.4em\",\n                              \"--framer-text-color\": \"var(--variable-reference-xjJ07e9Th-eRB4KVWiA)\"\n                            },\n                            children: \"Happy to see you here, Lets connect!\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7RE0gU2Fucy1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"28px\",\n                            \"--framer-letter-spacing\": \"0px\",\n                            \"--framer-line-height\": \"1.4em\",\n                            \"--framer-text-color\": \"var(--variable-reference-xjJ07e9Th-eRB4KVWiA)\"\n                          },\n                          children: \"Happy to see you here, Lets connect!\"\n                        })\n                      }),\n                      className: \"framer-1v1jdwq\",\n                      fonts: [\"GF;DM Sans-regular\"],\n                      style: {\n                        \"--variable-reference-xjJ07e9Th-eRB4KVWiA\": xjJ07e9TheRB4KVWiA\n                      },\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), isDisplayed2() && /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-1mb4u4n\",\n                        \"data-styles-preset\": \"Eh2bd75CT\",\n                        style: {\n                          \"--framer-text-color\": \"var(--variable-reference-xjJ07e9Th-eRB4KVWiA)\"\n                        },\n                        children: \"2023 Hannie Heilpern || Made with love\"\n                      })\n                    }),\n                    className: \"framer-b2ovun hidden-1ciu1do hidden-jmwmzu\",\n                    style: {\n                      \"--variable-reference-xjJ07e9Th-eRB4KVWiA\": xjJ07e9TheRB4KVWiA\n                    },\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-pdwiyh\",\n                  \"data-framer-name\": \"Explore\",\n                  name: \"Explore\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h4\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7RE0gU2Fucy02MDA=\",\n                          \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                          \"--framer-font-weight\": \"600\",\n                          \"--framer-line-height\": \"2.2em\",\n                          \"--framer-text-color\": \"var(--variable-reference-xjJ07e9Th-eRB4KVWiA)\"\n                        },\n                        children: \"EXPLORE\"\n                      })\n                    }),\n                    className: \"framer-7poqy4\",\n                    fonts: [\"GF;DM Sans-600\"],\n                    style: {\n                      \"--variable-reference-xjJ07e9Th-eRB4KVWiA\": xjJ07e9TheRB4KVWiA\n                    },\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsxs(\"div\", {\n                    className: \"framer-qyz74\",\n                    \"data-framer-name\": \"footer-links\",\n                    name: \"footer-links\",\n                    children: [/*#__PURE__*/_jsxs(\"div\", {\n                      className: \"framer-1q15ikm\",\n                      children: [/*#__PURE__*/_jsx(Container, {\n                        className: \"framer-cd9rva-container\",\n                        \"data-framer-name\": \"work-link\",\n                        name: \"work-link\",\n                        children: /*#__PURE__*/_jsx(Link, {\n                          height: \"100%\",\n                          id: \"ZGAwENnI3\",\n                          layoutId: \"ZGAwENnI3\",\n                          Mk9k_QaYB: 'var(--token-d47bba34-339e-4038-8c6c-631863cff0b3, rgb(128, 128, 128)) /* {\"name\":\"Dark / 50\"} */',\n                          name: \"work-link\",\n                          Pd5KWzg2z: 'var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0)) /* {\"name\":\"Primary / Black\"} */',\n                          style: {\n                            height: \"100%\"\n                          },\n                          uL7VXKfXs: \"Work\",\n                          width: \"100%\",\n                          zRD3giSbo: resolveLink({\n                            webPageId: \"rAAftdBw5\"\n                          }, router)\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-xqnoh3-container\",\n                        \"data-framer-name\": \"work-link\",\n                        name: \"work-link\",\n                        children: /*#__PURE__*/_jsx(Link, {\n                          height: \"100%\",\n                          id: \"iFAT2nxaE\",\n                          layoutId: \"iFAT2nxaE\",\n                          Mk9k_QaYB: 'var(--token-d47bba34-339e-4038-8c6c-631863cff0b3, rgb(128, 128, 128)) /* {\"name\":\"Dark / 50\"} */',\n                          name: \"work-link\",\n                          Pd5KWzg2z: 'var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0)) /* {\"name\":\"Primary / Black\"} */',\n                          style: {\n                            height: \"100%\"\n                          },\n                          uL7VXKfXs: \"About Me\",\n                          width: \"100%\",\n                          zRD3giSbo: resolveLink({\n                            webPageId: \"CNFavoEcf\"\n                          }, router)\n                        })\n                      })]\n                    }), /*#__PURE__*/_jsxs(\"div\", {\n                      className: \"framer-1l33niy\",\n                      children: [/*#__PURE__*/_jsx(Container, {\n                        className: \"framer-u4vrkv-container\",\n                        children: /*#__PURE__*/_jsx(LinkNt, {\n                          height: \"100%\",\n                          hSwXh6EZH: \"https://drive.google.com/file/d/1YlE5i5d8auUPEdXseAD6zKZoPgIBqO9D/view\",\n                          id: \"u_3jbWpbK\",\n                          layoutId: \"u_3jbWpbK\",\n                          style: {\n                            height: \"100%\",\n                            width: \"100%\"\n                          },\n                          VWoEC_ZEO: \"Resume\",\n                          width: \"100%\"\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-12kk725-container\",\n                        children: /*#__PURE__*/_jsx(LinkNt, {\n                          height: \"100%\",\n                          hSwXh6EZH: \"https://www.linkedin.com/in/hannieheilpern\",\n                          id: \"McNyHLh7i\",\n                          layoutId: \"McNyHLh7i\",\n                          style: {\n                            height: \"100%\",\n                            width: \"100%\"\n                          },\n                          VWoEC_ZEO: \"Linkedin\",\n                          width: \"100%\"\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-gutnf6-container\",\n                        children: /*#__PURE__*/_jsx(LinkNt, {\n                          height: \"100%\",\n                          hSwXh6EZH: \"https://www.instagram.com/hannieheilpern/\",\n                          id: \"pAXzXYFPw\",\n                          layoutId: \"pAXzXYFPw\",\n                          style: {\n                            height: \"100%\"\n                          },\n                          VWoEC_ZEO: \"Instagram\",\n                          width: \"100%\"\n                        })\n                      })]\n                    })]\n                  })]\n                })]\n              }), isDisplayed3() && /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    className: \"framer-styles-preset-1mb4u4n\",\n                    \"data-styles-preset\": \"Eh2bd75CT\",\n                    style: {\n                      \"--framer-text-color\": \"var(--variable-reference-xjJ07e9Th-eRB4KVWiA)\"\n                    },\n                    children: \"2023 Hannie Heilpern || Made with love\"\n                  })\n                }),\n                className: \"framer-9r490h hidden-1yl3m9n\",\n                style: {\n                  \"--variable-reference-xjJ07e9Th-eRB4KVWiA\": xjJ07e9TheRB4KVWiA\n                },\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            })]\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-3gTKL [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName}-framer-3gTKL { background: rgb(245, 250, 255); }`, \".framer-3gTKL .framer-1bv8i34 { display: block; }\", \".framer-3gTKL .framer-1yl3m9n { align-content: center; align-items: center; background-color: #f5faff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1099px; }\", \".framer-3gTKL .framer-1gflt6o-container { flex: none; height: auto; max-width: 100%; position: sticky; top: 0px; transform: perspective(1200px); width: 100%; will-change: transform; z-index: 10; }\", \".framer-3gTKL .framer-12wig4w { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: 14896px; justify-content: center; max-width: 100%; overflow: hidden; padding: 80px 120px 40px 120px; position: relative; width: 100%; }\", \".framer-3gTKL .framer-eswrj0 { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px 75px 0px 75px; position: relative; width: 100%; }\", \".framer-3gTKL .framer-18zm0m0 { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-3gTKL .framer-1bvmbqq, .framer-3gTKL .framer-34ef62, .framer-3gTKL .framer-wrxqgs { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-3gTKL .framer-kk1ely { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-3gTKL .framer-1d1rhuz, .framer-3gTKL .framer-1678p5b, .framer-3gTKL .framer-1guwnws { align-content: start; align-items: start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-3gTKL .framer-6i5ak4, .framer-3gTKL .framer-1x1q44f, .framer-3gTKL .framer-1pa0gsu, .framer-3gTKL .framer-9ogwyb, .framer-3gTKL .framer-g73g7o, .framer-3gTKL .framer-1bmb860 { --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-3gTKL .framer-1mzpqjt { background-color: #ffffff; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: 300px; overflow: hidden; position: relative; transform: perspective(1200px); width: 100%; will-change: var(--framer-will-change-override, transform); }\", \".framer-3gTKL .framer-ekckpi { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 100%; left: calc(49.59254947613506% - min(100%, 52.852153667054715%) / 2); max-width: 100%; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100.33333333333334% / 2); transform: perspective(1200px); width: 53%; }\", \".framer-3gTKL .framer-8ukwyy, .framer-3gTKL .framer-zurblf, .framer-3gTKL .framer-mpoctl, .framer-3gTKL .framer-kltxqy, .framer-3gTKL .framer-197a9gg, .framer-3gTKL .framer-1dejys1, .framer-3gTKL .framer-h8360s, .framer-3gTKL .framer-1di7ddx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-3gTKL .framer-x0twnl, .framer-3gTKL .framer-1ea4zho, .framer-3gTKL .framer-8nu9ls, .framer-3gTKL .framer-jsmd0x, .framer-3gTKL .framer-1sclfmx, .framer-3gTKL .framer-138zgzt, .framer-3gTKL .framer-f7e4u2 { --framer-paragraph-spacing: 32px; flex: 1 0 0px; height: auto; max-width: 75%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-3gTKL .framer-1o7ootj-container { flex: none; height: 4%; max-width: 100%; position: relative; width: 100%; }\", \".framer-3gTKL .framer-1pg5mvs, .framer-3gTKL .framer-11pm12z, .framer-3gTKL .framer-1ko3s3w { aspect-ratio: 1.4143142286854862 / 1; height: var(--framer-aspect-ratio-supported, 487px); overflow: visible; position: relative; width: 688px; }\", \".framer-3gTKL .framer-16wtiax-container, .framer-3gTKL .framer-1yeettv-container, .framer-3gTKL .framer-ccl30o-container { flex: none; height: 600px; max-width: 100%; position: relative; width: 100%; }\", \".framer-3gTKL .framer-ja98an, .framer-3gTKL .framer-1gbxonz, .framer-3gTKL .framer-1f24oyt, .framer-3gTKL .framer-102k9ad, .framer-3gTKL .framer-1eahbyv, .framer-3gTKL .framer-1wtu3wi, .framer-3gTKL .framer-1r0yr4j { aspect-ratio: 1.4143142286854862 / 1; height: var(--framer-aspect-ratio-supported, 486px); overflow: visible; position: relative; width: 687px; }\", \".framer-3gTKL .framer-xsaof1-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\", \".framer-3gTKL .framer-c42gm0, .framer-3gTKL .framer-8i24uy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-3gTKL .framer-1gxz52, .framer-3gTKL .framer-1k2hsz6 { aspect-ratio: 1.4143142286854862 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 608px); overflow: visible; position: relative; width: 1px; }\", \".framer-3gTKL .framer-1y1y2kn { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 0px; position: relative; width: 100%; }\", \".framer-3gTKL .framer-tdc31y { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; overflow: visible; position: absolute; top: -1178px; transform: perspective(1200px) translateX(-50%); white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\", \".framer-3gTKL .framer-j4q0oz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\", \".framer-3gTKL .framer-htdejh { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-3gTKL .framer-1em5zzr { align-content: start; align-items: start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 150px 0px 0px; position: relative; width: 1px; }\", \".framer-3gTKL .framer-1v1jdwq { --framer-paragraph-spacing: 0px; --variable-reference-xjJ07e9Th-eRB4KVWiA: var(--1w7scww); flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 674px; word-break: break-word; word-wrap: break-word; }\", \".framer-3gTKL .framer-b2ovun, .framer-3gTKL .framer-7poqy4 { --framer-paragraph-spacing: 0px; --variable-reference-xjJ07e9Th-eRB4KVWiA: var(--1w7scww); flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\", \".framer-3gTKL .framer-pdwiyh { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 50px 0px 0px; position: relative; width: min-content; }\", \".framer-3gTKL .framer-qyz74 { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-3gTKL .framer-1q15ikm, .framer-3gTKL .framer-1l33niy { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-3gTKL .framer-cd9rva-container, .framer-3gTKL .framer-xqnoh3-container { flex: none; height: 24px; position: relative; width: auto; }\", \".framer-3gTKL .framer-u4vrkv-container, .framer-3gTKL .framer-12kk725-container { flex: none; height: 28px; position: relative; width: 73px; }\", \".framer-3gTKL .framer-gutnf6-container { flex: none; height: 28px; position: relative; width: auto; }\", \".framer-3gTKL .framer-9r490h { --framer-paragraph-spacing: 0px; --variable-reference-xjJ07e9Th-eRB4KVWiA: var(--1w7scww); flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3gTKL .framer-1yl3m9n, .framer-3gTKL .framer-12wig4w, .framer-3gTKL .framer-eswrj0, .framer-3gTKL .framer-18zm0m0, .framer-3gTKL .framer-kk1ely, .framer-3gTKL .framer-1d1rhuz, .framer-3gTKL .framer-1678p5b, .framer-3gTKL .framer-1guwnws, .framer-3gTKL .framer-8ukwyy, .framer-3gTKL .framer-zurblf, .framer-3gTKL .framer-mpoctl, .framer-3gTKL .framer-kltxqy, .framer-3gTKL .framer-197a9gg, .framer-3gTKL .framer-c42gm0, .framer-3gTKL .framer-1dejys1, .framer-3gTKL .framer-h8360s, .framer-3gTKL .framer-1di7ddx, .framer-3gTKL .framer-8i24uy, .framer-3gTKL .framer-j4q0oz, .framer-3gTKL .framer-1em5zzr, .framer-3gTKL .framer-pdwiyh, .framer-3gTKL .framer-qyz74, .framer-3gTKL .framer-1q15ikm, .framer-3gTKL .framer-1l33niy { gap: 0px; } .framer-3gTKL .framer-1yl3m9n > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3gTKL .framer-1yl3m9n > :first-child, .framer-3gTKL .framer-12wig4w > :first-child, .framer-3gTKL .framer-eswrj0 > :first-child, .framer-3gTKL .framer-18zm0m0 > :first-child, .framer-3gTKL .framer-1d1rhuz > :first-child, .framer-3gTKL .framer-1678p5b > :first-child, .framer-3gTKL .framer-1guwnws > :first-child, .framer-3gTKL .framer-j4q0oz > :first-child, .framer-3gTKL .framer-1em5zzr > :first-child, .framer-3gTKL .framer-pdwiyh > :first-child, .framer-3gTKL .framer-1q15ikm > :first-child, .framer-3gTKL .framer-1l33niy > :first-child { margin-top: 0px; } .framer-3gTKL .framer-1yl3m9n > :last-child, .framer-3gTKL .framer-12wig4w > :last-child, .framer-3gTKL .framer-eswrj0 > :last-child, .framer-3gTKL .framer-18zm0m0 > :last-child, .framer-3gTKL .framer-1d1rhuz > :last-child, .framer-3gTKL .framer-1678p5b > :last-child, .framer-3gTKL .framer-1guwnws > :last-child, .framer-3gTKL .framer-j4q0oz > :last-child, .framer-3gTKL .framer-1em5zzr > :last-child, .framer-3gTKL .framer-pdwiyh > :last-child, .framer-3gTKL .framer-1q15ikm > :last-child, .framer-3gTKL .framer-1l33niy > :last-child { margin-bottom: 0px; } .framer-3gTKL .framer-12wig4w > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-3gTKL .framer-eswrj0 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-3gTKL .framer-18zm0m0 > *, .framer-3gTKL .framer-pdwiyh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-3gTKL .framer-kk1ely > *, .framer-3gTKL .framer-qyz74 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-3gTKL .framer-kk1ely > :first-child, .framer-3gTKL .framer-8ukwyy > :first-child, .framer-3gTKL .framer-zurblf > :first-child, .framer-3gTKL .framer-mpoctl > :first-child, .framer-3gTKL .framer-kltxqy > :first-child, .framer-3gTKL .framer-197a9gg > :first-child, .framer-3gTKL .framer-c42gm0 > :first-child, .framer-3gTKL .framer-1dejys1 > :first-child, .framer-3gTKL .framer-h8360s > :first-child, .framer-3gTKL .framer-1di7ddx > :first-child, .framer-3gTKL .framer-8i24uy > :first-child, .framer-3gTKL .framer-qyz74 > :first-child { margin-left: 0px; } .framer-3gTKL .framer-kk1ely > :last-child, .framer-3gTKL .framer-8ukwyy > :last-child, .framer-3gTKL .framer-zurblf > :last-child, .framer-3gTKL .framer-mpoctl > :last-child, .framer-3gTKL .framer-kltxqy > :last-child, .framer-3gTKL .framer-197a9gg > :last-child, .framer-3gTKL .framer-c42gm0 > :last-child, .framer-3gTKL .framer-1dejys1 > :last-child, .framer-3gTKL .framer-h8360s > :last-child, .framer-3gTKL .framer-1di7ddx > :last-child, .framer-3gTKL .framer-8i24uy > :last-child, .framer-3gTKL .framer-qyz74 > :last-child { margin-right: 0px; } .framer-3gTKL .framer-1d1rhuz > *, .framer-3gTKL .framer-1678p5b > *, .framer-3gTKL .framer-1guwnws > *, .framer-3gTKL .framer-1q15ikm > *, .framer-3gTKL .framer-1l33niy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3gTKL .framer-8ukwyy > *, .framer-3gTKL .framer-zurblf > *, .framer-3gTKL .framer-mpoctl > *, .framer-3gTKL .framer-kltxqy > *, .framer-3gTKL .framer-197a9gg > *, .framer-3gTKL .framer-c42gm0 > *, .framer-3gTKL .framer-1dejys1 > *, .framer-3gTKL .framer-h8360s > *, .framer-3gTKL .framer-1di7ddx > *, .framer-3gTKL .framer-8i24uy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3gTKL .framer-j4q0oz > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-3gTKL .framer-1em5zzr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\", \"@media (min-width: 1099px) { .framer-3gTKL .hidden-1yl3m9n { display: none !important; } }\", `@media (min-width: 768px) and (max-width: 1098px) { .framer-3gTKL .hidden-1ciu1do { display: none !important; } .${metadata.bodyClassName}-framer-3gTKL { background: rgb(245, 250, 255); } .framer-3gTKL .framer-1yl3m9n { width: 768px; } .framer-3gTKL .framer-12wig4w { height: min-content; padding: 80px 40px 40px 40px; } .framer-3gTKL .framer-eswrj0 { padding: 0px 75px 0px 80px; } .framer-3gTKL .framer-1mzpqjt { height: 270px; } .framer-3gTKL .framer-1o7ootj-container { height: 482px; max-width: unset; } .framer-3gTKL .framer-16wtiax-container { height: 397px; max-width: unset; } .framer-3gTKL .framer-xsaof1-container { flex: none; height: 482px; } .framer-3gTKL .framer-1gxz52 { height: var(--framer-aspect-ratio-supported, 487px); } .framer-3gTKL .framer-1yeettv-container { height: 494px; max-width: unset; } .framer-3gTKL .framer-ccl30o-container { height: 500px; max-width: unset; } .framer-3gTKL .framer-1k2hsz6 { flex: none; height: var(--framer-aspect-ratio-supported, 487px); width: 688px; } .framer-3gTKL .framer-j4q0oz { gap: 0px; } .framer-3gTKL .framer-htdejh { flex-direction: column; } .framer-3gTKL .framer-1em5zzr { align-self: unset; flex: none; height: 97px; width: 100%; } .framer-3gTKL .framer-pdwiyh { width: 100%; } .framer-3gTKL .framer-qyz74 { gap: unset; justify-content: space-between; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3gTKL .framer-j4q0oz, .framer-3gTKL .framer-htdejh, .framer-3gTKL .framer-qyz74 { gap: 0px; } .framer-3gTKL .framer-j4q0oz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3gTKL .framer-j4q0oz > :first-child { margin-top: 0px; } .framer-3gTKL .framer-j4q0oz > :last-child { margin-bottom: 0px; } .framer-3gTKL .framer-htdejh > *, .framer-3gTKL .framer-htdejh > :first-child, .framer-3gTKL .framer-htdejh > :last-child, .framer-3gTKL .framer-qyz74 > *, .framer-3gTKL .framer-qyz74 > :first-child, .framer-3gTKL .framer-qyz74 > :last-child { margin: 0px; } }}`, `@media (max-width: 767px) { .framer-3gTKL .hidden-jmwmzu { display: none !important; } .${metadata.bodyClassName}-framer-3gTKL { background: rgb(245, 250, 255); } .framer-3gTKL .framer-1yl3m9n { height: 17017px; width: 390px; } .framer-3gTKL .framer-12wig4w { gap: 30px; height: min-content; overflow: visible; padding: 40px 20px 40px 20px; } .framer-3gTKL .framer-eswrj0 { order: 0; padding: 0px 20px 0px 20px; } .framer-3gTKL .framer-kk1ely { flex-direction: column; gap: 15px; } .framer-3gTKL .framer-1d1rhuz, .framer-3gTKL .framer-1678p5b, .framer-3gTKL .framer-1guwnws { flex: none; flex-direction: row; width: 100%; } .framer-3gTKL .framer-6i5ak4, .framer-3gTKL .framer-1x1q44f, .framer-3gTKL .framer-1pa0gsu, .framer-3gTKL .framer-9ogwyb, .framer-3gTKL .framer-g73g7o, .framer-3gTKL .framer-1bmb860 { flex: 1 0 0px; width: 1px; } .framer-3gTKL .framer-1mzpqjt { height: 138px; order: 1; } .framer-3gTKL .framer-8ukwyy { flex-direction: column; order: 3; } .framer-3gTKL .framer-x0twnl { flex: none; width: 100%; } .framer-3gTKL .framer-zurblf { order: 2; } .framer-3gTKL .framer-1o7ootj-container { height: 250px; order: 4; width: 350px; } .framer-3gTKL .framer-mpoctl { flex-direction: column; order: 5; } .framer-3gTKL .framer-1ea4zho, .framer-3gTKL .framer-8nu9ls, .framer-3gTKL .framer-jsmd0x, .framer-3gTKL .framer-1sclfmx, .framer-3gTKL .framer-138zgzt, .framer-3gTKL .framer-f7e4u2 { flex: none; order: 0; width: 100%; } .framer-3gTKL .framer-16wtiax-container { height: 250px; order: 6; width: 350px; } .framer-3gTKL .framer-kltxqy { flex-direction: column; order: 8; } .framer-3gTKL .framer-xsaof1-container { flex: none; height: 250px; order: 9; width: 350px; } .framer-3gTKL .framer-197a9gg { flex-direction: column; order: 10; } .framer-3gTKL .framer-c42gm0 { flex-direction: column; height: 249px; order: 11; } .framer-3gTKL .framer-1gxz52 { flex: none; height: var(--framer-aspect-ratio-supported, 248px); width: 100%; } .framer-3gTKL .framer-1dejys1 { flex-direction: column; order: 12; } .framer-3gTKL .framer-1yeettv-container { height: 250px; order: 13; width: 350px; } .framer-3gTKL .framer-h8360s { flex-direction: column; order: 14; } .framer-3gTKL .framer-ccl30o-container { height: 250px; order: 15; width: 350px; } .framer-3gTKL .framer-1di7ddx { flex-direction: column; order: 16; } .framer-3gTKL .framer-8i24uy { height: 250px; order: 18; } .framer-3gTKL .framer-1k2hsz6 { height: var(--framer-aspect-ratio-supported, 248px); } .framer-3gTKL .framer-wrxqgs { order: 17; } .framer-3gTKL .framer-j4q0oz { gap: 13px; order: 22; } .framer-3gTKL .framer-htdejh { flex-direction: column; } .framer-3gTKL .framer-1em5zzr { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-3gTKL .framer-1v1jdwq { width: 355px; } .framer-3gTKL .framer-pdwiyh { gap: 10px; height: 165px; padding: 0px 0px 0px 0px; width: 100%; } .framer-3gTKL .framer-qyz74 { gap: unset; justify-content: space-between; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3gTKL .framer-12wig4w, .framer-3gTKL .framer-kk1ely, .framer-3gTKL .framer-1d1rhuz, .framer-3gTKL .framer-1678p5b, .framer-3gTKL .framer-1guwnws, .framer-3gTKL .framer-8ukwyy, .framer-3gTKL .framer-mpoctl, .framer-3gTKL .framer-kltxqy, .framer-3gTKL .framer-197a9gg, .framer-3gTKL .framer-c42gm0, .framer-3gTKL .framer-1dejys1, .framer-3gTKL .framer-h8360s, .framer-3gTKL .framer-1di7ddx, .framer-3gTKL .framer-j4q0oz, .framer-3gTKL .framer-htdejh, .framer-3gTKL .framer-pdwiyh, .framer-3gTKL .framer-qyz74 { gap: 0px; } .framer-3gTKL .framer-12wig4w > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-3gTKL .framer-12wig4w > :first-child, .framer-3gTKL .framer-kk1ely > :first-child, .framer-3gTKL .framer-8ukwyy > :first-child, .framer-3gTKL .framer-mpoctl > :first-child, .framer-3gTKL .framer-kltxqy > :first-child, .framer-3gTKL .framer-197a9gg > :first-child, .framer-3gTKL .framer-c42gm0 > :first-child, .framer-3gTKL .framer-1dejys1 > :first-child, .framer-3gTKL .framer-h8360s > :first-child, .framer-3gTKL .framer-1di7ddx > :first-child, .framer-3gTKL .framer-j4q0oz > :first-child, .framer-3gTKL .framer-pdwiyh > :first-child { margin-top: 0px; } .framer-3gTKL .framer-12wig4w > :last-child, .framer-3gTKL .framer-kk1ely > :last-child, .framer-3gTKL .framer-8ukwyy > :last-child, .framer-3gTKL .framer-mpoctl > :last-child, .framer-3gTKL .framer-kltxqy > :last-child, .framer-3gTKL .framer-197a9gg > :last-child, .framer-3gTKL .framer-c42gm0 > :last-child, .framer-3gTKL .framer-1dejys1 > :last-child, .framer-3gTKL .framer-h8360s > :last-child, .framer-3gTKL .framer-1di7ddx > :last-child, .framer-3gTKL .framer-j4q0oz > :last-child, .framer-3gTKL .framer-pdwiyh > :last-child { margin-bottom: 0px; } .framer-3gTKL .framer-kk1ely > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-3gTKL .framer-1d1rhuz > *, .framer-3gTKL .framer-1678p5b > *, .framer-3gTKL .framer-1guwnws > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3gTKL .framer-1d1rhuz > :first-child, .framer-3gTKL .framer-1678p5b > :first-child, .framer-3gTKL .framer-1guwnws > :first-child { margin-left: 0px; } .framer-3gTKL .framer-1d1rhuz > :last-child, .framer-3gTKL .framer-1678p5b > :last-child, .framer-3gTKL .framer-1guwnws > :last-child { margin-right: 0px; } .framer-3gTKL .framer-8ukwyy > *, .framer-3gTKL .framer-mpoctl > *, .framer-3gTKL .framer-kltxqy > *, .framer-3gTKL .framer-197a9gg > *, .framer-3gTKL .framer-c42gm0 > *, .framer-3gTKL .framer-1dejys1 > *, .framer-3gTKL .framer-h8360s > *, .framer-3gTKL .framer-1di7ddx > *, .framer-3gTKL .framer-pdwiyh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3gTKL .framer-j4q0oz > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-3gTKL .framer-htdejh > *, .framer-3gTKL .framer-htdejh > :first-child, .framer-3gTKL .framer-htdejh > :last-child, .framer-3gTKL .framer-qyz74 > *, .framer-3gTKL .framer-qyz74 > :first-child, .framer-3gTKL .framer-qyz74 > :last-child { margin: 0px; } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css, ...sharedStyle4.css, ...sharedStyle5.css, ...sharedStyle6.css, ...sharedStyle7.css, ...sharedStyle8.css, ...sharedStyle9.css, ...sharedStyle10.css, ...sharedStyle11.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    * @framerIntrinsicHeight 14991\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    * @framerIntrinsicWidth 1099\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"R3V8u6Mvn\":{\"layout\":[\"fixed\",\"auto\"]},\"Rchoaog6j\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    */\nconst FramerzipLk6crX = withCSS(Component, css, \"framer-3gTKL\");\nexport default FramerzipLk6crX;\nFramerzipLk6crX.displayName = \"Projects\";\nFramerzipLk6crX.defaultProps = {\n  height: 14991,\n  width: 1099\n};\naddFonts(FramerzipLk6crX, [{\n  family: \"DM Sans\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",\n  weight: \"400\"\n}, {\n  family: \"DM Sans\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",\n  weight: \"600\"\n}, ...NavigationFonts, ...SlideshowFonts, ...LinkFonts, ...LinkNtFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts, ...sharedStyle4.fonts, ...sharedStyle5.fonts, ...sharedStyle6.fonts, ...sharedStyle7.fonts, ...sharedStyle8.fonts, ...sharedStyle9.fonts, ...sharedStyle10.fonts, ...sharedStyle11.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerzipLk6crX\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"1099\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicHeight\": \"14991\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R3V8u6Mvn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rchoaog6j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerContractVersion\": \"1\",\n        \"framerImmutableVariables\": \"true\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "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", "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", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "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", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "VWoEC_ZEO", "hSwXh6EZH", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "u", "RichText", "x", "css", "FramerCxwIqBsPN", "withCSS", "CxwIqBsPN_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "FYVGgK1WB_default", "RichTextWithFX", "withFX", "RichText", "MotionDivWithFX", "motion", "ImageWithFX", "Image2", "SlideshowFonts", "Slideshow", "LinkFonts", "iGIrK7GAS_default", "LinkNtFonts", "CxwIqBsPN_default", "breakpoints", "isBrowser", "variantClassNames", "isBrowser", "removeHiddenBreakpointLayers", "breakpoints", "transitions", "transition1", "animation", "transformTemplate", "_", "t", "animation1", "animation2", "animation3", "transition2", "animation4", "toResponsiveImage", "value", "animation5", "animation6", "isSet", "transformTemplate1", "animation7", "animation8", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "ksdhk0NIT_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "C3Dh4Mi2T", "FgHgo9LSE", "ohmn9yUh4", "pZUNyiuiF", "okhPUrj7c", "LjyX9FN0_", "hPgLxU62A", "uAAqo29fy", "Keiv5OyGI", "RbzK2bSiV", "MeYGQZwHm", "lpUwyTTbw", "Eh12kcQmL", "OiQ7bgvHi", "xjJ07e9TheRB4KVWiA", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "ref1", "pe", "isDisplayed", "isDisplayed1", "visible", "visible1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "PropertyOverrides", "optimizeAppear", "optimizeAppearTransformTemplate", "Container", "FYVGgK1WB_default", "RichTextWithFX", "x", "MotionDivWithFX", "RichText", "ImageWithFX", "ComponentPresetsProvider", "Slideshow", "Image2", "iGIrK7GAS_default", "resolveLink", "CxwIqBsPN_default", "css", "FramerzipLk6crX", "withCSS", "zipLk6crX_default", "addFonts", "NavigationFonts", "SlideshowFonts", "LinkFonts", "LinkNtFonts", "fonts", "__FramerMetadata__"]
}
