{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framerusercontent.com/modules/sIOgub1D5F56h2WZSnSs/rto9JyChNyOoLdOgbvVp/MWHHc1r3E.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;const numChildren=Children.count(slots);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(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.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(slots,(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%\"};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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"BJb0FiEnr\",\"d013BDOd4\",\"YRiuEJJ0T\",\"qyLxvubcK\",\"LGI8Srx_8\",\"kq9RzDI8H\",\"hO6TuUKnr\",\"umzo_iIog\",\"hq0oDSQ4b\",\"g0vFMfvRd\",\"SiFHIO6mr\",\"KsgdemzSz\"];const serializationHash=\"framer-dbBWE\";const variantClassNames={BJb0FiEnr:\"framer-v-1hw9mj9\",d013BDOd4:\"framer-v-zdvnf8\",g0vFMfvRd:\"framer-v-1ya4hvt\",hO6TuUKnr:\"framer-v-1i8qvut\",hq0oDSQ4b:\"framer-v-1oo2z7s\",kq9RzDI8H:\"framer-v-12qkb36\",KsgdemzSz:\"framer-v-5b9wsg\",LGI8Srx_8:\"framer-v-1r28iwv\",qyLxvubcK:\"framer-v-83wjjv\",SiFHIO6mr:\"framer-v-260q0o\",umzo_iIog:\"framer-v-5ecjzt\",YRiuEJJ0T:\"framer-v-el925z\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"21stcentury fox\":\"KsgdemzSz\",Amazon:\"SiFHIO6mr\",Apple:\"d013BDOd4\",Chanel:\"g0vFMfvRd\",Google:\"qyLxvubcK\",HP:\"hq0oDSQ4b\",Loreal:\"kq9RzDI8H\",Neom:\"LGI8Srx_8\",Netflix:\"BJb0FiEnr\",Samsung:\"YRiuEJJ0T\",Space:\"hO6TuUKnr\",WB:\"umzo_iIog\"};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:\"BJb0FiEnr\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"BJb0FiEnr\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"KsgdemzSz\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"SiFHIO6mr\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"g0vFMfvRd\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"hq0oDSQ4b\")return true;return false;};const isDisplayed4=()=>{if([\"d013BDOd4\",\"YRiuEJJ0T\",\"qyLxvubcK\",\"LGI8Srx_8\",\"kq9RzDI8H\",\"hO6TuUKnr\",\"umzo_iIog\",\"hq0oDSQ4b\",\"g0vFMfvRd\",\"SiFHIO6mr\",\"KsgdemzSz\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"umzo_iIog\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"kq9RzDI8H\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"LGI8Srx_8\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"qyLxvubcK\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"YRiuEJJ0T\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"d013BDOd4\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hw9mj9\",className,classNames),\"data-framer-name\":\"Netflix\",initial:variant,layoutDependency:layoutDependency,layoutId:\"BJb0FiEnr\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({d013BDOd4:{\"data-framer-name\":\"Apple\"},g0vFMfvRd:{\"data-framer-name\":\"Chanel\"},hO6TuUKnr:{\"data-framer-name\":\"Space\"},hq0oDSQ4b:{\"data-framer-name\":\"HP\"},kq9RzDI8H:{\"data-framer-name\":\"Loreal\"},KsgdemzSz:{\"data-framer-name\":\"21stcentury fox\"},LGI8Srx_8:{\"data-framer-name\":\"Neom\"},qyLxvubcK:{\"data-framer-name\":\"Google\"},SiFHIO6mr:{\"data-framer-name\":\"Amazon\"},umzo_iIog:{\"data-framer-name\":\"WB\"},YRiuEJJ0T:{\"data-framer-name\":\"Samsung\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1nod8zd\",\"data-framer-name\":\"$21st_Century_Fox\",fill:\"black\",intrinsicHeight:36,intrinsicWidth:103,layoutDependency:layoutDependency,layoutId:\"WnKZHA1RH\",svg:'<svg width=\"103\" height=\"36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M43.816 35.128h-2.95v-9.969h6.065l.245 2.739h-3.36v1.389h2.737v2.626h-2.737v3.215Zm8.659-10.141c-3.533 0-5.208 2.606-5.208 5.172 0 2.687 1.726 5.172 5.249 5.172 3.319 0 5.249-2.272 5.249-5.111 0-2.718-1.787-5.233-5.29-5.233Zm.051 2.728c1.389 0 2.073 1.41 2.073 2.474 0 1.42-.95 2.495-2.103 2.495-1.134 0-2.073-.953-2.073-2.535 0-1.177.674-2.434 2.103-2.434Z\"/><path d=\"m56.509 35.128 3.114-5.131-2.951-4.807 3.543-.02 1.195 2.24 1.123-2.24h3.503l-2.91 4.847 3.093 5.11h-3.4l-1.41-2.514-1.47 2.515h-3.43Zm-13.04-16.945c0-1.39.888-2.394 2.011-2.394 1.165 0 1.92.913 1.92.913l1.644-2.2s-1.317-1.481-3.543-1.481c-3.697 0-5.3 2.789-5.3 5.232 0 3.104 2.298 5.081 5.29 5.081 2.47 0 3.788-1.4 3.788-1.4l-1.634-2.17s-.898.852-2.062.852c-1.236.01-2.114-.963-2.114-2.433Zm12.386 4.938h-6.157v-9.958h6.137l.316 2.738H52.65v1.176h2.553v2.343H52.65v1.176h3.502l-.296 2.525Zm1.123 0v-9.958h2.553l3.543 4.776v-4.776h2.951v9.958h-2.47l-3.82-5.162v5.162h-2.757Zm12.039 0V15.8H66.66l.265-2.636h7.168l.235 2.636h-2.359v7.322h-2.95Zm10.589.243c-3.339 0-4.533-2.038-4.533-4.066v-6.135h2.95v5.699c0 1.217.715 1.917 1.573 1.917.99 0 1.572-.812 1.572-1.917v-5.7h3.054v5.467c-.01 3.549-1.808 4.735-4.616 4.735Zm5.596-10.201v9.958h2.951v-3.316h.531l1.756 3.65 2.962-.638-1.91-3.357c1.042-.588 1.848-1.379 1.848-3.052 0-2.1-1.572-3.245-3.717-3.245h-4.421Zm2.94 2.342h.89c.837 0 1.378.274 1.378.994 0 .639-.541 1.065-1.379 1.065h-.888v-2.059Zm4.432-2.342 3.544 6.338v3.62h2.859v-3.63l3.543-6.338h-3.298l-1.664 3.539-1.665-3.54h-3.319v.01ZM40.845 9.248v1.958H48.4l.306-2.536h-3.339l1.746-1.541c.766-.71 1.45-1.643 1.45-2.758 0-1.43-.766-3.316-3.88-3.316-2.655 0-3.502 1.135-4.033 3.133l2.757.578c.143-.639.46-1.369 1.266-1.369.592 0 .898.406.898.974 0 .669-.48 1.257-1.337 2.028l-3.39 2.85Zm13.275 1.958h-2.952V4.959s-.53.618-2.165.618V3.306c1.563-.172 2.41-1.41 2.716-2.059h2.4v9.959Zm1.796-3.336-1.225 2.27s1.593 1.279 3.972 1.279c2.349 0 3.86-1.288 3.86-3.185 0-3.69-4.564-2.86-4.564-4.188 0-.345.275-.68 1.123-.68 1.02 0 2.073.771 2.073.771l1.205-2.15s-1.226-.953-3.299-.953c-3.145 0-3.962 2.16-3.962 3.185 0 3.488 4.534 2.819 4.534 4.086 0 .457-.347.66-1.092.66-1.256.01-2.625-1.096-2.625-1.096Zm8.924 3.336V3.884h-2.358l.266-2.637h7.168l.235 2.637h-2.36v7.322h-2.95ZM18.186.66a18.3 18.3 0 0 0-3.278.293l5.81 21.986 11.11-15.891A17.673 17.673 0 0 0 18.186.659ZM7.842 3.984C3.39 7.17.49 12.362.49 18.223c0 7.697 4.973 14.238 11.906 16.61l6.168-8.822L7.842 3.985Zm27.51 9.949L21.78 26.953l2.094 7.92c6.984-2.352 11.998-8.913 11.998-16.64 0-1.492-.174-2.932-.52-4.3Zm-15.44 14.825-6.627 6.359a17.77 17.77 0 0 0 4.901.68 17.95 17.95 0 0 0 4.82-.66l-3.094-6.379Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h103v36H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-d36p0i\",\"data-framer-name\":\"amazon\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:93,layoutDependency:layoutDependency,layoutId:\"A6v_sk4FA\",svg:'<svg width=\"93\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M57.683 22.656c-5.398 4.11-13.222 6.303-19.959 6.303-9.445 0-17.948-3.609-24.381-9.612-.506-.472-.053-1.115.554-.748 6.942 4.174 15.526 6.684 24.394 6.684 5.98 0 12.558-1.278 18.607-3.93.914-.402 1.678.618.785 1.303Z\"/><path d=\"M59.927 20.003c-.688-.91-4.561-.43-6.3-.217-.53.067-.61-.41-.133-.752 3.085-2.243 8.147-1.596 8.737-.844.59.756-.153 5.999-3.052 8.501-.445.384-.87.18-.672-.33.651-1.68 2.111-5.443 1.42-6.358ZM53.748 3.197v-2.18a.53.53 0 0 1 .534-.552h9.45c.303 0 .545.226.545.552v1.867c-.004.313-.258.723-.711 1.37l-4.897 7.223c1.82-.046 3.74.234 5.39 1.195.372.217.473.534.501.848v2.327c0 .317-.34.689-.695.497-2.907-1.575-6.769-1.747-9.983.016-.328.184-.671-.183-.671-.5v-2.21c0-.356.004-.962.347-1.5l5.673-8.405h-4.937a.531.531 0 0 1-.546-.548Zm-34.47 13.606h-2.874a.551.551 0 0 1-.514-.505V1.054c0-.305.247-.547.554-.547h2.68a.55.55 0 0 1 .522.51v1.992h.053c.7-1.925 2.013-2.824 3.785-2.824 1.799 0 2.923.899 3.732 2.824.695-1.925 2.276-2.824 3.97-2.824 1.205 0 2.523.514 3.328 1.667.91 1.283.724 3.146.724 4.78l-.004 9.62a.552.552 0 0 1-.554.551h-2.871a.557.557 0 0 1-.518-.551v-8.08c0-.643.057-2.247-.08-2.857-.215-1.023-.858-1.311-1.69-1.311-.696 0-1.424.48-1.72 1.249-.294.768-.266 2.055-.266 2.92v8.079a.552.552 0 0 1-.554.551h-2.87a.554.554 0 0 1-.518-.551l-.004-8.08c0-1.7.27-4.202-1.771-4.202-2.067 0-1.986 2.44-1.986 4.203v8.079a.552.552 0 0 1-.554.551ZM72.413.185c4.265 0 6.574 3.785 6.574 8.598 0 4.649-2.551 8.338-6.574 8.338-4.19 0-6.47-3.785-6.47-8.501 0-4.746 2.309-8.435 6.47-8.435Zm.024 3.113c-2.119 0-2.252 2.982-2.252 4.841 0 1.863-.029 5.84 2.228 5.84 2.228 0 2.333-3.208 2.333-5.163 0-1.287-.053-2.824-.429-4.044-.323-1.06-.966-1.474-1.88-1.474Zm12.082 13.505h-2.863a.557.557 0 0 1-.518-.551l-.004-15.248a.55.55 0 0 1 .554-.497h2.665c.25.013.457.188.513.426v2.331h.053C85.724 1.18 86.852.185 88.837.185c1.29 0 2.547.48 3.356 1.797.752 1.22.752 3.27.752 4.745v9.596a.558.558 0 0 1-.554.48h-2.883a.552.552 0 0 1-.51-.48v-8.28c0-1.667.187-4.106-1.799-4.106-.7 0-1.342.484-1.662 1.22-.404.931-.456 1.858-.456 2.886v8.209a.561.561 0 0 1-.562.551ZM46.215 9.522v-.643c-2.078 0-4.273.46-4.273 2.99 0 1.283.642 2.152 1.746 2.152.81 0 1.533-.514 1.99-1.35.566-1.027.538-1.992.538-3.15Zm2.9 7.24a.585.585 0 0 1-.68.07c-.954-.818-1.124-1.199-1.65-1.98-1.576 1.663-2.692 2.16-4.738 2.16-2.418 0-4.302-1.541-4.302-4.629 0-2.41 1.265-4.052 3.065-4.854 1.56-.71 3.74-.835 5.405-1.032v-.384c0-.706.053-1.541-.347-2.151-.352-.547-1.023-.773-1.614-.773-1.095 0-2.074.58-2.312 1.784-.049.267-.239.53-.498.543l-2.79-.31c-.234-.054-.493-.25-.428-.622C38.869 1.092 41.92.04 44.655.04c1.399 0 3.226.385 4.33 1.479 1.4 1.35 1.266 3.15 1.266 5.109v4.629c0 1.39.558 2 1.084 2.752.185.268.226.59-.009.79-.586.505-1.63 1.445-2.203 1.972l-.008-.009ZM8.527 9.522v-.643c-2.078 0-4.274.46-4.274 2.99 0 1.283.643 2.152 1.747 2.152.809 0 1.532-.514 1.99-1.35.565-1.027.537-1.992.537-3.15Zm2.9 7.24a.585.585 0 0 1-.68.07c-.954-.818-1.124-1.199-1.65-1.98-1.577 1.663-2.693 2.16-4.739 2.16-2.418 0-4.302-1.541-4.302-4.629 0-2.41 1.266-4.052 3.065-4.854 1.56-.71 3.74-.835 5.406-1.032v-.384c0-.706.053-1.541-.348-2.151-.351-.547-1.023-.773-1.613-.773-1.096 0-2.074.58-2.313 1.784-.048.267-.238.53-.497.543l-2.79-.31c-.235-.054-.493-.25-.429-.622C1.18 1.092 4.233.04 6.967.04c1.398 0 3.226.385 4.33 1.479 1.399 1.35 1.265 3.15 1.265 5.109v4.629c0 1.39.558 2 1.084 2.752.186.268.226.59-.008.79-.586.505-1.63 1.445-2.204 1.972l-.008-.009Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h93v29H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-18iv48r\",\"data-framer-name\":\"Chanel_logo_only\",fill:\"black\",intrinsicHeight:31,intrinsicWidth:41,layoutDependency:layoutDependency,layoutId:\"cht7MqQrb\",svg:'<svg width=\"41\" height=\"31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.764 30.115c-2.011-.093-4.25-.705-6.056-1.654-1.386-.73-2.484-1.545-3.635-2.7-.901-.905-1.566-1.738-2.129-2.668l-.246-.407.35-.186c.68-.362 3.786-1.955 3.81-1.955.014 0 .142.175.285.389 1.618 2.416 4.15 3.989 7.112 4.417.518.074 2.075.062 2.639-.02.628-.093 1.38-.265 1.858-.424.031-.01-.028-.107-.165-.269-1.059-1.25-2.024-2.967-2.567-4.566a14.782 14.782 0 0 1-.2-8.91 14.718 14.718 0 0 1 2.59-5.004c.172-.214.313-.403.313-.42 0-.057-.9-.296-1.49-.397-.91-.155-2.337-.174-3.16-.042-1.385.221-2.791.741-3.89 1.438a10.27 10.27 0 0 0-3.06 2.992l-.36.537-.458-.24c-.251-.133-1.187-.619-2.079-1.08C1.335 8.484.602 8.105.6 8.102c-.014-.013.544-.903.774-1.234.698-1.005 1.936-2.336 2.852-3.064C6.618 1.9 9.278.828 12.274.56c.555-.05 1.933-.05 2.47 0 1.9.174 3.531.636 5.215 1.478l.805.402.27-.154a15.41 15.41 0 0 1 1.796-.832c1.65-.632 3.31-.933 5.143-.933 1.28.001 2.35.127 3.51.415 2.62.65 4.855 1.895 6.78 3.779 1.045 1.021 1.863 2.064 2.523 3.216l.1.174-1.629.842c-.896.464-1.833.95-2.083 1.081l-.454.239-.343-.519a10.148 10.148 0 0 0-7.492-4.507c-.897-.084-2.229-.007-3.039.176-.416.094-1.093.287-1.093.313 0 .013.11.16.246.326 1.737 2.135 2.821 4.738 3.172 7.613.083.686.094 2.437.02 3.117-.317 2.868-1.4 5.515-3.127 7.646-.392.483-.375.45-.25.498.06.023.338.1.618.171a10.38 10.38 0 0 0 4.392.146c2.615-.483 4.97-2.033 6.486-4.268a15.5 15.5 0 0 1 .282-.409c.015-.017.364.139.777.346.816.41 3.374 1.737 3.401 1.764.046.046-.769 1.259-1.269 1.888-.473.597-1.714 1.838-2.307 2.31-2.142 1.7-4.545 2.74-7.193 3.112-3.04.426-6.26-.145-8.88-1.575l-.37-.202-.459.243c-2.275 1.207-4.885 1.782-7.528 1.66Zm8.493-8.38c1.268-1.573 2.06-3.48 2.254-5.436.066-.656.027-1.992-.075-2.59-.28-1.644-.88-3.053-1.848-4.34a11.391 11.391 0 0 0-.59-.721l-.259-.28-.24.26a12.27 12.27 0 0 0-1.108 1.475c-1.348 2.185-1.788 4.868-1.217 7.423.36 1.607 1.185 3.226 2.298 4.505l.256.294.113-.106c.061-.058.249-.276.416-.484Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ezxyyh\",\"data-framer-name\":\"hp\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:44,layoutDependency:layoutDependency,layoutId:\"wQJ68IoaX\",svg:'<svg width=\"44\" height=\"44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"m22.06 0-4.732 13.27 3.218.001c2.318 0 3.304 1.829 2.575 3.875l-4.707 13.197h-4.736l5.178-14.52h-2.439l-5.177 14.52H6.46L17.087.55C7.302 2.782 0 11.537 0 22c0 10.298 7.076 18.943 16.63 21.34l10.736-30.142h7.774c1.608 0 3.63 1.085 2.756 3.552l-4.365 12.325c-.557 1.575-1.883 1.894-2.938 1.894h-4.78l-4.635 13.015c.273.01.546.017.822.017 12.15 0 22-9.85 22-22C44 9.868 34.182.032 22.06 0Zm9.16 15.788-4.51 12.656h2.402l4.51-12.656H31.22Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h44v44H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1nmran4\",\"data-framer-name\":\"neflix\",fill:\"rgba(0, 0, 0, 0)\",intrinsicHeight:27,intrinsicWidth:89,layoutDependency:layoutDependency,layoutId:\"XBAgr0ddQ\",svg:'<svg width=\"89\" height=\"27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M75.202 23.995c1.226.119 2.45.246 3.673.378l2.699-6.663 2.565 7.278c1.316.165 2.632.338 3.943.519l-4.497-12.763 4.498-11.109h-3.81l-.04.055-2.43 6.001-2.133-6.055h-3.762l3.884 11.021-4.59 11.338Zm-2.845-.261V1.635h-3.76v21.789c1.254.097 2.509.2 3.76.31Zm-28.248-1.236c1.015 0 2.03.008 3.042.016v-8.119h4.517v-3.457H47.15V5.097h5.203V1.635h-8.978v20.866c.244 0 .489-.004.733-.003Zm-11.675.211a333.05 333.05 0 0 1 3.763-.112v-17.5h3.514v-3.46H28.92v3.46h3.516V22.71ZM3.675 25.04V11.875l4.452 12.634c1.37-.154 2.741-.299 4.116-.435V1.635H8.635v13.638L3.83 1.635H.068v23.878H.09c1.192-.165 2.389-.322 3.585-.474ZM25.293 5.096v-3.46h-8.978v22.063c2.987-.258 5.978-.475 8.971-.649v-3.464c-1.736.1-3.468.217-5.196.346v-5.535h4.517v-3.46H20.09v-5.84h5.203Zm34.513 14.325V1.634h-3.777v21.088c3.004.11 5.997.264 8.98.458v-3.466a327.54 327.54 0 0 0-5.203-.293Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.068 .945)\" d=\"M0 0h88.017v25.257H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-e7cm4c\",\"data-framer-name\":\"Warner\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:42,layoutDependency:layoutDependency,layoutId:\"hZsp6F0jc\",svg:'<svg width=\"42\" height=\"44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M20.992 0C19.966.22 10.937 1.406 9.813 1.97c-.259.52-.8 2.145-.972 2.402-.725.157-3.666.718-3.85.826-.104.312-.78 1.645-.935 1.8-.623.157-3.526.697-3.889.958C-.04 9.205-.83 21.7 4.355 29.87 9.539 38.04 18.607 43.479 20.992 44h.019c2.385-.521 11.434-5.96 16.619-14.13 5.183-8.17 4.414-20.666 4.206-21.915-.364-.26-3.267-.801-3.889-.957-.155-.156-.83-1.49-.934-1.801-.185-.108-3.124-.67-3.851-.826-.172-.257-.713-1.881-.972-2.402C31.07 1.408 22.032.224 20.992 0Zm0 3.19c.889.19 8.614 1.227 9.571 1.707.221.445.677 1.826.823 2.046.62.133 3.15.602 3.309.694.088.266.651 1.424.785 1.557.532.133 3.017.585 3.327.807.178 1.068.843 11.743-3.589 18.726-4.431 6.983-12.169 11.639-14.207 12.083h-.019c-2.039-.444-9.776-5.1-14.207-12.083C2.354 21.744 3.019 11.068 3.195 10c.311-.223 2.796-.674 3.328-.807.134-.133.697-1.29.785-1.557.158-.092 2.67-.561 3.29-.694.147-.22.62-1.6.842-2.046.96-.482 8.675-1.52 9.552-1.707Z\"/><path d=\"M22.413 6.605c-.291.029-.335.233-.337.319-.06 9.994-.031 20.598-.112 30.865.066.325.582-.174.879-.337 3.777-2.084 15.557-13.536 8.786-17.638 5.185-3.403 4.26-6.651 1.963-8.425C28.84 7.72 23.418 6.81 22.787 6.642a1.036 1.036 0 0 0-.374-.037Zm3.16 4.109c.073-.04 3.119 1.093 4.785 2.233 1.91 1.306 1.263 2.562.15 3.32-.606.415-4.348 3.113-4.973 3.266-.014-.52-.017-6.391.037-8.82Zm2.784 11.427c.418.013.814.147 1.103.45.259.248 1.398 1.48-1.028 5.01-.903 1.6-2.797 3.608-3.01 3.809-.025.007-.036-.033-.056-.019.02-1.147-.01-6.702.056-8.256.135-.07 1.684-1.033 2.935-.994ZM9.537 10.204c-.31.133-2.955 1.823-3.222 2.09-.073 2.356.556 8.712 2.874 13.674.293.627.612 1.216.956 1.748.661 1.146.698 1.055 1.468-.042.533-.723 1.301-1.796 1.494-2.017.265.89 1.983 6.436 4.398 9.788 1.071 1.487 2.716 2.892 2.709 2.313-.066-5.663-.227-30.18-.05-31.18-.713-.016-3.05.29-3.512.53-.039.897.321 17.708.1 19.62-1.638-4.004-2.196-14.57-1.873-18.928-.886.177-3.046 1.047-3.356 1.359-.399.8.145 9.579.711 12.525-.193.305-.75 1.135-.839 1.268-1.12-2.024-2.192-8.281-1.858-12.748Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h42v44H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-uuqabk\",\"data-framer-name\":\"loreqal\",fill:\"black\",intrinsicHeight:19,intrinsicWidth:106,layoutDependency:layoutDependency,layoutId:\"XQUWpbP81\",svg:'<svg width=\"106\" height=\"19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M74.442 17.11h-2.637L79.54 3h3.039l7.735 14.11h-2.671l-2.026-3.714h-9.133l-2.042 3.715Zm10.197-5.45-3.614-6.585-3.615 6.586h7.23ZM62.376 2.627l1.798-1.93h3.999l-5.797 1.93ZM25.758.55c5.71 0 10.338 3.958 10.355 8.84 0 4.882-4.627 8.84-10.355 8.84-5.727 0-10.354-3.958-10.354-8.84S20.049.55 25.758.55ZM70.74 3.015V4.59H59.564V9h8.347v1.654h-8.347v4.882H70.81v1.606H57.224V3.015H70.74ZM48.755 3c2.672 0 4.855 1.85 4.855 4.104 0 1.962-1.66 3.617-3.86 4.006l4.698 6.018h-2.759l-4.627-5.92h-6.2v5.92H38.75V2.999h10.005Zm-22.997-.827c-4.295 0-7.77 3.228-7.77 7.218 0 3.99 3.475 7.218 7.77 7.218 4.296 0 7.77-3.228 7.77-7.218 0-3.99-3.491-7.218-7.77-7.218ZM48.755 4.67h-7.77v4.866h7.753l.14-.016.14-.017.139-.032.14-.033.14-.032.122-.049.122-.048.122-.049.122-.065.123-.065.104-.065.21-.162.087-.08.087-.082.088-.097.087-.098.07-.097.07-.097.07-.098.104-.194.053-.098.07-.194.035-.114.017-.113.017-.114.018-.113v-.455l-.017-.113-.018-.114-.017-.113-.035-.097-.035-.098-.035-.097-.053-.097-.104-.195-.07-.097-.07-.098-.07-.097-.087-.097-.088-.098-.087-.08-.087-.082-.21-.162-.104-.065-.123-.065-.122-.065-.122-.048-.122-.05-.123-.048-.14-.032-.139-.033-.28-.032-.122-.016ZM.282 17.143V3.015H2.22v12.587h11.49v1.541H.282Zm91.132 0h13.638v-1.606h-11.49V3.015h-2.13v14.128h-.018Zm-81.65-9.18h1.798l2.69-4.85h-2.288l-2.2 4.85Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xi2ms1\",\"data-framer-name\":\"Neom\",fill:\"black\",intrinsicHeight:19,intrinsicWidth:85,layoutDependency:layoutDependency,layoutId:\"MvMpJu0a_\",svg:'<svg width=\"85\" height=\"19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.941.777v12.61L2.461.776H.75v17.225h2.507V5.393l10.367 12.61h1.709V.776H12.94Zm12.304 0v17.225h10.14v-2.364h-7.633V9.896h5.696V7.532h-5.696v-4.39h7.405V.777h-9.912ZM51.448.552c4.899-.112 9 3.715 9.228 8.556.114 4.841-3.76 8.894-8.659 9.12-4.898.112-9-3.716-9.227-8.557v-.225C42.676 4.718 46.435.777 51.22.665c0-.113.114-.113.228-.113Zm0 15.311c3.645.225 6.721-2.477 6.95-6.08.227-3.602-2.507-6.641-6.153-6.867-3.645-.225-6.721 2.477-6.95 6.08v.338c-.227 3.377 2.393 6.304 5.925 6.53h.228Zm25.975-1.576H75.6l-5.013-7.88v11.595h-2.506V.777h1.709l6.721 10.47L83.233.777h1.709v17.225h-2.507V6.406l-5.012 7.881Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-x7cbht\",\"data-framer-name\":\"google\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:81,layoutDependency:layoutDependency,layoutId:\"e7pFNA1lb\",svg:'<svg width=\"81\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M10.76.944h.712c2.47.053 4.898 1.046 6.643 2.804-.644.658-1.302 1.289-1.933 1.946-.98-.885-2.16-1.57-3.449-1.811-1.905-.403-3.958-.04-5.555 1.046-1.745 1.14-2.926 3.073-3.18 5.14-.282 2.04.295 4.187 1.623 5.77a7.183 7.183 0 0 0 5.234 2.577c1.878.107 3.838-.47 5.206-1.785 1.074-.926 1.57-2.335 1.732-3.704-2.228 0-4.456.014-6.683 0v-2.764h9.38c.483 2.966-.215 6.307-2.47 8.427-1.502 1.503-3.582 2.39-5.703 2.564-2.053.2-4.173-.188-5.998-1.181-2.187-1.168-3.932-3.14-4.79-5.462a9.888 9.888 0 0 1-.068-6.697c.684-1.959 2-3.69 3.69-4.898 1.624-1.194 3.597-1.852 5.61-1.972Zm53.813.697h2.872v19.164c-.953 0-1.919.013-2.872-.014.014-6.374 0-12.762 0-19.15ZM26.878 8.284c1.771-.335 3.69.04 5.153 1.1a6.304 6.304 0 0 1 2.536 4.026c.362 1.866-.094 3.905-1.302 5.382-1.301 1.65-3.435 2.536-5.515 2.402-1.906-.108-3.758-1.06-4.885-2.617-1.275-1.718-1.583-4.08-.885-6.093.697-2.16 2.67-3.81 4.898-4.2Zm.402 2.55a3.607 3.607 0 0 0-1.879 1.194c-1.301 1.557-1.22 4.093.215 5.542.819.832 2.053 1.222 3.194.994 1.06-.188 1.986-.9 2.496-1.839.886-1.597.63-3.798-.725-5.046-.872-.805-2.147-1.14-3.3-.845Zm13.822-2.55c2.027-.389 4.241.175 5.757 1.597 2.47 2.214 2.738 6.36.631 8.91-1.275 1.611-3.341 2.497-5.381 2.403-1.946-.054-3.865-1.02-5.02-2.617-1.3-1.758-1.583-4.174-.844-6.227.738-2.093 2.67-3.69 4.857-4.066Zm.403 2.55a3.669 3.669 0 0 0-1.879 1.18c-1.288 1.53-1.234 4.027.148 5.49.818.872 2.093 1.301 3.274 1.06a3.682 3.682 0 0 0 2.496-1.839c.873-1.61.618-3.811-.751-5.06a3.597 3.597 0 0 0-3.288-.831Zm11.662-1.772c1.543-.966 3.596-1.234 5.26-.402.523.228.953.617 1.369 1.006.013-.362 0-.738.013-1.113.9.013 1.799 0 2.711.013v11.836c-.013 1.785-.47 3.677-1.758 4.979-1.409 1.436-3.57 1.878-5.515 1.583-2.08-.308-3.892-1.825-4.697-3.744.805-.39 1.65-.698 2.482-1.06.47 1.1 1.423 2.04 2.617 2.254 1.194.215 2.577-.08 3.355-1.073.832-1.02.832-2.416.792-3.664-.617.604-1.329 1.141-2.188 1.342-1.865.524-3.918-.12-5.354-1.382-1.45-1.261-2.308-3.207-2.228-5.14.04-2.187 1.275-4.294 3.14-5.435Zm2.777 1.718a3.53 3.53 0 0 0-2.107 1.221c-1.26 1.503-1.26 3.905.014 5.382a3.51 3.51 0 0 0 3.02 1.234c1.06-.107 2.04-.778 2.563-1.704.885-1.57.738-3.704-.457-5.073a3.302 3.302 0 0 0-3.033-1.06Zm14.95-1.033c1.61-1.503 4.093-2.013 6.16-1.221 1.959.738 3.207 2.603 3.837 4.522-2.912 1.208-5.81 2.402-8.722 3.61.402.765 1.02 1.463 1.852 1.744 1.167.416 2.563.269 3.542-.51.39-.295.698-.684.993-1.06.738.497 1.477.98 2.215 1.477-1.047 1.57-2.805 2.67-4.697 2.845-2.094.255-4.321-.55-5.677-2.188-2.227-2.576-2.013-6.898.497-9.22Zm1.436 2.482c-.457.658-.644 1.463-.631 2.255 1.946-.805 3.892-1.61 5.838-2.429-.323-.751-1.1-1.208-1.893-1.329-1.275-.228-2.603.457-3.314 1.503Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.91 .103)\" d=\"M0 0h79.981v27.783H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-8lqvpt\",\"data-framer-name\":\"samsung\",fill:\"black\",intrinsicHeight:18,intrinsicWidth:122,layoutDependency:layoutDependency,layoutId:\"oVIsaV14v\",svg:'<svg width=\"122\" height=\"18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M66.695 8.364s-1.174-.727-1.9-1.008c0 0-2.249-1.042-2.695-1.538 0 0-.876-.825-.363-1.785 0 0 .215-.627 1.14-.627 0 0 1.206.066 1.206 1.057V5.86h4.32l-.007-2.06S68.728.43 63.307.281c0 0-4.264-.28-5.486 2.017 0 0-.48.512-.48 2.296v1.29s-.05 1.487.71 2.446c0 0 .43.628 1.487 1.321 0 0 2.149 1.157 3.438 1.82 0 0 1.3.743 1.13 1.925 0 0-.106 1.214-1.363 1.164 0 0-1.15-.051-1.15-1.242v-1.397H56.99v2.03s-.129 3.88 5.787 3.88c0 0 5.652.115 5.916-3.982v-1.653c-.001 0 .2-2.51-1.998-3.833ZM44.578.765 43.13 9.832h-.338L41.41.846h-7.216l-.362 16.42h4.273l.05-12.371h.337l2.265 12.368h4.495L47.49 4.9h.297l.104 12.367h4.295l-.463-16.5h-7.145ZM19.143.834l-2.842 16.413h4.6L22.584 4.52h.379l1.683 12.726h4.599L26.403.834h-7.26Zm96.516 7.304v2.421h1.18v2.599c0 1.27-1.086 1.294-1.086 1.294-1.32 0-1.27-1.207-1.27-1.207v-8.99c0-.926 1.171-.976 1.171-.976 1.124 0 1.132 1.105 1.132 1.105V5.75h4.331c.141-2.669-.391-3.315-.391-3.315-1.074-2.412-5.138-2.28-5.138-2.28-6.245 0-5.552 4.792-5.552 4.792v8.692c.134 4.495 6.288 4.039 6.392 4.035 2.737-.303 3.564-1.174 3.564-1.174.761-.565.957-1.348.957-1.348.217-.456.272-1.908.272-1.908V8.138h-5.562Zm-14.355 2.671h-.188L96.721.77h-5.258v16.498h4.28L95.485 7.23h.191l4.553 10.038h5.099V.768h-4.334l.309 10.041Zm-20.288 2.348s.062 1.354-1.193 1.354c0 0-1.32.07-1.32-1.32L78.489.778h-4.694v12.313s-.48 4.66 6.094 4.66c0 0 5.714.068 5.714-4.446V.78h-4.587v12.377ZM10.195 8.363s-1.173-.727-1.9-1.007c0 0-2.247-1.041-2.693-1.538 0 0-.876-.827-.362-1.784 0 0 .214-.628 1.139-.628 0 0 1.206.066 1.206 1.057V5.86h4.322l-.008-2.06s.33-3.37-5.09-3.518c0 0-.407-.027-1.006.004 0 0-3.283.176-4.457 1.977-.007.013-.017.023-.023.035 0 0-.48.512-.48 2.297v1.29s-.05 1.487.711 2.446c0 0 .43.628 1.487 1.321 0 0 2.148 1.157 3.437 1.82 0 0 1.302.74 1.13 1.925 0 0-.106 1.214-1.362 1.164 0 0-1.15-.051-1.15-1.242v-1.398H.493v2.031s-.128 3.88 5.787 3.88c0 0 5.65.115 5.916-3.982V12.2c0-.002.198-2.515-2-3.837Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-18fwhss\",\"data-framer-name\":\"apple\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:39,layoutDependency:layoutDependency,layoutId:\"MJqp4KIVk\",svg:'<svg width=\"39\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.189 10.88c2.101 0 4.736-1.439 6.304-3.357C27.914 5.785 28.95 3.357 28.95.929c0-.33-.03-.66-.089-.929-2.338.09-5.15 1.589-6.837 3.597-1.332 1.528-2.546 3.926-2.546 6.384 0 .36.06.72.09.839.147.03.384.06.62.06Zm-7.4 36.266c2.871 0 4.144-1.948 7.726-1.948 3.64 0 4.44 1.889 7.636 1.889 3.137 0 5.239-2.938 7.222-5.815 2.22-3.297 3.137-6.534 3.196-6.684-.207-.06-6.215-2.548-6.215-9.531 0-6.055 4.735-8.782 5.002-8.992-3.138-4.556-7.903-4.676-9.205-4.676-3.522 0-6.393 2.159-8.199 2.159-1.953 0-4.528-2.039-7.577-2.039C6.574 11.51.684 16.365.684 25.536c0 5.695 2.19 11.72 4.883 15.616 2.31 3.297 4.322 5.994 7.222 5.994Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]})})});});const css=['.framer-dbBWE[data-border=\"true\"]::after, .framer-dbBWE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dbBWE.framer-570k4h, .framer-dbBWE .framer-570k4h { display: block; }\",\".framer-dbBWE.framer-1hw9mj9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 88px; }\",\".framer-dbBWE .framer-1nod8zd { aspect-ratio: 2.861111111111111 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 89px; }\",\".framer-dbBWE .framer-d36p0i { aspect-ratio: 3.206896551724138 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 83px; }\",\".framer-dbBWE .framer-18iv48r { aspect-ratio: 1.3225806451612903 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 37px; }\",\".framer-dbBWE .framer-ezxyyh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 34px; }\",\".framer-dbBWE .framer-1nmran4 { aspect-ratio: 3.2962962962962963 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 79px; }\",\".framer-dbBWE .framer-e7cm4c { aspect-ratio: 0.9545454545454546 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 32px; }\",\".framer-dbBWE .framer-uuqabk { aspect-ratio: 5.578947368421052 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 106px; }\",\".framer-dbBWE .framer-xi2ms1 { aspect-ratio: 4.473684210526316 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 76px; }\",\".framer-dbBWE .framer-x7cbht { aspect-ratio: 2.892857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 81px; }\",\".framer-dbBWE .framer-8lqvpt { aspect-ratio: 6.777777777777778 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 108px; }\",\".framer-dbBWE .framer-18fwhss { aspect-ratio: 0.8125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); position: relative; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dbBWE.framer-1hw9mj9 { gap: 0px; } .framer-dbBWE.framer-1hw9mj9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dbBWE.framer-1hw9mj9 > :first-child { margin-left: 0px; } .framer-dbBWE.framer-1hw9mj9 > :last-child { margin-right: 0px; } }\",\".framer-dbBWE.framer-v-zdvnf8.framer-1hw9mj9 { width: 36px; }\",\".framer-dbBWE.framer-v-zdvnf8 .framer-18fwhss, .framer-dbBWE.framer-v-5ecjzt .framer-e7cm4c, .framer-dbBWE.framer-v-1oo2z7s .framer-ezxyyh { height: var(--framer-aspect-ratio-supported, 34px); }\",\".framer-dbBWE.framer-v-el925z.framer-1hw9mj9 { width: 116px; }\",\".framer-dbBWE.framer-v-el925z .framer-8lqvpt { height: var(--framer-aspect-ratio-supported, 16px); }\",\".framer-dbBWE.framer-v-83wjjv.framer-1hw9mj9 { width: 87px; }\",\".framer-dbBWE.framer-v-1r28iwv.framer-1hw9mj9 { width: 85px; }\",\".framer-dbBWE.framer-v-1r28iwv .framer-xi2ms1 { height: var(--framer-aspect-ratio-supported, 17px); }\",\".framer-dbBWE.framer-v-12qkb36.framer-1hw9mj9 { width: 118px; }\",\".framer-dbBWE.framer-v-1i8qvut.framer-1hw9mj9 { height: min-content; min-height: 32px; width: 10px; }\",\".framer-dbBWE.framer-v-5ecjzt.framer-1hw9mj9 { width: 42px; }\",\".framer-dbBWE.framer-v-1oo2z7s.framer-1hw9mj9, .framer-dbBWE.framer-v-1ya4hvt.framer-1hw9mj9 { width: 44px; }\",\".framer-dbBWE.framer-v-1ya4hvt .framer-18iv48r { height: var(--framer-aspect-ratio-supported, 28px); }\",\".framer-dbBWE.framer-v-260q0o.framer-1hw9mj9 { width: 93px; }\",\".framer-dbBWE.framer-v-260q0o .framer-d36p0i { order: 0; }\",\".framer-dbBWE.framer-v-5b9wsg.framer-1hw9mj9 { width: 102px; }\",\".framer-dbBWE.framer-v-5b9wsg .framer-1nod8zd { height: var(--framer-aspect-ratio-supported, 31px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70\n * @framerIntrinsicWidth 88\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"d013BDOd4\":{\"layout\":[\"fixed\",\"fixed\"]},\"YRiuEJJ0T\":{\"layout\":[\"fixed\",\"fixed\"]},\"qyLxvubcK\":{\"layout\":[\"fixed\",\"fixed\"]},\"LGI8Srx_8\":{\"layout\":[\"fixed\",\"fixed\"]},\"kq9RzDI8H\":{\"layout\":[\"fixed\",\"fixed\"]},\"hO6TuUKnr\":{\"layout\":[\"fixed\",\"auto\"]},\"umzo_iIog\":{\"layout\":[\"fixed\",\"fixed\"]},\"hq0oDSQ4b\":{\"layout\":[\"fixed\",\"fixed\"]},\"g0vFMfvRd\":{\"layout\":[\"fixed\",\"fixed\"]},\"SiFHIO6mr\":{\"layout\":[\"fixed\",\"fixed\"]},\"KsgdemzSz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerMWHHc1r3E=withCSS(Component,css,\"framer-dbBWE\");export default FramerMWHHc1r3E;FramerMWHHc1r3E.displayName=\"neflix\";FramerMWHHc1r3E.defaultProps={height:70,width:88};addPropertyControls(FramerMWHHc1r3E,{variant:{options:[\"BJb0FiEnr\",\"d013BDOd4\",\"YRiuEJJ0T\",\"qyLxvubcK\",\"LGI8Srx_8\",\"kq9RzDI8H\",\"hO6TuUKnr\",\"umzo_iIog\",\"hq0oDSQ4b\",\"g0vFMfvRd\",\"SiFHIO6mr\",\"KsgdemzSz\"],optionTitles:[\"Netflix\",\"Apple\",\"Samsung\",\"Google\",\"Neom\",\"Loreal\",\"Space\",\"WB\",\"HP\",\"Chanel\",\"Amazon\",\"21stcentury fox\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMWHHc1r3E,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMWHHc1r3E\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"88\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d013BDOd4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YRiuEJJ0T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qyLxvubcK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LGI8Srx_8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kq9RzDI8H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hO6TuUKnr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"umzo_iIog\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hq0oDSQ4b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g0vFMfvRd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SiFHIO6mr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KsgdemzSz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"70\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MWHHc1r3E.map"],
  "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", "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", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "SVG", "css", "FramerMWHHc1r3E", "withCSS", "MWHHc1r3E_default", "addPropertyControls", "ControlType", "addFonts"]
}
