{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/EOLwznbYbBgbq0R6u2pZ/cqX6iur2kydZLx7nr8vr/yfTeUeWP4.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\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             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import Button from\"#framer/local/canvasComponent/M_GlV0yfU/M_GlV0yfU.js\";import Header from\"#framer/local/canvasComponent/M6SVEmqd3/M6SVEmqd3.js\";import DownloadAppleLight from\"#framer/local/canvasComponent/PjXwwD0OO/PjXwwD0OO.js\";import Footer from\"#framer/local/canvasComponent/tKxriScUn/tKxriScUn.js\";import*as sharedStyle5 from\"#framer/local/css/CoOE9ASNl/CoOE9ASNl.js\";import*as sharedStyle2 from\"#framer/local/css/Gp2pnOk8s/Gp2pnOk8s.js\";import*as sharedStyle from\"#framer/local/css/sYX1jv2VM/sYX1jv2VM.js\";import*as sharedStyle1 from\"#framer/local/css/TZmAdd4ok/TZmAdd4ok.js\";import*as sharedStyle4 from\"#framer/local/css/xKX2cGWoB/xKX2cGWoB.js\";import*as sharedStyle3 from\"#framer/local/css/XtcY3jQZ1/XtcY3jQZ1.js\";import metadataProvider from\"#framer/local/webPageMetadata/yfTeUeWP4/yfTeUeWP4.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const SlideshowFonts=getFonts(Slideshow);const MotionSectionWithFX=withFX(motion.section);const DownloadAppleLightFonts=getFonts(DownloadAppleLight);const ContainerWithFX=withFX(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const breakpoints={c34ObaUf7:\"(min-width: 1280px)\",IPNK3eq86:\"(max-width: 719px)\",MwVsOVOks:\"(min-width: 720px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-wZLSF\";const variantClassNames={c34ObaUf7:\"framer-v-114m81w\",IPNK3eq86:\"framer-v-1lqaui7\",MwVsOVOks:\"framer-v-1ep4vfa\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={delay:0,duration:1.85,ease:[.5,0,.88,.77],type:\"tween\"};const transition2={delay:0,duration:1.6,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:0,duration:1.1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:.5,duration:1.8,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"c34ObaUf7\",Phone:\"IPNK3eq86\",Tablet:\"MwVsOVOks\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"c34ObaUf7\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-wZLSF`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-wZLSF`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"MwVsOVOks\")return false;return true;};const elementId=useRouteElementId(\"mDxTUCGGk\");const ref5=React.useRef(null);const elementId1=useRouteElementId(\"m1RySupAS\");const ref6=React.useRef(null);const elementId2=useRouteElementId(\"uQmqFBndt\");const ref7=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"IPNK3eq86\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"IPNK3eq86\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"MwVsOVOks\")return true;return false;};const elementId3=useRouteElementId(\"lnCF85clY\");const elementId4=useRouteElementId(\"RElbe6gSz\");const elementId5=useRouteElementId(\"KVnt1HUdU\");const isDisplayed4=()=>{if(!isBrowser())return true;if([\"MwVsOVOks\",\"IPNK3eq86\"].includes(baseVariant))return false;return true;};const elementId6=useRouteElementId(\"yWYvddA77\");const ref8=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"c34ObaUf7\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-114m81w\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g85e46-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"GMgN1y_c4\",intensity:10,layoutId:\"GMgN1y_c4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14445t4-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{__framer__targets:[{ref:ref2,target:\"NGV4R2w87\"},{offset:0,ref:ref3,target:\"Ka5Z6PZCi\"},{ref:ref4,target:\"Ka5Z6PZCi\"}],variant:\"Ka5Z6PZCi\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"iCcpFeo7Y\"},{offset:0,ref:ref3,target:\"bzllSSqJq\"},{ref:ref4,target:\"bzllSSqJq\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"K71rQs7rO\",layoutId:\"K71rQs7rO\",style:{width:\"100%\"},variant:\"bzllSSqJq\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cikijk hidden-1ep4vfa\",\"data-framer-name\":\"Hero Scroll Section\",id:elementId,name:\"Hero Scroll Section\",ref:ref5}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13q5s44\",\"data-framer-name\":\"Sections Wrapper\",id:elementId1,name:\"Sections Wrapper\",ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d7rpnc\",\"data-framer-name\":\"Features Large\",id:elementId2,name:\"Features Large\",ref:ref7,children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-71fv2w-container hidden-1lqaui7\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tS8QCRgbT\",isMixedBorderRadius:false,layoutId:\"tS8QCRgbT\",loop:true,muted:true,objectFit:\"scale-down\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/1MMOiGL2MhYhsXbfRDUIKsVpTM.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19repbn\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7h8nx5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-458zbq\",\"data-framer-name\":\"Content\",name:\"Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:120,pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/9UWPUinyuDp7M2nGGA0TvLELM98.png\"},className:\"framer-1lm5u6d hidden-1lqaui7\",\"data-framer-name\":\"icon\",name:\"icon\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dd8zb\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ttzorn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSA2NTA=\",\"--framer-font-family\":'\"TWK Lausanne 650\", \"TWK Lausanne 650 Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"FASHION ON ROTATION\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSA2NTA=\",\"--framer-font-family\":'\"TWK Lausanne 650\", \"TWK Lausanne 650 Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"FASHION ON ROTATION\"})}),className:\"framer-1cbnu0z\",fonts:[\"CUSTOM;TWK Lausanne 650\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FsdGVybmF0ZSBHb3RoaWMgTm8zIEQgUmVndWxhcg==\",\"--framer-font-family\":'\"Alternate Gothic No3 D Regular\", \"Alternate Gothic No3 D Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"HOW BNTO WORKS\"})})},MwVsOVOks:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FsdGVybmF0ZSBHb3RoaWMgTm8zIEQgUmVndWxhcg==\",\"--framer-font-family\":'\"Alternate Gothic No3 D Regular\", \"Alternate Gothic No3 D Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"HOW BNTO WORKS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FsdGVybmF0ZSBHb3RoaWMgTm8zIEQgUmVndWxhcg==\",\"--framer-font-family\":'\"Alternate Gothic No3 D Regular\", \"Alternate Gothic No3 D Regular Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"HOW BNTO WORKS\"})}),className:\"framer-wrmwus\",fonts:[\"CUSTOM;Alternate Gothic No3 D Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:120,pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/9UWPUinyuDp7M2nGGA0TvLELM98.png\"},className:\"framer-hp9wav\",\"data-framer-name\":\"icon\",name:\"icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1odupa4\",\"data-styles-preset\":\"sYX1jv2VM\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"More style. Less money. Infinite inspiration.\\u2028\\u2028\\u2028\\u2028\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1odupa4\",\"data-styles-preset\":\"sYX1jv2VM\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"Each month, choose your favorite six styles and curate your own BNTO box without worrying about fast fashion waste, closet space, or laundry. One monthly subscription, limitless outfit possibilities. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1odupa4\",\"data-styles-preset\":\"sYX1jv2VM\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"And the best part? You can purchase your favorite pieces at up to 75% off and keep them forever.\"})]}),className:\"framer-l4xb34\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iik221-container hidden-114m81w hidden-1ep4vfa\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"pD89LXvM3\",isMixedBorderRadius:false,layoutId:\"pD89LXvM3\",loop:true,muted:true,objectFit:\"scale-down\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/1MMOiGL2MhYhsXbfRDUIKsVpTM.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MwVsOVOks:{height:44,y:242.08206176757813}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xow1fi-container hidden-114m81w hidden-1lqaui7\",children:/*#__PURE__*/_jsx(Button,{c5cEizVbM:\"www.bnto.rent\",height:\"100%\",id:\"A9hEiquEi\",jfOx0HMoQ:true,layoutId:\"A9hEiquEi\",rtZgtu6R5:false,variant:\"KwXDbOaec\",width:\"100%\",wMjg2hCEf:\"GO TO HOME\"})})})})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gfjfqe\",\"data-framer-name\":\"How it works\",id:elementId3,name:\"How it works\",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dzdl68\",\"data-framer-name\":\"H2 & Text\",name:\"H2 & Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1x3p5fc\",\"data-styles-preset\":\"Gp2pnOk8s\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\"},children:\" \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\"},children:\"Our PRICING\"})]})})},MwVsOVOks:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1x3p5fc\",\"data-styles-preset\":\"Gp2pnOk8s\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\"},children:\" \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\"},children:\"Our PRICING\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1vgwoly\",\"data-styles-preset\":\"TZmAdd4ok\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\"},children:[\" \",/*#__PURE__*/_jsx(\"br\",{}),\"Our PRICING\"]})}),className:\"framer-1haveq\",\"data-framer-name\":\"How it Works\",fonts:[\"Inter\"],name:\"How it Works\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y4gt69\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h1yztm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ae63mf\",\"data-styles-preset\":\"XtcY3jQZ1\",style:{\"--framer-text-color\":\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\"},children:\"(U.S. Customers OnlY)\"})}),className:\"framer-s9a6fx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13jyr4f hidden-1lqaui7\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MwVsOVOks:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:517.5,loading:getLoadingLazyAtYPosition(1128.4622222222222),pixelHeight:1248,pixelWidth:1035,sizes:\"329px\",src:\"https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png?scale-down-to=1024 849w,https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png 1035w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:517.5,loading:getLoadingLazyAtYPosition(1453.1),pixelHeight:1248,pixelWidth:1035,sizes:\"503px\",src:\"https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png?scale-down-to=1024 849w,https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png 1035w\"},className:\"framer-jai26v\",\"data-framer-name\":\"Pricing\",name:\"Pricing\"})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zcxulf-container hidden-114m81w\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:5,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"right\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:.5,effectsPerspective:2e3,effectsRotate:15,effectsScale:.5},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:15,height:\"100%\",id:\"Nqllr4mtR\",intervalControl:3,itemAmount:1,layoutId:\"Nqllr4mtR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\",dotsBlur:0,dotsFill:\"var(--token-245e0901-45ed-4c49-a74c-d07a970e9b44, rgb(184, 175, 171))\",dotsGap:10,dotsInset:-50,dotSize:10,dotsOpacity:.3,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:468,intrinsicWidth:300,pixelHeight:936,pixelWidth:600,sizes:\"300px\",src:\"https://framerusercontent.com/images/cD7qmQSvxBE5lcMPW1LtoaX58yI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cD7qmQSvxBE5lcMPW1LtoaX58yI.png 600w\"},className:\"framer-1yomk5p\",\"data-framer-name\":\"step_1\",name:\"step_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:468,intrinsicWidth:300,pixelHeight:936,pixelWidth:600,sizes:\"300px\",src:\"https://framerusercontent.com/images/OfXuxDKYQOJfApJEil5koLxFQA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OfXuxDKYQOJfApJEil5koLxFQA.png 600w\"},className:\"framer-a540i7\",\"data-framer-name\":\"Pricing small\",name:\"Pricing small\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:468,intrinsicWidth:300,pixelHeight:936,pixelWidth:600,sizes:\"300px\",src:\"https://framerusercontent.com/images/k6CZiTfq10nL1jxlU3u2J62P8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/k6CZiTfq10nL1jxlU3u2J62P8.png 600w\"},className:\"framer-1d3ebn4\",\"data-framer-name\":\"step_3\",name:\"step_3\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:100,delay:0,mass:5.7,stiffness:161,type:\"spring\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-rw34rv hidden-1ep4vfa\",\"data-framer-name\":\"About Events Content\",name:\"About Events Content\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v341d-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:.5,effectsPerspective:2e3,effectsRotate:15,effectsScale:.5},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:15,height:\"100%\",id:\"e3XOuIhGu\",intervalControl:3,itemAmount:1,layoutId:\"e3XOuIhGu\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\",dotsBlur:0,dotsFill:\"var(--token-245e0901-45ed-4c49-a74c-d07a970e9b44, rgb(184, 175, 171))\",dotsGap:10,dotsInset:-50,dotSize:10,dotsOpacity:.3,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:736,intrinsicWidth:1206,pixelHeight:1472,pixelWidth:2412,sizes:\"1206px\",src:\"https://framerusercontent.com/images/P1kI0DQUceNEfQ9mQbnUuidAuE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/P1kI0DQUceNEfQ9mQbnUuidAuE.png?scale-down-to=512 512w,https://framerusercontent.com/images/P1kI0DQUceNEfQ9mQbnUuidAuE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P1kI0DQUceNEfQ9mQbnUuidAuE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P1kI0DQUceNEfQ9mQbnUuidAuE.png 2412w\"},className:\"framer-dun904\",\"data-framer-name\":\"Frame_814622\",name:\"Frame_814622\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:736,intrinsicWidth:1206,pixelHeight:1472,pixelWidth:2412,sizes:\"1206px\",src:\"https://framerusercontent.com/images/qp9L6T6hmDue7zfPapYKDDwk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/qp9L6T6hmDue7zfPapYKDDwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/qp9L6T6hmDue7zfPapYKDDwk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qp9L6T6hmDue7zfPapYKDDwk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qp9L6T6hmDue7zfPapYKDDwk.png 2412w\"},className:\"framer-18atun6\",\"data-framer-name\":\"Pricing wide\",name:\"Pricing wide\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:736,intrinsicWidth:1206,pixelHeight:1472,pixelWidth:2412,sizes:\"1206px\",src:\"https://framerusercontent.com/images/kr1WmVsMSpXcfLYjToacTALWOOU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kr1WmVsMSpXcfLYjToacTALWOOU.png?scale-down-to=512 512w,https://framerusercontent.com/images/kr1WmVsMSpXcfLYjToacTALWOOU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kr1WmVsMSpXcfLYjToacTALWOOU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kr1WmVsMSpXcfLYjToacTALWOOU.png 2412w\"},className:\"framer-17l1uzk\",\"data-framer-name\":\"Frame_814626\",name:\"Frame_814626\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:100,delay:0,mass:5.7,stiffness:161,type:\"spring\"},width:\"100%\"})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:517.5,pixelHeight:1248,pixelWidth:1035,sizes:\"334px\",src:\"https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png?scale-down-to=1024 849w,https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png 1035w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:517.5,pixelHeight:1248,pixelWidth:1035,src:\"https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png?scale-down-to=1024 849w,https://framerusercontent.com/images/dtoVFUOCcldMxtktCMzfm5llJvI.png 1035w\"},className:\"framer-1gbzgva hidden-114m81w hidden-1ep4vfa\",\"data-framer-name\":\"Pricing\",name:\"Pricing\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w9a7u4-container hidden-114m81w hidden-1ep4vfa\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:5,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"right\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:.5,effectsPerspective:2e3,effectsRotate:15,effectsScale:.5},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:15,height:\"100%\",id:\"nj2a8Hiul\",intervalControl:3,itemAmount:1,layoutId:\"nj2a8Hiul\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255))\",dotsBlur:0,dotsFill:\"var(--token-245e0901-45ed-4c49-a74c-d07a970e9b44, rgb(184, 175, 171))\",dotsGap:10,dotsInset:-50,dotSize:10,dotsOpacity:.3,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:468,intrinsicWidth:300,pixelHeight:936,pixelWidth:600,sizes:\"300px\",src:\"https://framerusercontent.com/images/cD7qmQSvxBE5lcMPW1LtoaX58yI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cD7qmQSvxBE5lcMPW1LtoaX58yI.png 600w\"},className:\"framer-1yomk5p\",\"data-framer-name\":\"step_1\",name:\"step_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:468,intrinsicWidth:300,pixelHeight:936,pixelWidth:600,sizes:\"300px\",src:\"https://framerusercontent.com/images/OfXuxDKYQOJfApJEil5koLxFQA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OfXuxDKYQOJfApJEil5koLxFQA.png 600w\"},className:\"framer-a540i7\",\"data-framer-name\":\"Pricing small\",name:\"Pricing small\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:468,intrinsicWidth:300,pixelHeight:936,pixelWidth:600,sizes:\"300px\",src:\"https://framerusercontent.com/images/k6CZiTfq10nL1jxlU3u2J62P8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/k6CZiTfq10nL1jxlU3u2J62P8.png 600w\"},className:\"framer-1d3ebn4\",\"data-framer-name\":\"step_3\",name:\"step_3\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:100,delay:0,mass:5.7,stiffness:161,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-zq7qnp\",\"data-framer-name\":\"Who We Are\",id:elementId4,name:\"Who We Are\",ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{background:{alt:\"\",fit:\"fit\",pixelHeight:2642,pixelWidth:1300,positionX:\"center\",positionY:\"top\",sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/nnJs44Y8t1HDfL4AhVM5bemOo.gif\",srcSet:\"https://framerusercontent.com/images/nnJs44Y8t1HDfL4AhVM5bemOo.gif?scale-down-to=2048 1007w,https://framerusercontent.com/images/nnJs44Y8t1HDfL4AhVM5bemOo.gif 1300w\"}},MwVsOVOks:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1716.4622222222222),pixelHeight:2642,pixelWidth:1300,positionX:\"center\",positionY:\"center\",sizes:\"min(max((100vw - 48px) / 2, 1px), 100vw - 48px)\",src:\"https://framerusercontent.com/images/nnJs44Y8t1HDfL4AhVM5bemOo.gif\",srcSet:\"https://framerusercontent.com/images/nnJs44Y8t1HDfL4AhVM5bemOo.gif?scale-down-to=2048 1007w,https://framerusercontent.com/images/nnJs44Y8t1HDfL4AhVM5bemOo.gif 1300w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2330),pixelHeight:2642,pixelWidth:1300,positionX:\"center\",positionY:\"center\",sizes:\"max((100vw - 240px) / 2, 50px)\",src:\"https://framerusercontent.com/images/nnJs44Y8t1HDfL4AhVM5bemOo.gif\",srcSet:\"https://framerusercontent.com/images/nnJs44Y8t1HDfL4AhVM5bemOo.gif?scale-down-to=2048 1007w,https://framerusercontent.com/images/nnJs44Y8t1HDfL4AhVM5bemOo.gif 1300w\"},className:\"framer-n37zwa\",\"data-framer-name\":\"Container\",name:\"Container\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"top\"}}},children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-ypsopy\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vsocbt\",\"data-framer-name\":\"Who We Are Content\",name:\"Who We Are Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m6pjau\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-136epa9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:120,pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/9UWPUinyuDp7M2nGGA0TvLELM98.png\"}},MwVsOVOks:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:120,loading:getLoadingLazyAtYPosition(1810.5822222222223),pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/9UWPUinyuDp7M2nGGA0TvLELM98.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:120,loading:getLoadingLazyAtYPosition(2554.64),pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/9UWPUinyuDp7M2nGGA0TvLELM98.png\"},className:\"framer-94b4qj\",\"data-framer-name\":\"icon\",name:\"icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ae63mf\",\"data-styles-preset\":\"XtcY3jQZ1\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"FASHION ON ROTATION\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nm1c3f\",\"data-styles-preset\":\"xKX2cGWoB\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"FASHION ON ROTATION\"})}),className:\"framer-1km8vhm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1x3p5fc\",\"data-styles-preset\":\"Gp2pnOk8s\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"DOWNLOAD THE BNTO APP\"})})},MwVsOVOks:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1x3p5fc\",\"data-styles-preset\":\"Gp2pnOk8s\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"DOWNLOAD THE BNTO APP\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vgwoly\",\"data-styles-preset\":\"TZmAdd4ok\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"DOWNLOAD THE BNTO APP\"})}),className:\"framer-l9xak6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13mq3cr\",\"data-styles-preset\":\"CoOE9ASNl\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"More style. Less money. Infinite inspiration. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13mq3cr\",\"data-styles-preset\":\"CoOE9ASNl\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"Meet BNTO. Choose your favorite six styles and curate your own BNTO box each month \u2014 without worrying about fast fashion waste, closet space, or laundry. One monthly subscription, limitless outfit possibilities. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13mq3cr\",\"data-styles-preset\":\"CoOE9ASNl\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"And the best part? You can purchase your favorite pieces at up to 75% off to keep them forever.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1odupa4\",\"data-styles-preset\":\"sYX1jv2VM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"Enjoy a better rental experience and effortlessly manage your bonus credits. Download our iOS app today!\"})}),className:\"framer-tm3q07\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{y:undefined},MwVsOVOks:{y:2022.3422222222223}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"202px\",y:2775.3599999999997,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2z82tk-container\",children:/*#__PURE__*/_jsx(DownloadAppleLight,{height:\"100%\",id:\"FVg0gHRQe\",layoutId:\"FVg0gHRQe\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-o02nhy hidden-114m81w hidden-1lqaui7\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8kplaz\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-wyrwe\",\"data-framer-appear-id\":\"wyrwe\",initial:animation4,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2y12l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1x3p5fc\",\"data-styles-preset\":\"Gp2pnOk8s\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"Finely Curated Global Brands\"})}),className:\"framer-1ivijqq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1odupa4\",\"data-styles-preset\":\"sYX1jv2VM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:[\"BNTO IS MANY THINGS, BUT ABOVE ALL, IT\u2019S A CELEBRATION: \",/*#__PURE__*/_jsx(\"br\",{}),\"OF INDIVIDUALITY, OF DISCOVERY, OF COMMUNITY.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-brxm0t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MwVsOVOks:{y:2711.1022222222223}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ugiu9g-container\",children:/*#__PURE__*/_jsx(Button,{c5cEizVbM:\"https://www.bnto.rent/brands\",height:\"100%\",id:\"xJnmTyehv\",jfOx0HMoQ:true,layoutId:\"xJnmTyehv\",rtZgtu6R5:false,variant:\"KwXDbOaec\",width:\"100%\",wMjg2hCEf:\"EXPLORE OUR BRANDS\"})})})})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-s0efeo\",\"data-framer-name\":\"Our Brands\",id:elementId5,name:\"Our Brands\",ref:ref4,children:[isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mxwifu hidden-1ep4vfa hidden-1lqaui7\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10hv7h0\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-152m012\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1u1ock9\",\"data-framer-appear-id\":\"1u1ock9\",initial:animation4,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kh8sxu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vgwoly\",\"data-styles-preset\":\"TZmAdd4ok\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"Finely Curated Global Brands\"})}),className:\"framer-1tfs06g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1odupa4\",\"data-styles-preset\":\"sYX1jv2VM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:[\"BNTO IS MANY THINGS, BUT ABOVE ALL, IT\u2019S A CELEBRATION: \",/*#__PURE__*/_jsx(\"br\",{}),\"OF INDIVIDUALITY, OF DISCOVERY, OF COMMUNITY.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-w5lvrn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:3555,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i97i85-container\",children:/*#__PURE__*/_jsx(Button,{c5cEizVbM:\"https://www.bnto.rent/brands\",height:\"100%\",id:\"UX4NXDIgU\",jfOx0HMoQ:true,layoutId:\"UX4NXDIgU\",rtZgtu6R5:false,variant:\"KwXDbOaec\",width:\"100%\",wMjg2hCEf:\"EXPLORE OUR BRANDS\"})})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15eejcc\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18wf8kb hidden-114m81w hidden-1ep4vfa\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-j8zj2e\",\"data-framer-appear-id\":\"j8zj2e\",initial:animation4,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1peevyk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13mq3cr\",\"data-styles-preset\":\"CoOE9ASNl\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"BNTO IS MANY THINGS, BUT ABOVE ALL, IT\u2019S A CELEBRATION: OF INDIVIDUALITY, OF DISCOVERY, OF COMMUNITY.\"})}),className:\"framer-bxrnu4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1x3p5fc\",\"data-styles-preset\":\"Gp2pnOk8s\",style:{\"--framer-text-color\":\"var(--token-beafb5d5-7be6-4d23-8711-f78775447718, rgb(21, 19, 4))\"},children:\"Finely Curated Global Brands\"})}),className:\"framer-119to85\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gxmh0d-container\",children:/*#__PURE__*/_jsx(Button,{c5cEizVbM:\"https://www.bnto.rent/brands\",height:\"100%\",id:\"GkBfDTaBo\",jfOx0HMoQ:true,layoutId:\"GkBfDTaBo\",rtZgtu6R5:false,variant:\"KwXDbOaec\",width:\"100%\",wMjg2hCEf:\"EXPLORE OUR BRANDS\"})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kgjdfr-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.4,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"rY2OOd0T3\",layoutId:\"rY2OOd0T3\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.allinaliu.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/Xk42uMHBxbiYDTfWgw1muGXXwOQ.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Xk42uMHBxbiYDTfWgw1muGXXwOQ.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/Xk42uMHBxbiYDTfWgw1muGXXwOQ.jpg 1080w\"},className:\"framer-1v6n5fv framer-1q6541t\",\"data-framer-name\":\"ALLINA_LIU\",name:\"ALLINA_LIU\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/bellethelabel/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/tT1Ol3MCCV5Mj4nY5SFIKIQ5tKQ.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tT1Ol3MCCV5Mj4nY5SFIKIQ5tKQ.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/tT1Ol3MCCV5Mj4nY5SFIKIQ5tKQ.jpg 1080w\"},className:\"framer-1t8mye5 framer-1q6541t\",\"data-framer-name\":\"BELLE\",name:\"BELLE\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1200,pixelHeight:3e3,pixelWidth:2400,sizes:\"540px\",src:\"https://framerusercontent.com/images/UgqMiKCujlUH1lOBbKHrnkCFRQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UgqMiKCujlUH1lOBbKHrnkCFRQ.png?scale-down-to=1024 819w,https://framerusercontent.com/images/UgqMiKCujlUH1lOBbKHrnkCFRQ.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/UgqMiKCujlUH1lOBbKHrnkCFRQ.png 2400w\"},className:\"framer-gj8vjh\",\"data-framer-name\":\"eenk\",name:\"eenk\"}),/*#__PURE__*/_jsx(Link,{href:\"https://charlesjeffreyloverboy.com/en-us\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/96pqtGYM3fLAbsY9dOgXkl8g.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/96pqtGYM3fLAbsY9dOgXkl8g.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/96pqtGYM3fLAbsY9dOgXkl8g.jpg 1080w\"},className:\"framer-dv756e framer-1q6541t\",\"data-framer-name\":\"CHARLES_JEFFREY_LOVERBOY\",name:\"CHARLES_JEFFREY_LOVERBOY\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/dunst_official/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:800,pixelHeight:2e3,pixelWidth:1600,sizes:\"540px\",src:\"https://framerusercontent.com/images/BAfVnyh8bMaXgtvzZWZqHMtcz0.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BAfVnyh8bMaXgtvzZWZqHMtcz0.jpeg?scale-down-to=1024 819w,https://framerusercontent.com/images/BAfVnyh8bMaXgtvzZWZqHMtcz0.jpeg 1600w\"},className:\"framer-19l9dpr framer-1q6541t\",\"data-framer-name\":\"Dunst\",name:\"Dunst\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/astrthelabel/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/7ve3PwEXf0fMYnQSeWi51JMv5no.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7ve3PwEXf0fMYnQSeWi51JMv5no.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/7ve3PwEXf0fMYnQSeWi51JMv5no.jpg 1080w\"},className:\"framer-go8eaf framer-1q6541t\",\"data-framer-name\":\"ASTR\",name:\"ASTR\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://elisajohnson.co/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/u0sJ6yuzhlvvtQyRBwcx6GAjZCA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/u0sJ6yuzhlvvtQyRBwcx6GAjZCA.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/u0sJ6yuzhlvvtQyRBwcx6GAjZCA.jpg 1080w\"},className:\"framer-1gg8gxc framer-1q6541t\",\"data-framer-name\":\"ELISA_JOHNSON\",name:\"ELISA_JOHNSON\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://epingler.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/4tbMrnQtkMaenHQDq6FIgEPe5z8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4tbMrnQtkMaenHQDq6FIgEPe5z8.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/4tbMrnQtkMaenHQDq6FIgEPe5z8.jpg 1080w\"},className:\"framer-2yk8l3 framer-1q6541t\",\"data-framer-name\":\"EPINGLER\",name:\"EPINGLER\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/sromucVdj4LzA2EHdZyJZUnyIk.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sromucVdj4LzA2EHdZyJZUnyIk.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/sromucVdj4LzA2EHdZyJZUnyIk.jpg 1080w\"},className:\"framer-18vf5mw\",\"data-framer-name\":\"ESTHE\",name:\"ESTHE\"}),/*#__PURE__*/_jsx(Link,{href:\"https://www.findmenowthelabel.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/IftDBT9Q42pbi3xXdI0OcXT2Zc.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IftDBT9Q42pbi3xXdI0OcXT2Zc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/IftDBT9Q42pbi3xXdI0OcXT2Zc.jpg 1080w\"},className:\"framer-1t5qlkt framer-1q6541t\",\"data-framer-name\":\"FIND_ME_NOW\",name:\"FIND_ME_NOW\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://geel.us/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/U9evlOwushWpaNrjgIOXpyUhas.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/U9evlOwushWpaNrjgIOXpyUhas.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/U9evlOwushWpaNrjgIOXpyUhas.jpg 1080w\"},className:\"framer-5zdmr3 framer-1q6541t\",\"data-framer-name\":\"GEEL\",name:\"GEEL\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://gramicci.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/z9EjstpocSZVASoJBJkdYsm6Yw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/z9EjstpocSZVASoJBJkdYsm6Yw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/z9EjstpocSZVASoJBJkdYsm6Yw.jpg 1080w\"},className:\"framer-1t1m4sa framer-1q6541t\",\"data-framer-name\":\"GRAMICCI\",name:\"GRAMICCI\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://holzweileroslo.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/s0xsg5yialY0EtnPchVryfbQCY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/s0xsg5yialY0EtnPchVryfbQCY.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/s0xsg5yialY0EtnPchVryfbQCY.jpg 1080w\"},className:\"framer-18u7k4j framer-1q6541t\",\"data-framer-name\":\"HOLZWEILER\",name:\"HOLZWEILER\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://hopemacaulay.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/Az4TKmdz3MpfdLpOVfKMq9gg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Az4TKmdz3MpfdLpOVfKMq9gg.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/Az4TKmdz3MpfdLpOVfKMq9gg.jpg 1080w\"},className:\"framer-oi3xgk framer-1q6541t\",\"data-framer-name\":\"HOPE_MACAULAY\",name:\"HOPE_MACAULAY\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.hosbjerg.com/\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/8oIcHpigPUOmobxSQxayw43paLw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8oIcHpigPUOmobxSQxayw43paLw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/8oIcHpigPUOmobxSQxayw43paLw.jpg 1080w\"},className:\"framer-c274dx framer-1q6541t\",\"data-framer-name\":\"HOSBJERG\",name:\"HOSBJERG\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://houseofsunny.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/uaTLXg4D6bh8S6FRUkKn4zUreE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uaTLXg4D6bh8S6FRUkKn4zUreE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/uaTLXg4D6bh8S6FRUkKn4zUreE.jpg 1080w\"},className:\"framer-1qxy5pr framer-1q6541t\",\"data-framer-name\":\"HOUSE_OF_SUNNY\",name:\"HOUSE_OF_SUNNY\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://hvisk.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/yhhdeOS4VzfyVasIWE6kwxcM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yhhdeOS4VzfyVasIWE6kwxcM.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/yhhdeOS4VzfyVasIWE6kwxcM.jpg 1080w\"},className:\"framer-19eur1r framer-1q6541t\",\"data-framer-name\":\"HVISK\",name:\"HVISK\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.us.rains.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/YmZMFEVZbBRiFSrZhuKqdtVScvM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YmZMFEVZbBRiFSrZhuKqdtVScvM.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/YmZMFEVZbBRiFSrZhuKqdtVScvM.jpg 1080w\"},className:\"framer-1l4xfdp framer-1q6541t\",\"data-framer-name\":\"RAINS\",name:\"RAINS\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://ritarow.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/w8xV1xU6Yg0UhWFsmQUw3PnWI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/w8xV1xU6Yg0UhWFsmQUw3PnWI.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/w8xV1xU6Yg0UhWFsmQUw3PnWI.jpg 1080w\"},className:\"framer-1epzp1v framer-1q6541t\",\"data-framer-name\":\"RITA_ROW\",name:\"RITA_ROW\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://roomshop.us/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/SdpMzTwjaw7ITddeE1L7U7671xI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SdpMzTwjaw7ITddeE1L7U7671xI.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/SdpMzTwjaw7ITddeE1L7U7671xI.jpg 1080w\"},className:\"framer-1kv9jvz framer-1q6541t\",\"data-framer-name\":\"ROOM_SHOP\",name:\"ROOM_SHOP\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://tonywack.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/dQbcm2yRu4SPT72Mak9mX64ck7I.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dQbcm2yRu4SPT72Mak9mX64ck7I.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/dQbcm2yRu4SPT72Mak9mX64ck7I.jpg 1080w\"},className:\"framer-1iyftkd framer-1q6541t\",\"data-framer-name\":\"TONYWACK\",name:\"TONYWACK\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/kkco/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/82MyUmZjvUAXPVRm4SgkWuRqcWY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/82MyUmZjvUAXPVRm4SgkWuRqcWY.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/82MyUmZjvUAXPVRm4SgkWuRqcWY.jpg 1080w\"},className:\"framer-161oio4 framer-1q6541t\",\"data-framer-name\":\"KKCO\",name:\"KKCO\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1350,intrinsicWidth:1080,pixelHeight:2700,pixelWidth:2160,sizes:\"540px\",src:\"https://framerusercontent.com/images/RWecx89EgsCTvmdXrTnBD8riHZk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/RWecx89EgsCTvmdXrTnBD8riHZk.png?scale-down-to=1024 819w,https://framerusercontent.com/images/RWecx89EgsCTvmdXrTnBD8riHZk.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/RWecx89EgsCTvmdXrTnBD8riHZk.png 2160w\"},className:\"framer-1t54pjy\",\"data-framer-name\":\"Group_42\",name:\"Group_42\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:675.5,intrinsicWidth:540,pixelHeight:1351,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/zEsGYG8jpKxqYbUoQFHO7f3vrU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zEsGYG8jpKxqYbUoQFHO7f3vrU.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/zEsGYG8jpKxqYbUoQFHO7f3vrU.jpg 1080w\"},className:\"framer-gf5hf6\",\"data-framer-name\":\"Snapinsta_app_431480828_279953315135107_5138664187141288252_n_1080\",name:\"Snapinsta_app_431480828_279953315135107_5138664187141288252_n_1080\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1350,intrinsicWidth:1080,pixelHeight:2700,pixelWidth:2160,sizes:\"540px\",src:\"https://framerusercontent.com/images/3VaEbgLaOxDap8XxIzRZAzyRdk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3VaEbgLaOxDap8XxIzRZAzyRdk.png?scale-down-to=1024 819w,https://framerusercontent.com/images/3VaEbgLaOxDap8XxIzRZAzyRdk.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/3VaEbgLaOxDap8XxIzRZAzyRdk.png 2160w\"},className:\"framer-kt9ud7\",\"data-framer-name\":\"bayse\",name:\"bayse\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1350,intrinsicWidth:1080,pixelHeight:2700,pixelWidth:2160,sizes:\"540px\",src:\"https://framerusercontent.com/images/LMNs0rEEJ7yPC0MQdbPCDjrxXo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/LMNs0rEEJ7yPC0MQdbPCDjrxXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/LMNs0rEEJ7yPC0MQdbPCDjrxXo.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/LMNs0rEEJ7yPC0MQdbPCDjrxXo.png 2160w\"},className:\"framer-1y91e7z\",\"data-framer-name\":\"yuse\",name:\"yuse\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,pixelHeight:4050,pixelWidth:3240,sizes:\"540px\",src:\"https://framerusercontent.com/images/Lz1Xs8WJ4MMUFbDEGiyCNx9xVI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Lz1Xs8WJ4MMUFbDEGiyCNx9xVI.png?scale-down-to=1024 819w,https://framerusercontent.com/images/Lz1Xs8WJ4MMUFbDEGiyCNx9xVI.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/Lz1Xs8WJ4MMUFbDEGiyCNx9xVI.png 3240w\"},className:\"framer-179uykj\",\"data-framer-name\":\"haikure\",name:\"haikure\"})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-24glfa-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:.4,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"qZN0L6PZz\",layoutId:\"qZN0L6PZz\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.zemeta.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/bVio8ImNiy3P45QRSQ0Q1O7MO8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bVio8ImNiy3P45QRSQ0Q1O7MO8.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/bVio8ImNiy3P45QRSQ0Q1O7MO8.jpg 1080w\"},className:\"framer-rsvhz0 framer-1q6541t\",\"data-framer-name\":\"ZEMETA\",name:\"ZEMETA\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.washingtondeecee.com/it/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/5FnJVfhctUUgIpmJnuViYlJYVNM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5FnJVfhctUUgIpmJnuViYlJYVNM.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/5FnJVfhctUUgIpmJnuViYlJYVNM.jpg 1080w\"},className:\"framer-1h0ug3o framer-1q6541t\",\"data-framer-name\":\"WASHINGTON_DEE_CEE\",name:\"WASHINGTON_DEE_CEE\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.published-by.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/G3BegT4bXAF8DVEOopa07vGDN1E.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/G3BegT4bXAF8DVEOopa07vGDN1E.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/G3BegT4bXAF8DVEOopa07vGDN1E.jpg 1080w\"},className:\"framer-b95eys framer-1q6541t\",\"data-framer-name\":\"PUBLISHED_BY\",name:\"PUBLISHED_BY\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://resumecph.com/en-us\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/DdL23KiOIL091zZkWqHgRYBg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DdL23KiOIL091zZkWqHgRYBg.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/DdL23KiOIL091zZkWqHgRYBg.jpg 1080w\"},className:\"framer-13lb1oy framer-1q6541t\",\"data-framer-name\":\"RESUME\",name:\"RESUME\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.findmenowthelabel.com/collections/second-skin\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/nwaHhD1tawwddwRzaiBiljBk.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/nwaHhD1tawwddwRzaiBiljBk.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/nwaHhD1tawwddwRzaiBiljBk.jpg 1080w\"},className:\"framer-1bsr9ac framer-1q6541t\",\"data-framer-name\":\"SECOND_SKIN\",name:\"SECOND_SKIN\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.saemdi.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/eGj7jtpGIDCaF1yHb6Fxn4Oq7zs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eGj7jtpGIDCaF1yHb6Fxn4Oq7zs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/eGj7jtpGIDCaF1yHb6Fxn4Oq7zs.jpg 1080w\"},className:\"framer-fcwszr framer-1q6541t\",\"data-framer-name\":\"SAEMDI\",name:\"SAEMDI\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://intl.numberingwebsite.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/hSt7WaWHsSn49dgH5SA8v8Ks24.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hSt7WaWHsSn49dgH5SA8v8Ks24.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/hSt7WaWHsSn49dgH5SA8v8Ks24.jpg 1080w\"},className:\"framer-1a2x1hl framer-1q6541t\",\"data-framer-name\":\"NUMBERING\",name:\"NUMBERING\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/tysgrocery/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/B12U7UZ7lNMl99svrWxf6jJTFg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/B12U7UZ7lNMl99svrWxf6jJTFg.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/B12U7UZ7lNMl99svrWxf6jJTFg.jpg 1080w\"},className:\"framer-1khu5ul framer-1q6541t\",\"data-framer-name\":\"TYS_GROCERY\",name:\"TYS_GROCERY\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/leewei_official/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/TVHGOQlAXV3HSAapuE68WGjWPY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/TVHGOQlAXV3HSAapuE68WGjWPY.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/TVHGOQlAXV3HSAapuE68WGjWPY.jpg 1080w\"},className:\"framer-1m4skbz framer-1q6541t\",\"data-framer-name\":\"LEEWEI\",name:\"LEEWEI\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/margesherwood_official/?hl=en\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/Bz7jWX0CFOD8IA5BnNqIvKY1g.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Bz7jWX0CFOD8IA5BnNqIvKY1g.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/Bz7jWX0CFOD8IA5BnNqIvKY1g.jpg 1080w\"},className:\"framer-dlslmr framer-1q6541t\",\"data-framer-name\":\"MARGE_SHERWOOD\",name:\"MARGE_SHERWOOD\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/martin_across/?hl=en\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/p5PfNnhcidi1tHJqHKcDq2ayz8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/p5PfNnhcidi1tHJqHKcDq2ayz8.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/p5PfNnhcidi1tHJqHKcDq2ayz8.jpg 1080w\"},className:\"framer-1imcqno framer-1q6541t\",\"data-framer-name\":\"MARTIN_ACROSS\",name:\"MARTIN_ACROSS\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/shopmoonriver/?hl=en\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/kaoUE3iAts9s6sfJXP2g1lSKhE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kaoUE3iAts9s6sfJXP2g1lSKhE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/kaoUE3iAts9s6sfJXP2g1lSKhE.jpg 1080w\"},className:\"framer-ttunyi framer-1q6541t\",\"data-framer-name\":\"MOON_RIVER\",name:\"MOON_RIVER\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/niathebrand/?hl=en\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/sYwB3tnqR6mipQGnPkb8zpHJqE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sYwB3tnqR6mipQGnPkb8zpHJqE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/sYwB3tnqR6mipQGnPkb8zpHJqE.jpg 1080w\"},className:\"framer-1oteiaq framer-1q6541t\",\"data-framer-name\":\"NIA\",name:\"NIA\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/operasport___/?hl=en\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/hC7oTtLSSRs3uszDchjF141Ryr4.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hC7oTtLSSRs3uszDchjF141Ryr4.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/hC7oTtLSSRs3uszDchjF141Ryr4.jpg 1080w\"},className:\"framer-nhe0db framer-1q6541t\",\"data-framer-name\":\"OPERA_SPORT\",name:\"OPERA_SPORT\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/osoi_official/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/ZloZGYOOfKDTpTOV993CUepkt0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZloZGYOOfKDTpTOV993CUepkt0.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/ZloZGYOOfKDTpTOV993CUepkt0.jpg 1080w\"},className:\"framer-gyy7ti framer-1q6541t\",\"data-framer-name\":\"OSOI\",name:\"OSOI\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://oval-square.com/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/lAiIXAIaAel6yWzAw9jMhs7nIkg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lAiIXAIaAel6yWzAw9jMhs7nIkg.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/lAiIXAIaAel6yWzAw9jMhs7nIkg.jpg 1080w\"},className:\"framer-1nv6lp6 framer-1q6541t\",\"data-framer-name\":\"OVAL_SQUARE\",name:\"OVAL_SQUARE\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/ksubi/\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/7Wb3lOq2ntKyFdwRuGeXGUQJD8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7Wb3lOq2ntKyFdwRuGeXGUQJD8.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/7Wb3lOq2ntKyFdwRuGeXGUQJD8.jpg 1080w\"},className:\"framer-1fnowp7 framer-1q6541t\",\"data-framer-name\":\"KSUBI\",name:\"KSUBI\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/mandinga_mandinga/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/ZkFRPlkllrreTl3meWt0azGN8I.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZkFRPlkllrreTl3meWt0azGN8I.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/ZkFRPlkllrreTl3meWt0azGN8I.jpg 1080w\"},className:\"framer-19umprx framer-1q6541t\",\"data-framer-name\":\"MANDINGA\",name:\"MANDINGA\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/rollasjeans/\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/a7duZAWm3MYoFpiyv31NbhMP4.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/a7duZAWm3MYoFpiyv31NbhMP4.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/a7duZAWm3MYoFpiyv31NbhMP4.jpg 1080w\"},className:\"framer-1blkyng framer-1q6541t\",\"data-framer-name\":\"ROLLAS\",name:\"ROLLAS\"})}),/*#__PURE__*/_jsx(Link,{href:\"www.viavia.live\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:540,pixelHeight:1350,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/961Wr2R7Hf0jSP9eUusjzC2gLbo.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/961Wr2R7Hf0jSP9eUusjzC2gLbo.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/961Wr2R7Hf0jSP9eUusjzC2gLbo.jpg 1080w\"},className:\"framer-rfki7n framer-1q6541t\",\"data-framer-name\":\"VIAVIA\",name:\"VIAVIA\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1200,pixelHeight:3e3,pixelWidth:2400,sizes:\"540px\",src:\"https://framerusercontent.com/images/swUZbN6tCMcp37oNvKRITZai0nY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/swUZbN6tCMcp37oNvKRITZai0nY.png?scale-down-to=1024 819w,https://framerusercontent.com/images/swUZbN6tCMcp37oNvKRITZai0nY.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/swUZbN6tCMcp37oNvKRITZai0nY.png 2400w\"},className:\"framer-sa9mj9\",\"data-framer-name\":\"Private_Policy\",name:\"Private_Policy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:800,pixelHeight:2e3,pixelWidth:1600,sizes:\"540px\",src:\"https://framerusercontent.com/images/qdlI8t412NegiK9pZLHacKXaYRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qdlI8t412NegiK9pZLHacKXaYRA.png?scale-down-to=1024 819w,https://framerusercontent.com/images/qdlI8t412NegiK9pZLHacKXaYRA.png 1600w\"},className:\"framer-1q0bk0l\",\"data-framer-name\":\"Americandreams\",name:\"Americandreams\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1008,intrinsicWidth:800,pixelHeight:2016,pixelWidth:1600,sizes:\"540px\",src:\"https://framerusercontent.com/images/H4SMn3oBlYwnoHgNkD2HyonBk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/H4SMn3oBlYwnoHgNkD2HyonBk.png?scale-down-to=1024 812w,https://framerusercontent.com/images/H4SMn3oBlYwnoHgNkD2HyonBk.png 1600w\"},className:\"framer-q6xduy\",\"data-framer-name\":\"callahan_image\",name:\"callahan_image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1350,intrinsicWidth:1080,pixelHeight:2700,pixelWidth:2160,sizes:\"540px\",src:\"https://framerusercontent.com/images/2oRPe0kihX0IsAo0XLaB545SIUM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2oRPe0kihX0IsAo0XLaB545SIUM.png?scale-down-to=1024 819w,https://framerusercontent.com/images/2oRPe0kihX0IsAo0XLaB545SIUM.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/2oRPe0kihX0IsAo0XLaB545SIUM.png 2160w\"},className:\"framer-a0anhv\",\"data-framer-name\":\"one_teaspoon\",name:\"one_teaspoon\"})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{y:undefined},MwVsOVOks:{y:3292.1022222222223}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:714,width:\"100vw\",y:4552,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t28td0-container\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IPNK3eq86:{variant:\"mVQWMWtmx\"},MwVsOVOks:{variant:\"k4VtztKKd\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"yWYvddA77\",layoutId:\"yWYvddA77\",style:{width:\"100%\"},variant:\"oQ1DAWv_4\",width:\"100%\"})})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-wZLSF { background: var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; }`,\".framer-wZLSF.framer-1q6541t, .framer-wZLSF .framer-1q6541t { display: block; }\",\".framer-wZLSF.framer-114m81w { align-content: flex-start; align-items: flex-start; background-color: var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-wZLSF .framer-g85e46-container, .framer-wZLSF .framer-1ugiu9g-container, .framer-wZLSF .framer-1i97i85-container, .framer-wZLSF .framer-gxmh0d-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-wZLSF .framer-14445t4-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-wZLSF .framer-1cikijk { flex: none; height: 50px; min-height: 10px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wZLSF .framer-13q5s44 { align-content: center; align-items: center; background-color: var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 9; }\",\".framer-wZLSF .framer-d7rpnc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 100vh; justify-content: center; max-width: 1440px; overflow: hidden; padding: 74px 100px 30px 100px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-wZLSF .framer-71fv2w-container { flex: none; height: 651px; position: relative; width: 366px; }\",\".framer-wZLSF .framer-19repbn { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wZLSF .framer-7h8nx5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-458zbq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 80%; padding: 0px; position: relative; width: 1px; }\",\".framer-wZLSF .framer-1lm5u6d, .framer-wZLSF .framer-hp9wav, .framer-wZLSF .framer-94b4qj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 28px; }\",\".framer-wZLSF .framer-1dd8zb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-1ttzorn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-1cbnu0z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-wZLSF .framer-wrmwus { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wZLSF .framer-l4xb34 { --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-wZLSF .framer-1iik221-container { flex: none; height: 573px; position: relative; width: 322px; }\",\".framer-wZLSF .framer-1xow1fi-container { flex: none; height: auto; left: 1035px; position: absolute; top: 42px; width: auto; z-index: 1; }\",\".framer-wZLSF .framer-gfjfqe { align-content: center; align-items: center; background-color: var(--token-beafb5d5-7be6-4d23-8711-f78775447718, #151304); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 0px 77px 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-1dzdl68 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 12px 32px 12px 32px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-1haveq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 26%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-wZLSF .framer-1y4gt69 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-wZLSF .framer-1h1yztm { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-wZLSF .framer-s9a6fx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 280px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-wZLSF .framer-13jyr4f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 81px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 27px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-jai26v { aspect-ratio: 0.8293269230769231 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 607px); overflow: visible; position: relative; width: 503px; }\",\".framer-wZLSF .framer-zcxulf-container, .framer-wZLSF .framer-1w9a7u4-container { flex: none; height: 397px; position: relative; width: 254px; }\",\".framer-wZLSF .framer-1yomk5p, .framer-wZLSF .framer-a540i7, .framer-wZLSF .framer-1d3ebn4 { aspect-ratio: 0.6410256410256411 / 1; height: var(--framer-aspect-ratio-supported, 468px); overflow: visible; position: relative; width: 300px; }\",\".framer-wZLSF .framer-rw34rv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-around; max-width: 48%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wZLSF .framer-1v341d-container { flex: none; height: 341px; position: relative; width: 561px; }\",\".framer-wZLSF .framer-dun904, .framer-wZLSF .framer-18atun6, .framer-wZLSF .framer-17l1uzk { aspect-ratio: 1.638586956521739 / 1; height: var(--framer-aspect-ratio-supported, 736px); overflow: visible; position: relative; width: 1206px; }\",\".framer-wZLSF .framer-1gbzgva { aspect-ratio: 0.8293269230769231 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 625px); overflow: visible; position: relative; width: 334px; }\",\".framer-wZLSF .framer-zq7qnp { background-color: var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: grid; flex: none; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 100vh; justify-content: center; max-width: 100%; overflow: hidden; padding: 80px 120px 80px 120px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-wZLSF .framer-n37zwa { align-content: flex-end; align-items: flex-end; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-row: auto / span 2; height: 100%; justify-content: center; justify-self: start; max-width: 100%; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-ypsopy { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-row: auto / span 2; height: 100%; justify-content: center; justify-self: start; max-width: 100%; overflow: visible; padding: 0px 32px 100px 32px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-vsocbt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-m6pjau { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-136epa9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-1km8vhm, .framer-wZLSF .framer-l9xak6, .framer-wZLSF .framer-1tfs06g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-wZLSF .framer-tm3q07 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 500px; min-width: 100px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wZLSF .framer-2z82tk-container { flex: none; height: 70px; position: relative; width: 202px; }\",\".framer-wZLSF .framer-o02nhy { align-content: center; align-items: center; background-color: var(--token-da90ef89-7b78-4123-b52b-3835b290d27e, #f1e8e4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 99px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-8kplaz, .framer-wZLSF .framer-15eejcc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-wyrwe { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 67px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-d2y12l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-1ivijqq, .framer-wZLSF .framer-119to85 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wZLSF .framer-brxm0t, .framer-wZLSF .framer-w5lvrn { flex: none; height: auto; max-width: 100%; min-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",'.framer-wZLSF .framer-s0efeo { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, var(--token-da90ef89-7b78-4123-b52b-3835b290d27e, rgb(241, 232, 228)) /* {\"name\":\"BNTO pink\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }',\".framer-wZLSF .framer-mxwifu { align-content: center; align-items: center; background-color: var(--token-da90ef89-7b78-4123-b52b-3835b290d27e, #f1e8e4); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 39px; height: 404px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-10hv7h0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 886px; }\",\".framer-wZLSF .framer-152m012 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 84px; height: 294px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-1u1ock9 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-1kh8sxu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: 200px; justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-18wf8kb { align-content: center; align-items: center; background-color: var(--token-da90ef89-7b78-4123-b52b-3835b290d27e, #f1e8e4); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 84px; height: 395px; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-j8zj2e { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 1px; }\",\".framer-wZLSF .framer-1peevyk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 5px 30px 5px; position: relative; width: 100%; z-index: 1; }\",\".framer-wZLSF .framer-bxrnu4 { flex: none; height: auto; max-width: 100%; min-width: 100%; position: relative; white-space: pre-wrap; width: 335px; word-break: break-word; word-wrap: break-word; }\",\".framer-wZLSF .framer-1kgjdfr-container, .framer-wZLSF .framer-24glfa-container { flex: none; height: 449px; position: relative; width: 100%; }\",\".framer-wZLSF .framer-1v6n5fv, .framer-wZLSF .framer-1t8mye5, .framer-wZLSF .framer-dv756e, .framer-wZLSF .framer-19l9dpr, .framer-wZLSF .framer-go8eaf, .framer-wZLSF .framer-1gg8gxc, .framer-wZLSF .framer-2yk8l3, .framer-wZLSF .framer-1t5qlkt, .framer-wZLSF .framer-5zdmr3, .framer-wZLSF .framer-1t1m4sa, .framer-wZLSF .framer-18u7k4j, .framer-wZLSF .framer-oi3xgk, .framer-wZLSF .framer-c274dx, .framer-wZLSF .framer-1qxy5pr, .framer-wZLSF .framer-19eur1r, .framer-wZLSF .framer-1l4xfdp, .framer-wZLSF .framer-1epzp1v, .framer-wZLSF .framer-1kv9jvz, .framer-wZLSF .framer-1iyftkd, .framer-wZLSF .framer-161oio4, .framer-wZLSF .framer-rsvhz0, .framer-wZLSF .framer-1h0ug3o, .framer-wZLSF .framer-b95eys, .framer-wZLSF .framer-13lb1oy, .framer-wZLSF .framer-1bsr9ac, .framer-wZLSF .framer-fcwszr, .framer-wZLSF .framer-1a2x1hl, .framer-wZLSF .framer-1khu5ul, .framer-wZLSF .framer-1m4skbz, .framer-wZLSF .framer-dlslmr, .framer-wZLSF .framer-1imcqno, .framer-wZLSF .framer-ttunyi, .framer-wZLSF .framer-1oteiaq, .framer-wZLSF .framer-nhe0db, .framer-wZLSF .framer-gyy7ti, .framer-wZLSF .framer-1nv6lp6, .framer-wZLSF .framer-1fnowp7, .framer-wZLSF .framer-19umprx, .framer-wZLSF .framer-1blkyng, .framer-wZLSF .framer-rfki7n { aspect-ratio: 0.8 / 1; height: var(--framer-aspect-ratio-supported, 675px); overflow: visible; position: relative; text-decoration: none; width: 540px; }\",\".framer-wZLSF .framer-gj8vjh, .framer-wZLSF .framer-18vf5mw, .framer-wZLSF .framer-1t54pjy, .framer-wZLSF .framer-kt9ud7, .framer-wZLSF .framer-1y91e7z, .framer-wZLSF .framer-179uykj, .framer-wZLSF .framer-sa9mj9, .framer-wZLSF .framer-1q0bk0l, .framer-wZLSF .framer-a0anhv { aspect-ratio: 0.8 / 1; height: var(--framer-aspect-ratio-supported, 675px); overflow: visible; position: relative; width: 540px; }\",\".framer-wZLSF .framer-gf5hf6, .framer-wZLSF .framer-q6xduy { height: 675px; overflow: visible; position: relative; width: 540px; }\",\".framer-wZLSF .framer-1t28td0-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wZLSF.framer-114m81w, .framer-wZLSF .framer-13q5s44, .framer-wZLSF .framer-d7rpnc, .framer-wZLSF .framer-19repbn, .framer-wZLSF .framer-7h8nx5, .framer-wZLSF .framer-458zbq, .framer-wZLSF .framer-1dd8zb, .framer-wZLSF .framer-1ttzorn, .framer-wZLSF .framer-gfjfqe, .framer-wZLSF .framer-1y4gt69, .framer-wZLSF .framer-1h1yztm, .framer-wZLSF .framer-13jyr4f, .framer-wZLSF .framer-n37zwa, .framer-wZLSF .framer-ypsopy, .framer-wZLSF .framer-vsocbt, .framer-wZLSF .framer-m6pjau, .framer-wZLSF .framer-136epa9, .framer-wZLSF .framer-o02nhy, .framer-wZLSF .framer-8kplaz, .framer-wZLSF .framer-wyrwe, .framer-wZLSF .framer-s0efeo, .framer-wZLSF .framer-mxwifu, .framer-wZLSF .framer-10hv7h0, .framer-wZLSF .framer-152m012, .framer-wZLSF .framer-1kh8sxu, .framer-wZLSF .framer-15eejcc, .framer-wZLSF .framer-18wf8kb, .framer-wZLSF .framer-1peevyk { gap: 0px; } .framer-wZLSF.framer-114m81w > *, .framer-wZLSF .framer-13q5s44 > *, .framer-wZLSF .framer-1dd8zb > *, .framer-wZLSF .framer-gfjfqe > *, .framer-wZLSF .framer-n37zwa > *, .framer-wZLSF .framer-ypsopy > *, .framer-wZLSF .framer-8kplaz > *, .framer-wZLSF .framer-s0efeo > *, .framer-wZLSF .framer-15eejcc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wZLSF.framer-114m81w > :first-child, .framer-wZLSF .framer-13q5s44 > :first-child, .framer-wZLSF .framer-19repbn > :first-child, .framer-wZLSF .framer-458zbq > :first-child, .framer-wZLSF .framer-1dd8zb > :first-child, .framer-wZLSF .framer-gfjfqe > :first-child, .framer-wZLSF .framer-1h1yztm > :first-child, .framer-wZLSF .framer-n37zwa > :first-child, .framer-wZLSF .framer-ypsopy > :first-child, .framer-wZLSF .framer-vsocbt > :first-child, .framer-wZLSF .framer-m6pjau > :first-child, .framer-wZLSF .framer-136epa9 > :first-child, .framer-wZLSF .framer-o02nhy > :first-child, .framer-wZLSF .framer-8kplaz > :first-child, .framer-wZLSF .framer-wyrwe > :first-child, .framer-wZLSF .framer-s0efeo > :first-child, .framer-wZLSF .framer-10hv7h0 > :first-child, .framer-wZLSF .framer-1kh8sxu > :first-child, .framer-wZLSF .framer-15eejcc > :first-child, .framer-wZLSF .framer-1peevyk > :first-child { margin-top: 0px; } .framer-wZLSF.framer-114m81w > :last-child, .framer-wZLSF .framer-13q5s44 > :last-child, .framer-wZLSF .framer-19repbn > :last-child, .framer-wZLSF .framer-458zbq > :last-child, .framer-wZLSF .framer-1dd8zb > :last-child, .framer-wZLSF .framer-gfjfqe > :last-child, .framer-wZLSF .framer-1h1yztm > :last-child, .framer-wZLSF .framer-n37zwa > :last-child, .framer-wZLSF .framer-ypsopy > :last-child, .framer-wZLSF .framer-vsocbt > :last-child, .framer-wZLSF .framer-m6pjau > :last-child, .framer-wZLSF .framer-136epa9 > :last-child, .framer-wZLSF .framer-o02nhy > :last-child, .framer-wZLSF .framer-8kplaz > :last-child, .framer-wZLSF .framer-wyrwe > :last-child, .framer-wZLSF .framer-s0efeo > :last-child, .framer-wZLSF .framer-10hv7h0 > :last-child, .framer-wZLSF .framer-1kh8sxu > :last-child, .framer-wZLSF .framer-15eejcc > :last-child, .framer-wZLSF .framer-1peevyk > :last-child { margin-bottom: 0px; } .framer-wZLSF .framer-d7rpnc > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-wZLSF .framer-d7rpnc > :first-child, .framer-wZLSF .framer-7h8nx5 > :first-child, .framer-wZLSF .framer-1ttzorn > :first-child, .framer-wZLSF .framer-1y4gt69 > :first-child, .framer-wZLSF .framer-13jyr4f > :first-child, .framer-wZLSF .framer-mxwifu > :first-child, .framer-wZLSF .framer-152m012 > :first-child, .framer-wZLSF .framer-18wf8kb > :first-child { margin-left: 0px; } .framer-wZLSF .framer-d7rpnc > :last-child, .framer-wZLSF .framer-7h8nx5 > :last-child, .framer-wZLSF .framer-1ttzorn > :last-child, .framer-wZLSF .framer-1y4gt69 > :last-child, .framer-wZLSF .framer-13jyr4f > :last-child, .framer-wZLSF .framer-mxwifu > :last-child, .framer-wZLSF .framer-152m012 > :last-child, .framer-wZLSF .framer-18wf8kb > :last-child { margin-right: 0px; } .framer-wZLSF .framer-19repbn > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-wZLSF .framer-7h8nx5 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-wZLSF .framer-458zbq > *, .framer-wZLSF .framer-vsocbt > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wZLSF .framer-1ttzorn > *, .framer-wZLSF .framer-1y4gt69 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wZLSF .framer-1h1yztm > *, .framer-wZLSF .framer-m6pjau > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wZLSF .framer-13jyr4f > * { margin: 0px; margin-left: calc(81px / 2); margin-right: calc(81px / 2); } .framer-wZLSF .framer-136epa9 > *, .framer-wZLSF .framer-o02nhy > *, .framer-wZLSF .framer-10hv7h0 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-wZLSF .framer-wyrwe > * { margin: 0px; margin-bottom: calc(67px / 2); margin-top: calc(67px / 2); } .framer-wZLSF .framer-mxwifu > * { margin: 0px; margin-left: calc(39px / 2); margin-right: calc(39px / 2); } .framer-wZLSF .framer-152m012 > *, .framer-wZLSF .framer-18wf8kb > * { margin: 0px; margin-left: calc(84px / 2); margin-right: calc(84px / 2); } .framer-wZLSF .framer-1kh8sxu > *, .framer-wZLSF .framer-1peevyk > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } }\",`@media (min-width: 720px) and (max-width: 1279px) { .${metadata.bodyClassName}-framer-wZLSF { background: var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-wZLSF.framer-114m81w { width: 720px; } .framer-wZLSF .framer-d7rpnc { gap: 30px; height: 82.22222222222221vh; order: 0; padding: 74px 24px 30px 24px; } .framer-wZLSF .framer-71fv2w-container { height: 573px; order: 0; width: 322px; } .framer-wZLSF .framer-19repbn { order: 1; } .framer-wZLSF .framer-7h8nx5 { gap: 14px; } .framer-wZLSF .framer-458zbq { max-width: 100%; } .framer-wZLSF .framer-1xow1fi-container { order: 2; } .framer-wZLSF .framer-gfjfqe { height: min-content; order: 1; padding: 0px 0px 95px 0px; } .framer-wZLSF .framer-1dzdl68 { padding: 38px 32px 38px 32px; } .framer-wZLSF .framer-1haveq { max-width: 280px; } .framer-wZLSF .framer-1y4gt69 { align-content: flex-end; align-items: flex-end; flex-direction: column; } .framer-wZLSF .framer-1h1yztm { flex: none; order: 0; width: 100%; } .framer-wZLSF .framer-s9a6fx, .framer-wZLSF .framer-m6pjau { order: 0; } .framer-wZLSF .framer-13jyr4f { gap: 50px; max-width: 233%; padding: 0px 24px 0px 24px; } .framer-wZLSF .framer-jai26v { height: var(--framer-aspect-ratio-supported, 397px); width: 329px; } .framer-wZLSF .framer-zq7qnp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; order: 2; padding: 50px 24px 80px 24px; } .framer-wZLSF .framer-n37zwa { align-self: unset; flex: 1 0 0px; height: 570px; order: 0; width: 1px; } .framer-wZLSF .framer-ypsopy { align-self: unset; flex: 1 0 0px; height: 662px; order: 1; width: 1px; } .framer-wZLSF .framer-vsocbt { height: 284px; max-width: 269%; } .framer-wZLSF .framer-l9xak6 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-wZLSF .framer-tm3q07 { width: 101%; } .framer-wZLSF .framer-o02nhy { order: 3; } .framer-wZLSF .framer-s0efeo { order: 4; } .framer-wZLSF .framer-1kgjdfr-container { height: 247px; } .framer-wZLSF .framer-24glfa-container { height: 240px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wZLSF .framer-d7rpnc, .framer-wZLSF .framer-7h8nx5, .framer-wZLSF .framer-1y4gt69, .framer-wZLSF .framer-13jyr4f, .framer-wZLSF .framer-zq7qnp { gap: 0px; } .framer-wZLSF .framer-d7rpnc > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-wZLSF .framer-d7rpnc > :first-child, .framer-wZLSF .framer-7h8nx5 > :first-child, .framer-wZLSF .framer-13jyr4f > :first-child, .framer-wZLSF .framer-zq7qnp > :first-child { margin-left: 0px; } .framer-wZLSF .framer-d7rpnc > :last-child, .framer-wZLSF .framer-7h8nx5 > :last-child, .framer-wZLSF .framer-13jyr4f > :last-child, .framer-wZLSF .framer-zq7qnp > :last-child { margin-right: 0px; } .framer-wZLSF .framer-7h8nx5 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-wZLSF .framer-1y4gt69 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wZLSF .framer-1y4gt69 > :first-child { margin-top: 0px; } .framer-wZLSF .framer-1y4gt69 > :last-child { margin-bottom: 0px; } .framer-wZLSF .framer-13jyr4f > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-wZLSF .framer-zq7qnp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }}`,`@media (max-width: 719px) { .${metadata.bodyClassName}-framer-wZLSF { background: var(--token-953747aa-a34c-4bf9-8c5b-ab157ff3830a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-wZLSF.framer-114m81w { width: 375px; } .framer-wZLSF .framer-g85e46-container, .framer-wZLSF .framer-s9a6fx { order: 0; } .framer-wZLSF .framer-14445t4-container, .framer-wZLSF .framer-15eejcc, .framer-wZLSF .framer-119to85 { order: 1; } .framer-wZLSF .framer-1cikijk, .framer-wZLSF .framer-bxrnu4 { order: 2; } .framer-wZLSF .framer-13q5s44 { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; order: 3; } .framer-wZLSF .framer-d7rpnc { flex-direction: column; gap: 12px; height: min-content; order: 0; padding: 0px 30px 15px 30px; } .framer-wZLSF .framer-19repbn { flex: none; order: 1; width: 100%; } .framer-wZLSF .framer-7h8nx5 { justify-content: flex-start; } .framer-wZLSF .framer-458zbq { gap: 16px; justify-content: flex-start; max-width: 100%; padding: 62px 0px 30px 0px; } .framer-wZLSF .framer-1cbnu0z { flex: 1 0 0px; width: 1px; } .framer-wZLSF .framer-hp9wav { height: var(--framer-aspect-ratio-supported, 24px); width: 24px; } .framer-wZLSF .framer-gfjfqe { gap: 27px; height: min-content; justify-content: flex-start; order: 1; padding: 8px 0px 50px 0px; } .framer-wZLSF .framer-1dzdl68 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; justify-content: flex-start; order: 0; padding: 21px 24px 21px 24px; } .framer-wZLSF .framer-1haveq { max-width: 100%; order: 0; } .framer-wZLSF .framer-1y4gt69 { flex: none; justify-content: flex-end; order: 1; width: 100%; } .framer-wZLSF .framer-1h1yztm { flex-direction: row; justify-content: flex-start; } .framer-wZLSF .framer-1gbzgva { height: var(--framer-aspect-ratio-supported, 403px); order: 2; } .framer-wZLSF .framer-1w9a7u4-container { order: 3; } .framer-wZLSF .framer-zq7qnp { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; order: 2; padding: 60px 24px 84px 24px; } .framer-wZLSF .framer-n37zwa { align-self: unset; height: 81.61764705882352vh; padding: 0px 24px 0px 24px; } .framer-wZLSF .framer-ypsopy { align-self: unset; height: min-content; padding: 0px 24px 34px 24px; } .framer-wZLSF .framer-vsocbt { gap: 14px; max-width: 480px; } .framer-wZLSF .framer-136epa9 { gap: 10px; } .framer-wZLSF .framer-s0efeo { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wZLSF .framer-d7rpnc, .framer-wZLSF .framer-458zbq, .framer-wZLSF .framer-gfjfqe, .framer-wZLSF .framer-1dzdl68, .framer-wZLSF .framer-1h1yztm, .framer-wZLSF .framer-zq7qnp, .framer-wZLSF .framer-vsocbt, .framer-wZLSF .framer-136epa9 { gap: 0px; } .framer-wZLSF .framer-d7rpnc > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-wZLSF .framer-d7rpnc > :first-child, .framer-wZLSF .framer-458zbq > :first-child, .framer-wZLSF .framer-gfjfqe > :first-child, .framer-wZLSF .framer-1dzdl68 > :first-child, .framer-wZLSF .framer-zq7qnp > :first-child, .framer-wZLSF .framer-vsocbt > :first-child, .framer-wZLSF .framer-136epa9 > :first-child { margin-top: 0px; } .framer-wZLSF .framer-d7rpnc > :last-child, .framer-wZLSF .framer-458zbq > :last-child, .framer-wZLSF .framer-gfjfqe > :last-child, .framer-wZLSF .framer-1dzdl68 > :last-child, .framer-wZLSF .framer-zq7qnp > :last-child, .framer-wZLSF .framer-vsocbt > :last-child, .framer-wZLSF .framer-136epa9 > :last-child { margin-bottom: 0px; } .framer-wZLSF .framer-458zbq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-wZLSF .framer-gfjfqe > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-wZLSF .framer-1dzdl68 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wZLSF .framer-1h1yztm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wZLSF .framer-1h1yztm > :first-child { margin-left: 0px; } .framer-wZLSF .framer-1h1yztm > :last-child { margin-right: 0px; } .framer-wZLSF .framer-zq7qnp > *, .framer-wZLSF .framer-vsocbt > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-wZLSF .framer-136epa9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4766.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MwVsOVOks\":{\"layout\":[\"fixed\",\"auto\"]},\"IPNK3eq86\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameryfTeUeWP4=withCSS(Component,css,\"framer-wZLSF\");export default FrameryfTeUeWP4;FrameryfTeUeWP4.displayName=\"Home\";FrameryfTeUeWP4.defaultProps={height:4766.5,width:1280};addFonts(FrameryfTeUeWP4,[{explicitInter:true,fonts:[{family:\"TWK Lausanne 650\",source:\"custom\",url:\"https://framerusercontent.com/assets/IvYOLgr1xut7z34qvJ42utOM.woff2\"},{family:\"Alternate Gothic No3 D Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/G0OdsYaYUnSzv58JpNAzKJaKP0.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...HeaderFonts,...VideoFonts,...ButtonFonts,...SlideshowFonts,...DownloadAppleLightFonts,...TickerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryfTeUeWP4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4766.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MwVsOVOks\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IPNK3eq86\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "SmoothScrollFonts", "getFonts", "SmoothScroll", "HeaderFonts", "M6SVEmqd3_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "M_GlV0yfU_default", "SlideshowFonts", "Slideshow", "MotionSectionWithFX", "DownloadAppleLightFonts", "PjXwwD0OO_default", "ContainerWithFX", "Container", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "TickerFonts", "Ticker", "FooterFonts", "tKxriScUn_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "animation4", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "ref2", "ref3", "ref4", "isDisplayed", "elementId", "useRouteElementId", "ref5", "elementId1", "ref6", "elementId2", "ref7", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId3", "elementId4", "elementId5", "isDisplayed4", "elementId6", "ref8", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "x", "RichText2", "getLoadingLazyAtYPosition", "Link", "css", "FrameryfTeUeWP4", "withCSS", "yfTeUeWP4_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
