{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framerusercontent.com/modules/iYbcT0QrP8Tl91QGmrZb/lNCT33NWiKR3nhOFZHff/q84F58Lx9.js", "ssg:https://framerusercontent.com/modules/AtXnOICGnBtUjjYVTZeU/fq38XDSzsTg81sk4p5Pm/k4kZvcZxh.js", "ssg:https://framerusercontent.com/modules/LCaI8c6VHFCYwUzCYJu0/8Cgdx2LU95zrR76uqRGu/UOWn5bxOu.js", "ssg:https://framerusercontent.com/modules/vC36g8WQRuaUgP3J9I5J/rme14Wnvziy0EWxgcnAH/augiA20Il.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 (32b4767)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"mZAUCQUML\",\"aU_QoEzt8\"];const serializationHash=\"framer-cTt42\";const variantClassNames={aU_QoEzt8:\"framer-v-llf1qd\",mZAUCQUML:\"framer-v-ipralj\"};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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Row 1\":\"mZAUCQUML\",\"Row 2\":\"aU_QoEzt8\"};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:\"mZAUCQUML\"};};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:\"mZAUCQUML\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"aU_QoEzt8\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"aU_QoEzt8\")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(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ipralj\",className,classNames),\"data-framer-name\":\"Row 1\",layoutDependency:layoutDependency,layoutId:\"mZAUCQUML\",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:{boxShadow:\"0px 0.6021873017743928px 3.010936508871964px -0.3333333333333333px rgba(0, 0, 0, 0.05903), 0px 2.288533303243457px 11.442666516217285px -0.6666666666666666px rgba(0, 0, 0, 0.08433), 0px 10px 50px -1px rgba(0, 0, 0, 0.2)\",...style},...addPropertyOverrides({aU_QoEzt8:{\"data-framer-name\":\"Row 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16w0q1b\",layoutDependency:layoutDependency,layoutId:\"RAZ11s1Jb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wxdmmx-container\",layoutDependency:layoutDependency,layoutId:\"wVc4ayAqX-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:3,fadeWidth:48,overflow:false},gap:56,height:\"100%\",hoverFactor:1,id:\"wVc4ayAqX\",layoutId:\"wVc4ayAqX\",padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ca4ec4\",layoutDependency:layoutDependency,layoutId:\"km7NqNduU\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15cud0z\",\"data-framer-name\":\"coors_light_1\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:50,layoutDependency:layoutDependency,layoutId:\"SETABVyeP\",svg:'<svg width=\"50\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"m46.985 15.14-.837-.085c.604-.248 1.21-.907 1.446-1.69.323-.254 1.033-.411 1.584-.389L50 11.31l-.776-1.782a3.34 3.34 0 0 0-1.396-.159c-.126-1.67-1.24-3.582-1.144-4.09l.004-.018.002-.019c.036-.376.465-.664.817-.838l.346-.172-.143-.364c-.123-.309-1.01-2.335-2.156-2.746l-.395.182c-1.57.709-2.788 2.088-3.773 3.345-.536.712-1.063 1.414-1.59 2.129-.195-.937-.872-1.698-1.312-2.4.028-.053.054-.108.084-.162.249-.476.653-1.076.364-1.905-.119-.327-.691-1.25-1.114-1.758-.398-.55-.828-.576-1.253-.54-.557.077-.853.327-1.096.644-.42.524-.602 1.201-.54 2.011-.37.623-1.317 1.5-1.888 2.23l-.73-.693c-.679-.616-1.689-.882-2.64-.747l-.006.001-.011.001c-1.703.292-3.298 1.536-4.423 3.868l-1.737-1.335a3.107 3.107 0 0 0-.747-.421c-.844-.305-1.852-.203-2.789.338-.276-.8-1.137-2.645-2.012-3.536-1.147-1.166-3.167-1.456-4.92-.893-4.518 1.287-7.727 6.047-8.852 10.753-.668-.839-1.656-1.173-2.686-.764-1.649.655-1.867 2.638-.952 3.975.445.65.893 1.092 1.208 1.412.293.297.896.557 1.52.594.109 2.73.905 4.235 1.952 5.255.929.905 2.413 1.683 4.028 2.012-.726.53-2.384 1.74-3.513 2.67l-.11 2.6.892.387-.244 6.345-.706.603-.13 2.975 1.894.697a80.14 80.14 0 0 1 6.552-5.218c.191-.138.407-.278.586-.405l-.006-.867.694.416c1.316-.903 2.62-1.636 4.117-2.458v-1.561c1.027.52 2.694.45 4.56-.277.757-.289 2.364-1.022 4.147-2.07l.177-.102.396.368c1.463-.392 2.938-.67 4.655-.921 0 0 .01-.725.01-1.06l.74.96a56.703 56.703 0 0 1 5.384-.404l.01-1.19.87 1.151c2.024-.023 4.05.046 6.069.206 0 0 .02-2.206.005-2.573l-.905-1.145-.274-.029-.02-4.296.696.901 2.01.181-.004-4.416-.811-1.046Zm-31.64-1.104c-.786 1.187-3.274 4.839-5.355 4.383-.465-1.07-.402-2.657-.117-3.725.88-.555 1.814-1.28 2.355-1.827.488.767 1.64.976 2.605.868.184-.007.373-.036.565-.081-.02.127-.038.254-.053.382Zm-.611-5.554c-.124-.502.212-1.045.824-1.324l-.742-1.184a2.445 2.445 0 0 0-.7-.356c.379-.74 1.152-1.205 1.915-1.141.53 1.115.076 3.251-1.297 4.005Zm1.36 11.87c.41-.362.768-.907 1.07-1.477.296.254.618.417.85.5-.52.252-1.92.976-1.92.976Zm4.17-6.548c.083-.841.351-1.94.766-2.73l.07-.14c.169.126.374.221.626.277-.372 1.082-.884 2.01-1.463 2.593Zm2.954 3.357c.728-.46 1.438-1.586 1.676-2.164.28.696.973 1.125 1.564 1.278-.974.165-2.307.552-3.24.886Zm5.654-6.069a7.083 7.083 0 0 1 .922-2.613c.2.103.41.197.66.25-.367 1.006-.993 1.968-1.582 2.363Zm2.418 4.23c.522-.46 1.18-1.323 1.589-2.046.37.615 1.102 1.373 1.897 1.628-1.03.07-2.483.236-3.486.418Zm7.288-.606c.618-.328 1.15-.941 1.8-1.807.273.686.813 1.368 1.699 1.835a38.178 38.178 0 0 0-3.498-.028Zm5.176-5.083s-.421-.978-.595-1.198l.522-.669c.168.698.31 1.402.073 1.867Z\" fill=\"#000\"/><path d=\"M11.216 24c-1.67 1.12-3.789 2.668-4.964 3.661l-.074 1.79s.752-.616.933-.741l-.331 8.304c-.167.143-.667.593-.667.593l-.08 1.894a60.059 60.059 0 0 1 6.867-5.504l.048-3.765-1.49 1.382-.056.857-1.444 1.061.265-7.176.915-.645.078-1.712Zm1.96 9.81c1.606-1.116 3.52-2.21 4.786-2.878 0-.343-.034-1.554-.034-1.554s-.613.307-.92.469l.096-7.77.957-.475.03-1.564c-1.33.64-3.743 1.91-5.197 2.857l-.078 1.698s.914-.58 1.111-.695l-.096 7.816-.594.394-.06 1.703Z\" fill=\"#C1C3C5\"/><path d=\"M26.748 16.849c-.946.16-4.37.817-6.621 2.886-1.532 1.407-2.345 3.16-2.332 5.567.041 1.716.544 2.896 1.496 3.518.992.646 2.422.619 4.026-.08.005 0 .267-.12.267-.12.753-.34 1.787-.807 3.164-1.644l.166-.101.073-5.575-.442.132a35.953 35.953 0 0 0-3.411 1.21l-.146.06-.002 1.95s.776-.31.928-.376l-.047 1.574c-.882.565-1.646.728-2.154.457-.47-.252-.742-.896-.748-1.763-.028-1.282.479-2.522 1.34-3.26 1.26-1.08 2.311-1.348 3.016-1.484v.86l1.423-.425.004-3.386Zm19.665-1.215a74.616 74.616 0 0 0-8.6-.298v3.353c0 .002 1.34 0 1.34 0l.002-1.109a88.355 88.355 0 0 1 1.362-.001l.016 6.677c-.384-.004-1.153.01-1.153.01v1.323c1.95-.056 4.164-.023 5.492.065l.004-1.309c-.002 0-1.016-.04-1.16-.05l-.002-6.592s1.081.072 1.363.08l.007 1.047c0-.002 1.33.09 1.33.09v-3.286Zm-14.092 10.56v-1.372s-.674.101-.954.153v-2.869a44.884 44.884 0 0 1 2.829-.372v2.86l-.97.117v1.35a56.62 56.62 0 0 1 5.2-.444l-.004-1.318s-.843.029-1.027.04l-.008-8.988c-1.296.056-2.824.16-4.196.324v1.348l1.008-.12v2.568c-.76.082-2.109.253-2.846.364v-2.55l.974-.162.002-1.357a50.234 50.234 0 0 0-5.154.983v1.43s.708-.177 1.018-.253l-.01 7.68c-.042.013-.89.227-.89.227v1.417a52.354 52.354 0 0 1 5.028-1.055Z\" fill=\"#C1C3C5\"/><path d=\"M10.853 24.634c-1.428 1.03-3.189 2.28-4.27 3.206l-.075.906.921-.748-.331 9.155c-.126.13-.462.416-.646.603l-.058.92a49.635 49.635 0 0 1 6.173-4.889l.025-2.732c-.213.206-.536.51-.8.753l-.057.852c-.697.472-1.395.997-2.082 1.525l.265-8.007s.682-.463.884-.63l.051-.914Zm3.286 7.252-.594.408-.04.893c1.092-.686 2.946-1.8 4.149-2.502l-.022-.811c-.312.176-.619.358-.941.546l.096-8.51c.191-.11.62-.346.922-.514l.037-.84c-1.557.834-3.038 1.604-4.525 2.53l-.042.887 1.05-.67-.09 8.583ZM25.667 20.18l.733-.215v-2.699c-.103.037-2.37.412-4.55 1.614-1.869 1.119-3.606 2.907-3.71 6.418.091 3.902 2.685 4.144 5.04 3.121a29.677 29.677 0 0 0 3.393-1.79l.066-4.909a46.878 46.878 0 0 0-3.325 1.214l.001 1.184c.453-.195.491-.208.945-.368l-.047 2.287c-2.27 1.551-3.58.503-3.592-1.495-.076-3.4 3.02-5 5.046-5.247v.885Zm17.704-2.838c.644.04 1.407.07 2.049.12v1.024c.2.017.42.031.67.045-.001-.803.002-1.793 0-2.594a66.114 66.114 0 0 0-7.932-.265v2.67c.173-.01.434-.003.652-.005v-1.079c.66-.01 1.36-.013 2.049-.003l.009 7.333c-.182-.002-.936.002-1.146.008v.627a83.658 83.658 0 0 1 4.804.06v-.615c-.336-.02-.818-.029-1.152-.037l-.003-7.29Zm-11.404-1.21c-1.455.215-3.057.506-4.445.877l-.002.747c.257-.062.69-.176.986-.224v8.346c-.306.075-.636.16-.87.22v.686a67.843 67.843 0 0 1 4.34-.931l.005-.654c-.321.052-.61.11-.916.167V21.83a56.9 56.9 0 0 1 3.441-.459v3.514c-.202.028-.728.084-.954.112v.646c1.44-.191 3.095-.313 4.555-.382l.002-.624c-.306.008-.754.032-1.034.049v-8.98a46.75 46.75 0 0 0-3.536.283v.665c.331-.039.669-.077.98-.109v3.204a89.617 89.617 0 0 0-3.457.458v-3.205c.305-.064.61-.112.905-.167v-.704Z\" fill=\"#fff\"/><path d=\"m12.383 31.626-.188.189-.034 1.698c-1.686 1.206-3.636 2.615-5.458 4.33-.01.134-.012.178-.031.29 1.964-1.866 4.034-3.324 5.676-4.513l.034-1.994Zm-3.168 2.97.265-8.117.206-.172L9.42 34.4l-.206.196Zm4.57-1.856c1.115-.73 2.477-1.523 3.634-2.18v-.23c-1.15.692-2.49 1.413-3.622 2.178l-.012.232Zm2.496-2.104.201-.142.092-8.509-.201.116-.092 8.535Zm7.26-7.085-.003.233c.47-.185.205-.088.73-.28v-.233l-.727.28Zm-1.76-2.787c-1.144.943-1.772 2.157-1.773 3.985-.002 2.057 1.38 2.963 2.983 2.425.335-.121.636-.322.878-.587a3.475 3.475 0 0 1-.613.31c-1.74.649-3.021-.305-3.021-2.319 0-1.886.71-2.906 1.546-3.814Zm4.387 5.827.064-4.469.197-.06-.065 4.412-.196.117Zm-.14-6.752c.003-1.624-.008-.647-.007-2.268.079-.013.12-.028.187-.038-.002 1.623.001.623-.001 2.243l-.178.063Zm8.488 1.146a64.228 64.228 0 0 0-3.83.518v3.95l.176-.042v-3.755a56.51 56.51 0 0 1 3.654-.505v-.166Zm-6.631 5.514a59.31 59.31 0 0 1 3.852-.84l-.004-.173c-1.23.222-2.612.527-3.844.82l-.004.193Zm5.94-1.12a63.158 63.158 0 0 1 4.05-.326v-.185c-1.355.078-2.809.177-4.047.33l-.003.181Zm-3.142-5.088V17.08l.168-.04v3.212l-.168.04Zm5.994-4.336v8.778l.19-.016v-8.783l-.19.02Zm8.72 1.121a89.496 89.496 0 0 0-2.416-.138l.004 7.688c.075-.006.124.014.2.009-.002-2.326-.002-5.178-.003-7.499.592.036 1.617.078 2.212.118l.004-.178Zm-5.413 7.936a66.707 66.707 0 0 1 4.29.058v-.172c-1.27-.076-3.038-.086-4.29-.066v.18ZM38.79 17.04c.536-.012 1.52-.01 2.084-.004.002-.084-.001-.087.001-.187a68.989 68.989 0 0 0-2.085-.005v.196Zm7.09 1.204V16.16l-.177-.01-.004 2.071.18.021Z\" fill=\"#C1C3C5\"/><path d=\"M9.002 10.827c.817-2.707 2.573-5.97 4.97-7.038.817-.363 1.844-.3 2.307.282.711.895.42 2.887-.334 3.92-.892 1.225-2.323 1.721-2.864.762-.498-.884.224-1.919 1.294-2.518-.896-.558-2.284-.295-2.992.45-.63.664-.958 1.546-.85 2.827-.481.502-.987.903-1.53 1.315Zm10.976 3.844c-.4.19-.83.154-1.126-.115-.824-.752-.12-3.102.828-4.782.2-.353.381-.693.59-.986.03.324.118.653.282.956.218.405.726 1.03 1.806 1.125-.46 1.581-1.378 3.324-2.38 3.802Zm2.012-5.777c-.122-.208-.158-.451-.072-.803.067-.273.397-.394.585-.167.22.265.248.752.185 1.34a.851.851 0 0 1-.698-.37Zm7.73 2.032c-1.178 1.333-2.342 1.08-2.383-.42-.028-1.048.546-2.95 1.544-4.124.012 1.172.79 1.841 2.194 2.03-.238.852-.917 2.017-1.356 2.514Zm1.018-4.253c-.473-.245-.423-1.098.084-1.028.31.042.546.634.552 1.105-.218.068-.476.005-.636-.077Zm15.833 3.367c.042-1.663-.741-3.088-1.135-4.591l-.014-.053c-.133-.509-.282-1.087-.177-1.515l.004-.019.003-.019c.068-.45.6-.758.826-.87 0 0 .202-.092.338-.167-.15-.488-.459-.935-.88-1.17-.06.025-.19.084-.19.084-1.486.67-2.622 1.969-3.613 3.218-.99 1.25-2.106 2.87-3.719 4.83-.576.7-1.033.961-1.308.664-.292-.316.403-1.235.813-1.99.312-.575.552-1.04.689-1.426.526-1.488-.147-2.583-.797-3.519a16.255 16.255 0 0 1-.362-.54c.267-.526.664-1.133.477-1.892l-.003-.012-.002-.011a.85.85 0 0 0-.326-.45.828.828 0 0 0-.53-.146h-.01l-.01.001c-.32.034-.597.201-.825.496-.374.467-.523 1.09-.438 1.845-.673 1.133-1.786 2.293-2.604 3.063a5.41 5.41 0 0 0-.254-.582c-.493-.975-1.591-1.525-2.749-1.363-1.594.225-3.095 1.55-4.122 3.648-.365.388-.86.788-1.32 1.095-.079-.994-.408-1.742-.981-2.23-.849-.723-2.028-.762-3.159-.104-.755.41-1.48 1.11-2.116 1.996.885-2.004.83-4.233-.35-5.515-1.024-1.11-2.855-1.463-4.602-.903-2.371.76-4.403 2.393-6.037 4.851-1.27 1.909-2.235 4.26-2.734 6.645-.98.411-1.366.197-1.373-.102-.01-.419.47-.57.937-.459-.358-1.114-1.567-1.366-2.477-.844-.792.454-1.183 1.33-.865 2.379.403 1.335 1.904 1.79 3.463 1.098-.377 2.32-.059 5.009 1.437 6.613 2.91 3.123 8.176.819 10.732-4.827.584 1.571 2.671 2.073 4.51.428 1.621-1.447 2.774-3.705 3.51-7.123.186-.092.359-.198.524-.309-.066.364-.112.732-.139 1.101-.187 2.32.65 3.48 1.909 3.933 1.09.393 2.463-.025 3.602-1.167 1.403-1.406 2.54-3.595 2.827-6.306 1.248-.973 2.423-2.191 3.192-3.336.564.837-.253 1.851-1.395 3.697-.988 1.598-1.61 2.992-1.517 4.11.075.898.77 1.533 1.655 1.64 1.619.195 2.973-1.068 4.343-2.73l.003-.005.003-.005c.323-.43.633-.864.935-1.294-.163.752-.097 1.415.286 2.196.481.982 1.617 1.665 2.952 1.572 1.183-.082 2.101-.722 2.606-1.623.384-.316 1.12-.459 1.68-.486l.87-1.64c-.714-.19-1.511-.026-1.993.14ZM43.94 6.66c.037.205.081.416.128.64.226 1.06.555 2.343-.203 2.96-.552.45-1.271.2-1.493-.22-.322-.611.08-1.447.356-1.745-.467-.195-1.061-.185-1.46.011a79.2 79.2 0 0 1 1.177-1.672c.37-.481.773-1.006 1.23-1.513.051.507.149.997.264 1.539ZM17.195 9.78a13.504 13.504 0 0 0-1.373 4.52c-1.01 1.546-3.556 5.194-5.966 4.65-1.821-.413-2.04-3.03-1.445-5.61.11-.074.24-.158.384-.249.548-.346 1.484-.902 2.465-1.802.53.729 1.526 1.084 2.46 1.027 1.287-.075 2.47-.827 3.475-2.536Z\" fill=\"#fff\"/><path d=\"M11.004 9.705c-.36-2.079.943-3.62 2.664-3.373-1.103.533-1.454 1.817-.955 2.639.649 1.072 2.31.932 3.519-.729.991-1.362 1.165-3.438.314-4.413-.62-.712-1.71-.841-2.752-.379-2.93 1.358-4.795 5.538-5.512 8.394 1.047-.682 1.896-1.263 2.722-2.139ZM21.01 7.43c-.648.494-1.355 1.576-1.729 2.259-1.198 2.192-1.55 4.264-.8 5.048.494.515 1.126.572 1.662.288.886-.468 1.886-1.658 2.748-4.565-2.392.278-2.547-2.146-1.881-3.03Zm1.084-.034c-.648.138-.844 1.157-.428 1.77.274.403.869.573 1.396.464.06-.632.117-1.345-.154-1.825-.184-.326-.498-.477-.814-.41Zm7.414-2.19c-1.65 1.298-2.557 3.554-2.576 5.26-.022 1.808 1.596 2.518 3.106.733.687-.81 1.33-2.132 1.564-3.242-1.613.236-2.949-1.026-2.094-2.75Zm1.438.064c-.423-.127-.759.115-.882.52-.147.482.036.918.465 1.154.398.22.943.237 1.26.068.023-.731-.316-1.586-.843-1.742Zm16.495 5.904c-.622.086-1.242.16-1.738.604-.522.826-1.345 1.412-2.325 1.475-1.161.076-2.15-.537-2.57-1.353-.444-.864-.403-1.998.049-2.65.226-.377.707-.81 1.264-.705-.729.976-.316 2.244.89 2.407.468.064.924-.12 1.22-.428 1-1.026.323-2.712.107-3.947-.175-.822-.32-1.549-.298-2.42-.73.69-1.31 1.437-1.917 2.228-1.09 1.494-2.069 3.03-3.209 4.554-1.04 1.303-2.437 2.806-3.996 2.578-.755-.11-1.3-.709-1.286-1.564.037-2.025 2.673-4.96 3.028-6.311.256-.978-.164-1.364-.491-1.942a15.43 15.43 0 0 1-3.599 3.882c-.293 2.597-1.5 5.056-2.728 6.252-.942.915-2.204 1.416-3.303.998-1.222-.464-1.601-1.842-1.52-3.426.053-.85.206-1.441.403-2.16-.484.375-.997.766-1.55 1.024-.326 2.556-1.918 5.872-3.591 7.205-1.832 1.456-3.762.561-3.983-1.286-2.937 6.64-7.824 8.144-10.324 5.726-1.632-1.58-1.902-4.835-1.445-7.034-1.464.73-3.184.694-3.568-.737-.48-1.787 1.61-2.6 2.426-1.612-.376.018-.747.229-.834.594-.174.733.676 1.263 2.159.58.845-4.276 3.501-9.817 8.507-11.423 1.672-.537 3.32-.258 4.288.878 2.114 2.48-.549 8.555-3.707 8.706-1.211.058-2.032-.459-2.498-1.21-1.511 1.48-2.71 2.024-3.26 2.431-.83 3.306-.253 5.927 1.794 6.273 2.311.391 4.514-2.13 6.378-4.895.366-3.436 2.25-6.724 4.192-7.773.978-.571 1.982-.557 2.694.05.68.577.881 1.569.843 2.633.592-.282 1.526-.94 2.05-1.553.83-1.722 2.178-3.26 3.859-3.493.933-.128 1.868.26 2.323 1.112.18.377.296.764.364 1.158 1.069-.965 2.5-2.395 3.264-3.706-.089-.6-.038-1.213.339-1.682.146-.19.318-.317.545-.34a.424.424 0 0 1 .278.074c.081.057.141.14.17.236.165.67-.284 1.229-.546 1.812.66 1.154 1.833 2.192 1.23 3.81-.498 1.337-1.342 2.3-1.616 3.19-.155.502.164 1.004.75 1.004.514 0 .981-.456 1.57-1.175.53-.647 2.683-3.488 3.53-4.613.947-1.207 2.067-2.47 3.462-3.099.196.114.311.315.388.508-.466.231-.966.627-1.05 1.176-.135.549.044 1.2.192 1.776.451 1.711 1.387 3.287 1.054 5.15.55-.337 1.373-.515 1.823-.464-.175.325-.306.608-.481.917Z\" fill=\"#CF4044\"/><path d=\"M46.569 27.017a.679.679 0 1 1 1.36.001.69.69 0 0 1-.198.485.67.67 0 0 1-.477.2.664.664 0 0 1-.485-.197.686.686 0 0 1-.2-.49Zm.686.572a.536.536 0 0 0 .393-.168.555.555 0 0 0 .152-.404.562.562 0 0 0-.154-.402.542.542 0 0 0-.785-.001.555.555 0 0 0-.156.403.561.561 0 0 0 .154.405.544.544 0 0 0 .396.167Zm-.143-.176h-.118v-.79h.296c.184 0 .274.069.274.225 0 .142-.087.203-.202.218l.222.347h-.132l-.206-.343h-.134v.343Zm.14-.444c.1 0 .189-.008.189-.129 0-.097-.088-.115-.17-.115h-.16v.245h.142v-.001Z\" fill=\"#000\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h50v41H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w6hu6n\",layoutDependency:layoutDependency,layoutId:\"XuH4m7HKW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-i19ukv\",\"data-framer-name\":\"Netflix_Logo_wine_1\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:86,layoutDependency:layoutDependency,layoutId:\"KAMZ8bn6q\",svg:'<svg width=\"86\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.6 22.55c-1.273.226-2.568.294-3.908.474L4.605 10.945v12.597c-1.273.135-2.434.316-3.64.496V.962H4.36l4.645 13.093V.962H12.6V22.55Zm7.035-13.137c1.384 0 3.506-.068 4.779-.068v3.606c-1.586 0-3.44 0-4.78.067v5.364c2.1-.136 4.2-.316 6.32-.384v3.47l-9.892.79V.961h9.893v3.606h-6.32v4.845Zm19.607-4.845h-3.707v16.585c-1.206 0-2.412 0-3.573.045V4.568h-3.707V.962h10.987v3.606Zm5.806 4.597h4.891v3.605h-4.89v8.18h-3.507V.963h9.983v3.606h-6.477v4.597Zm12.283 8.63c2.032.046 4.086.204 6.074.316v3.56c-3.193-.202-6.387-.405-9.647-.473V.962h3.573v16.834Zm9.089 4.125c1.139.067 2.345.135 3.506.27V.962H66.42V21.92ZM85.58.962l-4.533 10.975 4.534 12.1c-1.34-.18-2.68-.427-4.02-.653l-2.568-6.67-2.613 6.13c-1.295-.226-2.546-.294-3.84-.474l4.6-10.569L72.985.962h3.84l2.345 6.062L81.673.962h3.908Z\" fill=\"#D81F26\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nlms7b\",layoutDependency:layoutDependency,layoutId:\"pkqSaX4aF\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1q89rvx\",\"data-framer-name\":\"McLaren_Group_Logo_wine_1\",fill:\"black\",intrinsicHeight:13,intrinsicWidth:89,layoutDependency:layoutDependency,layoutId:\"yBUCk8YhP\",svg:'<svg width=\"89\" height=\"13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M78.802 12.774V9.359c0-2.129-1.052-2.723-4.084-2.723h-5.964v6.138h3.761V8.616h1.003c1.114 0 1.51.656 1.51 1.361v2.797h3.774ZM68.036 8.666v-.248c0-1.015-.582-1.782-3.205-1.782H60.97c-2.438 0-3.453.83-3.453 2.648v1.077c0 1.534 1.015 2.413 3.168 2.413h6.88v-1.807H62.01c-.545 0-.743-.173-.743-.581v-.062h4.319c1.534.012 2.45-.508 2.45-1.658Zm-3.564.148c0 .272-.111.433-.544.433h-2.649v-.235c0-.346.136-.582.57-.582h2.054c.334-.012.569.112.569.384ZM54.77 8.48h2.351V6.624h-4.826c-.78 0-1.262.42-1.262 1.089v5.048h3.75V8.48h-.013Zm-4.554 1.906V9.049c0-1.534-1.002-2.413-3.168-2.413h-6.731v1.782h5.407c.545 0 .743.173.743.594v.062h-4.319c-1.819 0-2.425.78-2.425 1.77v.197c0 .446.136.83.396 1.077.52.507 1.547.656 2.92.656h3.737c2.426-.012 3.44-.582 3.44-2.388Zm-3.761 0c0 .346-.137.581-.57.581h-2.03c-.346 0-.556-.099-.556-.371s.124-.446.557-.446h2.599v.236Zm-7.29 2.388v-1.856H36.27V5.646h-3.762v7.128h6.658Zm-13.562 0h6.064v-1.856h-4.962c-.483 0-.978-.272-.978-1.176v-.124c0-.804.408-1.126.94-1.126h5V6.636h-6.188c-2.511 0-3.539 1.101-3.539 2.784v.57c0 1.98 1.102 2.784 3.663 2.784Zm-8.192 0h3.762V5.646H18.97c-.903 0-1.546.384-2.165.916-.693.606-3.18 2.76-3.18 2.76V5.645h-2.216c-1.25 0-1.88.433-2.586.978-.47.383-7.858 6.15-7.858 6.15h4.48l4.418-3.638v3.638h3.588l3.96-3.613v3.613Z\" fill=\"#fff\"/><path d=\"M85.781.226c-1.93 0-4.653.582-7.61 1.658a38.5 38.5 0 0 0-7.536 3.713c1.546-.631 4.578-1.337 7.09-1.337 3.391 0 5.804 1.3 2.24 5.841C90.471 3.221 90.175.226 85.781.226Z\" fill=\"#FF8000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rw8qm9\",layoutDependency:layoutDependency,layoutId:\"ZQ7uFqFA7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-li7r74\",\"data-framer-name\":\"Hulu_Logo_wine_1\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:71,layoutDependency:layoutDependency,layoutId:\"AnCqOIjiI\",svg:'<svg width=\"71\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M43.475 24.106h5.577V.894h-5.577v23.212Zm-9.791-6.618c0 .815-.68 1.5-1.491 1.5H28.95c-.81 0-1.491-.685-1.491-1.5V8.132h-5.577v9.812c0 4.01 2.562 6.13 6.323 6.13h5.447c3.469 0 5.576-2.511 5.576-6.13V8.132h-5.576c.032 0 .032 9.063.032 9.356Zm31.353-9.356v9.356c0 .815-.681 1.5-1.492 1.5h-3.242c-.81 0-1.492-.685-1.492-1.5V8.132h-5.576v9.812c0 4.01 2.561 6.13 6.322 6.13h5.447c3.47 0 5.577-2.511 5.577-6.13V8.132h-5.544Zm-53.433 0H8.038c-1.265 0-1.88.326-1.88.326V.894H.58v23.18h5.544v-9.325c0-.815.68-1.5 1.491-1.5h3.243c.81 0 1.491.685 1.491 1.5v9.357h5.577V14c0-4.238-2.821-5.868-6.323-5.868Z\" fill=\"#1CE783\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:14.5,intrinsicWidth:46,pixelHeight:29,pixelWidth:92,src:\"https://framerusercontent.com/images/wvdQQzFmpmif12qtz2r5AXQzo5E.svg\"},className:\"framer-qyrdux\",\"data-framer-name\":\"VICE_LOGO_WHITE_e1617894696817_1\",layoutDependency:layoutDependency,layoutId:\"Qjx_9aHxe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13.5,intrinsicWidth:69,pixelHeight:27,pixelWidth:138,src:\"https://framerusercontent.com/images/bNAF1dQQqPNmD46UlpFY8URRz0.svg\"},className:\"framer-1ttnrxd\",\"data-framer-name\":\"Anheuser_Busch_New_1\",layoutDependency:layoutDependency,layoutId:\"eWJtwiKXd\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uti6uo\",layoutDependency:layoutDependency,layoutId:\"gPcsCa_ze\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cxf291\",\"data-framer-name\":\"Natgeo\",fill:\"black\",intrinsicHeight:23,intrinsicWidth:87,layoutDependency:layoutDependency,layoutId:\"X6VZHTLPO\",svg:'<svg width=\"87\" height=\"23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 22.52V.48h17.823v22.04H0Zm15.244-2.221V2.701H2.566v17.598h12.678Z\" fill=\"#FFD520\"/><path d=\"M29.666 10.366h-1.103c-1.445-1.763-2.884-3.516-4.317-5.499v5.499H23v-7.67h1.103c1.445 1.752 2.884 3.493 4.304 5.466V2.695h1.246v7.67h.013Zm2.89-3.032c.355-1.005.71-1.94 1.028-3.123.355 1.183.673 2.118 1.003 3.123h-2.03Zm.586-4.633-3.078 7.665h1.321l.773-2.091h2.678l.698 2.09h1.7l-2.809-7.67H33.18l-.037.006Zm5.538 7.665V3.727h-2.336V2.701h6.18v1.026h-2.336v6.639H38.66h.02Zm4.361 0v-7.67h1.514v7.67H43.04Zm6.205-.979c-1.589 0-2.15-1.51-2.15-2.977 0-1.468.623-2.763 2.15-2.763 1.526 0 2.143 1.349 2.143 2.763 0 1.413-.555 2.977-2.143 2.977Zm0 1.075c2.323 0 3.769-1.784 3.769-4.074 0-2.15-1.601-3.86-3.77-3.86-2.167 0-3.768 1.71-3.768 3.86 0 2.322 1.445 4.112 3.769 4.112v-.037Zm11.344-.096h-1.103c-1.445-1.763-2.884-3.516-4.317-5.499v5.499h-1.246v-7.67h1.103c1.445 1.752 2.884 3.493 4.305 5.466V2.695h1.245v7.67h.013Zm2.91-3.032c.354-1.005.71-1.94 1.027-3.123.355 1.183.673 2.118 1.003 3.123h-2.056.025Zm.585-4.633-3.071 7.67h1.32l.773-2.09h2.679l.697 2.09h1.701l-2.835-7.67h-1.264Zm4.541-.006h1.514v6.639h3.01v1.032h-4.524v-7.67ZM28.725 16.784v3.166a7.95 7.95 0 0 1-2.53.473c-2.616 0-4.267-1.753-4.267-4.01 0-2.091 1.651-3.924 4.318-3.924.771.004 1.523.21 2.155.591l-.492.909a3.7 3.7 0 0 0-1.626-.403c-1.626 0-2.729 1.107-2.729 2.848 0 1.742 1.246 2.892 2.58 2.892.367.014.733-.05 1.065-.188v-2.354h1.526Zm5.451-3.134h-2.542v2.102h2.492v1.032h-2.492v2.478h2.997v1.032h-4.523v-7.681h4.062v1.032l.006.005Zm4.697 5.676c-1.588 0-2.143-1.51-2.143-2.978 0-1.467.623-2.762 2.143-2.762 1.52 0 2.15 1.349 2.15 2.762 0 1.414-.561 2.978-2.15 2.978Zm0 1.075c2.324 0 3.77-1.784 3.77-4.074 0-2.15-1.602-3.86-3.77-3.86-2.167 0-3.768 1.71-3.768 3.86 0 2.311 1.445 4.096 3.768 4.096V20.4Zm11.09-3.617v3.166a7.95 7.95 0 0 1-2.53.473c-2.617 0-4.267-1.753-4.267-4.01 0-2.091 1.65-3.924 4.317-3.924.771.004 1.523.21 2.155.591l-.492.909a3.701 3.701 0 0 0-1.626-.403c-1.626 0-2.729 1.107-2.729 2.848 0 1.742 1.246 2.892 2.58 2.892a2.55 2.55 0 0 0 1.065-.188v-2.354h1.526Zm2.92-3.134h.674c.708-.06 1.34.386 1.41.998.01.08.008.16-.002.238.112.74-.492 1.416-1.348 1.513a1.758 1.758 0 0 1-.098.008l-.623.033v-2.795l-.012.005Zm3.863 6.638-1.763-3.176c.47-.226.862-.556 1.133-.957.27-.401.41-.858.406-1.322 0-1.49-1.053-2.215-2.753-2.215h-2.374v7.67h1.526v-2.892h.686l1.432 2.892h1.739-.032Z\" fill=\"#fff\"/><path d=\"M59.257 17.257c.355-1.005.71-1.94 1.028-3.123.355 1.182.673 2.112 1.003 3.123h-2.056.025Zm.585-4.644-3.07 7.67h1.326l.773-2.091h2.678l.698 2.091h1.7l-2.834-7.67h-1.271Zm6.978 0h-2.374v7.67h1.526v-2.887h.686c1.603.01 2.912-1.104 2.922-2.488v-.075c-.025-1.49-1.078-2.22-2.76-2.22Zm-.218 3.79-.623.031v-2.79h.685c.71-.054 1.336.398 1.399 1.01a.961.961 0 0 1-.004.227c.115.742-.489 1.423-1.348 1.522a1.814 1.814 0 0 1-.128.01l.019-.01Zm10.017 3.886h-1.526v-3.693h-3.165v3.692h-1.514v-7.675h1.514v2.945h3.165v-2.924h1.526v7.654Zm1.458 0v-7.676h1.514v7.67h-1.514v.005Zm8.366-6.279a3.57 3.57 0 0 0-1.563-.424c-1.552 0-2.68 1.107-2.68 2.848 0 1.742 1.247 2.892 2.717 2.892a3.224 3.224 0 0 0 1.526-.381l.418.951a4.323 4.323 0 0 1-2.006.537c-2.617 0-4.267-1.752-4.267-4.01 0-2.09 1.638-3.923 4.292-3.923.733.02 1.444.225 2.043.591l-.48.92Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ow4l04\",layoutDependency:layoutDependency,layoutId:\"T6LeWkLVr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1aiekgg\",\"data-framer-name\":\"Vogue_magazine_Logo_wine_1\",fill:\"black\",intrinsicHeight:23,intrinsicWidth:86,layoutDependency:layoutDependency,layoutId:\"kNscS7he4\",svg:'<svg width=\"86\" height=\"23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M25.484.674c-4.977.036-9.047 5.567-9.047 10.391 0 5.077 2.984 11.27 9.047 11.25 6.063-.02 9.21-6.687 9.21-11.25 0-5.04-4.234-10.426-9.21-10.39Zm0 .19c4.165 0 5.289 4.6 5.289 10.201 0 7.391-1.356 11.038-5.29 11.031-3.933-.007-5.212-2.991-5.212-11.03 0-5.037 1.048-10.202 5.213-10.202Zm10.853 10.338C36.315 5.712 40.708.85 44.427.609c1.344-.096 3.07.52 4.079.958.732.318 2.226-.143 2.492-.988h.144v7.478h-.144c0-.319-1.385-7.26-6.57-7.26-3.83 0-4.2 6.734-4.2 10.405 0 3.67.111 10.937 4.58 10.937 2.166 0 3.768-.948 4.184-2.864v-5.827h-1.818V13.2h7.045v.248H52.48v8.519h-.141s-.283-1.23-1.716-1.225c-1.832.005-3.56 1.597-5.666 1.577-5.57-.05-8.598-5.628-8.62-11.117ZM2.774 1.41H.581v-.247h7.683v.247H6.337l5.49 14.91c1.717-5.286 3.047-9.193 4.836-14.91h-1.906v-.247h4.057v.247h-1.848l-6.673 20.802L2.774 1.41Zm52.52 15.709L55.26 1.387h-2.088v-.236h7.692v.236h-2.087l.047 17.25c.462 1.975 1.283 3.474 4.089 3.497 2.805.022 4.713-1.66 5.422-3.96V1.388h-2.389v-.229h19.549l.04 7.553h-.188c-.362-4.877-2.244-6.72-5.534-7.257-1.133-.185-2.32-.048-3.822-.06v9.64c1.307.1 2.7.017 3.639-.789.854-.733 1.095-2.427 1.158-3.115h.165v8.392h-.179c-.052 0-.12-2.106-1.144-3.105-1.03-1.006-2.343-1.253-3.64-1.013V21.7c1.832 0 3.292.155 4.56-.192 3.855-1.057 5.211-4.309 5.201-7.57h.214v8.006H70.632V21.7h1.734V1.387H68.62v16.788c-.425 1.606-1.976 4.264-5.953 4.245-3.697-.016-7.364-1.683-7.373-5.3Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})],speed:45,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iykcow\",layoutDependency:layoutDependency,layoutId:\"w9w1CDUdz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1374hsa\",\"data-framer-name\":\"film_roll\",fill:\"black\",intrinsicHeight:75,intrinsicWidth:1602,layoutDependency:layoutDependency,layoutId:\"yk5tsYsPK\",svg:'<svg width=\"1602\" height=\"75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M52.472 0H0v75h52.472V0ZM3.748 11.111V5.556h4.997v5.555H3.748Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998ZM3.748 69.444V63.89h4.997v5.555H3.748Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M102.558 0H50.086v75h52.472V0ZM53.834 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555H63.83Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997ZM53.834 69.444V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555H63.83Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M152.2 0H99.729v75H152.2V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M202.287 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M252.283 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M302.369 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M352.012 0H299.54v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M402.098 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M452.439 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M502.525 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M552.168 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M602.254 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M652.25 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M702.337 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M751.979 0h-52.471v75h52.471V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M802.066 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M852.406 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M902.492 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M952.135 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555H923.4Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555H923.4Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M1002.22 0h-52.47v75h52.47V0Zm-48.722 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M1052.22 0h-52.474v75h52.474V0Zm-48.73 11.111V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1102.3 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1151.95 0h-52.48v75h52.48V0Zm-48.73 11.111V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1202.03 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm-39.98 58.333V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.556h-4.99Z\" fill=\"#553624\"/><path d=\"M1252.37 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1302.46 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm-39.97 58.333V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1352.1 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm-39.98 58.333V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.556h-4.99Z\" fill=\"#553624\"/><path d=\"M1402.19 0h-52.47v75h52.47V0Zm-48.73 11.111V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1452.18 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1502.27 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm-39.98 58.333V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.556h-4.99Z\" fill=\"#553624\"/><path d=\"M1551.91 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1602 0h-52.47v75H1602V0Zm-48.72 11.111V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm-39.97 58.333V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/></svg>',withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d6t94o\",layoutDependency:layoutDependency,layoutId:\"pkE3jjllJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-k47zjw-container\",layoutDependency:layoutDependency,layoutId:\"A4evw8Amb-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:3,fadeWidth:48,overflow:false},gap:56,height:\"100%\",hoverFactor:1,id:\"A4evw8Amb\",layoutId:\"A4evw8Amb\",padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12k35l\",layoutDependency:layoutDependency,layoutId:\"m4ortfjTN\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bf84lv\",\"data-framer-name\":\"Marriott_International_Logo_wine_1\",fill:\"black\",intrinsicHeight:34,intrinsicWidth:103,layoutDependency:layoutDependency,layoutId:\"kuAm5kHpJ\",svg:'<svg width=\"103\" height=\"34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.991 33.047v-5.25h1.151v5.25h-1.15Zm7.038 0-2.542-3.337v3.338h-1.136v-5.251h1.062l2.452 3.233v-3.233H27v5.25h-.972Zm5.114-4.185v4.185H29.99v-4.185h-1.593v-1.065h4.337v1.065h-1.592Zm2.986 4.185v-5.25h3.949v1.026h-2.81v1.045h2.466v1.027h-2.467v1.123h2.842v1.027l-3.98.002Zm9.069 0-1.128-1.68h-.905v1.681h-1.151v-5.251h2.387c1.235 0 1.975.652 1.975 1.732v.015a1.635 1.635 0 0 1-1.122 1.627l1.28 1.876h-1.336Zm.023-3.458c0-.5-.343-.75-.904-.75h-1.145v1.507h1.161c.561 0 .883-.3.883-.742l.005-.015Zm6.733 3.458-2.535-3.338v3.338h-1.137v-5.25h1.062l2.452 3.233v-3.233h1.137v5.25h-.98Zm6.72 0-.478-1.178h-2.219l-.478 1.178h-1.174l2.243-5.289h1.062l2.243 5.289h-1.2Zm-1.59-3.9-.695 1.703h1.39l-.695-1.702Zm5.807-.284v4.185h-1.152v-4.186h-1.592v-1.065h4.337v1.065l-1.593.001ZM64 33.048v-5.251h1.151v5.25L64 33.048Zm5.73.09c-1.612.004-2.773-1.208-2.773-2.7v-.015c0-1.498 1.174-2.716 2.789-2.716 1.614 0 2.774 1.208 2.774 2.7v.015c.001 1.493-1.172 2.72-2.788 2.72l-.001-.004Zm1.585-2.715a1.6 1.6 0 0 0-.965-1.523 1.587 1.587 0 0 0-.62-.128c-.927 0-1.57.735-1.57 1.636v.014a1.601 1.601 0 0 0 .964 1.523c.196.084.407.127.62.128.927 0 1.571-.735 1.571-1.636v-.015Zm6.758 2.624-2.535-3.338v3.338h-1.132v-5.25h1.062l2.452 3.233v-3.233h1.137v5.25h-.984Zm6.72 0-.479-1.178h-2.208l-.478 1.178h-1.174l2.243-5.289h1.062l2.243 5.289h-1.21Zm-1.577-3.9-.695 1.703h1.39l-.695-1.702Zm4.087 3.901v-5.251h1.151v4.2h2.61v1.05l-3.761.001Z\" fill=\"#fff\"/><path d=\"M55.134 11.03a4.54 4.54 0 0 0-1.978-.52c-1.377 0-2.157.998-2.361 1.331v10.704h-4.176V7.543h3.826l.239 1.57c.166-.272 1.161-1.893 3.136-1.893.447.006.89.083 1.314.228v3.581Zm9.91-3.582a4.221 4.221 0 0 0-1.314-.228c-1.976 0-2.965 1.621-3.136 1.894l-.24-1.571H56.53v15.003h4.176V11.841c.21-.34.982-1.33 2.36-1.33a4.54 4.54 0 0 1 1.979.518V7.45ZM44.06 11.85v10.696h-3.833l-.239-1.564c-.264.256-1.493 1.887-4.027 1.887-2.389 0-4.038-1.83-4.038-4.295 0-5.308 6.242-6.055 7.964-6.23v-.426c0-.869-.727-1.77-2.655-1.77-2.037 0-3.607 1.13-3.889 1.33V8.386a11.796 11.796 0 0 1 5.218-1.165c3.84-.003 5.499 1.756 5.499 4.63Zm-4.176 3.426c-1.328 0-3.752.458-3.752 2.558 0 1.065.727 1.83 1.638 1.83 1.184 0 2.114-.852 2.114-2.77v-1.618ZM16.967 3.095l3.755 8.08-1.474 3.162L12.985.859 8.213 3.09l3.752 8.07c-.294.628-.765 1.652-1.528 3.28-1.716 3.68-3.043 4.71-5.394 4.71a5.861 5.861 0 0 1-1.895-.351L.923 23.58a9.599 9.599 0 0 0 3.554.741c2.782 0 4.826-1.814 6.603-5.638l2.19-4.71 3.982 8.577h5.807l-2.515-5.408 1.473-3.162L26 22.558h5.807L21.74.858l-4.772 2.237Zm83.376 4.45V2.58l-4.176 1.953v3.01H94.83v2.61h1.339v12.394h4.176V10.152h2.117V7.543l-2.119.002ZM66.606 22.548h4.177V7.543h-4.177v15.005ZM91.477 2.58 87.3 4.534v3.01h-1.34v2.61h1.34v12.393h4.175V10.152h2.119V7.543h-2.119V2.579Zm-6.493 11.23v2.468c0 3.576-1.742 6.593-6.021 6.593-4.28 0-6.021-2.995-6.021-6.593v-2.466c0-3.591 1.742-6.593 6.02-6.593 4.28 0 6.022 3.016 6.022 6.593v-.002Zm-4.21-.594c0-1.794-.434-3.067-1.811-3.067s-1.812 1.273-1.812 3.067v3.66c0 1.795.426 3.068 1.812 3.068 1.385 0 1.811-1.273 1.811-3.067v-3.661Z\" fill=\"#A11D2B\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2m9kd1\",layoutDependency:layoutDependency,layoutId:\"q1JfXMFpl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lrt7dm\",\"data-framer-name\":\"General_Electric_Logo_wine_1\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"GxOQsPxXE\",svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.87 39.333c10.68 0 19.336-8.655 19.336-19.331C39.206 9.325 30.55.667 19.87.667 9.194.667.539 9.325.539 20.002c0 10.676 8.655 19.331 19.332 19.331Z\" fill=\"#fff\"/><path d=\"M24.21 14.966c0-2.198 1.488-4.33 2.3-3.929.925.464-.694 2.535-2.3 3.93Zm-10.121.801c0-1.767 1.744-5.126 2.81-4.77 1.258.419-1.044 3.807-2.81 4.77ZM12.32 28.41c-.801.036-1.338-.477-1.338-1.333 0-2.3 3.192-4.498 5.603-5.678-.428 3.212-1.513 6.887-4.265 7.01Zm14.727-7.496c-1.82 0-3.212 1.34-3.212 2.945 0 1.34.805 2.41 1.873 2.41.378 0 .752-.216.752-.694 0-.7-.924-.868-.854-1.909.046-.686.694-1.145 1.336-1.145 1.284 0 1.884 1.244 1.884 2.528-.052 1.983-1.512 3.36-3.222 3.36-2.25 0-3.697-2.14-3.697-4.444 0-3.429 2.251-4.767 3.43-5.087.01 0 3.079.545 2.983-.807-.044-.595-.928-.824-1.567-.849-.711-.027-1.43.229-1.43.229-.372-.19-.63-.56-.791-.986 2.196-1.662 3.75-3.267 3.75-5.088 0-.964-.645-1.82-1.877-1.82-2.196 0-3.856 2.784-3.856 5.301 0 .427 0 .857.11 1.231-1.393 1.017-2.43 1.65-4.302 2.775 0-.235.05-.84.207-1.622.642-.697 1.523-1.741 1.523-2.545 0-.374-.212-.697-.645-.697-1.069 0-1.87 1.608-2.085 2.732-.483.592-1.447 1.342-2.252 1.342-.641 0-.857-.59-.911-.805 2.036-.697 4.553-3.482 4.553-5.999 0-.534-.215-1.714-1.82-1.714-2.41 0-4.443 3.59-4.443 6.372-.86 0-1.18-.91-1.18-1.606 0-.698.268-1.391.268-1.607 0-.215-.107-.481-.43-.481-.801 0-1.284 1.07-1.284 2.302.056 1.714 1.18 2.788 2.678 2.893.215 1.019 1.124 1.983 2.247 1.983.698 0 1.554-.214 2.144-.748a30.66 30.66 0 0 1-.16 1.016c-2.358 1.234-4.072 2.09-5.625 3.482-1.228 1.126-1.925 2.625-1.925 3.801 0 1.61 1.016 3.108 3.104 3.108 2.462 0 4.339-1.98 5.25-4.713.427-1.284.598-3.155.708-4.87 2.46-1.395 3.628-2.199 4.915-3.11.16.267.322.48.534.64-1.124.59-3.801 2.251-3.801 6.16 0 2.785 1.872 5.892 5.57 5.892 3.052 0 5.14-2.518 5.14-4.929 0-2.193-1.232-4.227-3.59-4.227Zm9.208 4.6c-.008.017-.038.04-.099.02-.047-.017-.057-.04-.057-.07.002-.03.647-1.936.641-4.12-.005-2.362-.963-3.808-2.192-3.808-.752 0-1.287.537-1.287 1.342 0 1.446 1.766 1.554 1.766 4.713 0 1.284-.267 2.515-.693 3.854-1.984 6.693-8.304 9.8-14.46 9.8-2.84 0-4.856-.583-5.456-.852-.025-.015-.047-.061-.028-.109.014-.035.055-.063.08-.052.243.094 1.975.64 4.118.64 2.356 0 3.75-.964 3.75-2.144 0-.749-.59-1.338-1.339-1.338-1.446 0-1.556 1.82-4.661 1.82-1.339 0-2.518-.267-3.909-.697-6.642-2.035-9.804-8.299-9.802-14.51.002-3.027.851-5.438.865-5.46.01-.016.049-.033.095-.016.048.016.058.054.056.069-.077.25-.64 1.978-.64 4.121 0 2.358.964 3.75 2.196 3.75.694 0 1.284-.535 1.284-1.285 0-1.448-1.769-1.608-1.769-4.715 0-1.339.27-2.518.697-3.909 2.036-6.641 8.303-9.753 14.462-9.802 2.862-.022 5.366.835 5.462.912.017.014.034.05.017.094-.023.052-.056.057-.072.054-.03-.002-1.659-.683-4.124-.683-2.302-.002-3.749.962-3.749 2.195 0 .695.538 1.284 1.338 1.284 1.447 0 1.554-1.766 4.662-1.766 1.335 0 2.515.264 3.906.694 6.696 2.036 9.743 8.355 9.8 14.462.032 3.127-.85 5.493-.858 5.513ZM19.874 1.579C9.698 1.578 1.45 9.823 1.45 20.001c0 10.175 8.247 18.42 18.423 18.42 10.173 0 18.42-8.244 18.42-18.42 0-10.123-8.247-18.423-18.42-18.423Zm0 37.755C9.216 39.333.539 30.712.539 20.002.539 9.34 9.216.667 19.874.667c10.655 0 19.332 8.674 19.332 19.335 0 10.71-8.678 19.331-19.332 19.331Z\" fill=\"#3B73B9\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mkadl2\",layoutDependency:layoutDependency,layoutId:\"f_RA1TV3Q\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kwmddu\",\"data-framer-name\":\"Amazon_company_Logo_wine_1\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:71,layoutDependency:layoutDependency,layoutId:\"jj_thZd82\",svg:'<svg width=\"71\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M44.145 16.922c-4.113 3.064-10.074 4.699-15.206 4.699-7.196 0-13.674-2.69-18.575-7.165-.385-.352-.04-.832.422-.558 5.289 3.111 11.829 4.983 18.585 4.983 4.556 0 9.568-.953 14.176-2.93.696-.3 1.279.46.598.97Z\" fill=\"#F90\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M45.855 14.944c-.524-.679-3.475-.32-4.8-.162-.404.05-.465-.305-.102-.56 2.35-1.672 6.208-1.19 6.657-.63.45.564-.117 4.473-2.325 6.338-.34.286-.663.134-.512-.246.496-1.252 1.608-4.058 1.082-4.74Z\" fill=\"#F90\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M41.112 2.733V1.108c0-.246.185-.411.407-.411h7.199c.23 0 .416.168.416.41V2.5c-.003.233-.197.539-.542 1.021l-3.73 5.384c1.385-.034 2.849.175 4.105.891.284.162.36.399.382.632v1.735c0 .236-.258.513-.53.37-2.214-1.174-5.156-1.301-7.605.013-.25.137-.512-.137-.512-.374v-1.647c0-.265.003-.717.265-1.118L45.29 3.14h-3.761a.4.4 0 0 1-.416-.408ZM14.85 12.876h-2.19a.416.416 0 0 1-.391-.377V1.136c0-.227.188-.408.422-.408h2.042c.213.01.382.174.398.38v1.485h.04c.533-1.435 1.534-2.105 2.883-2.105 1.371 0 2.228.67 2.844 2.105.53-1.435 1.734-2.105 3.025-2.105.918 0 1.922.383 2.535 1.243.693.956.551 2.345.551 3.562l-.003 7.172a.416.416 0 0 1-.422.41h-2.187a.419.419 0 0 1-.394-.41V6.442c0-.48.043-1.675-.062-2.13-.163-.763-.653-.978-1.288-.978-.53 0-1.084.358-1.309.931-.225.574-.203 1.533-.203 2.177v6.023a.416.416 0 0 1-.422.41h-2.187a.416.416 0 0 1-.395-.41l-.003-6.023c0-1.267.207-3.132-1.349-3.132-1.574 0-1.512 1.818-1.512 3.132v6.023a.416.416 0 0 1-.422.41ZM55.332.488c3.25 0 5.009 2.821 5.009 6.409 0 3.466-1.944 6.215-5.01 6.215-3.19 0-4.928-2.82-4.928-6.337 0-3.537 1.759-6.287 4.929-6.287Zm.018 2.32c-1.614 0-1.716 2.224-1.716 3.61 0 1.388-.021 4.353 1.698 4.353 1.697 0 1.777-2.392 1.777-3.85 0-.958-.04-2.104-.326-3.014-.247-.79-.736-1.099-1.433-1.099Zm9.205 10.068h-2.181a.419.419 0 0 1-.394-.411l-.003-11.367c.018-.208.2-.37.422-.37h2.03a.42.42 0 0 1 .39.318v1.737h.04C65.474 1.23 66.333.488 67.846.488c.983 0 1.94.358 2.557 1.34.573.908.573 2.437.573 3.537v7.153a.422.422 0 0 1-.422.358h-2.197a.416.416 0 0 1-.388-.358V6.346c0-1.243.142-3.062-1.37-3.062-.534 0-1.023.362-1.267.91-.308.694-.348 1.386-.348 2.152v6.119a.423.423 0 0 1-.428.41ZM35.373 7.448c0 .863.022 1.582-.41 2.348-.348.623-.902 1.006-1.515 1.006-.841 0-1.334-.648-1.334-1.604 0-1.887 1.673-2.23 3.259-2.23v.48Zm2.209 5.397a.453.453 0 0 1-.518.053c-.727-.61-.86-.894-1.257-1.476-1.201 1.239-2.054 1.61-3.61 1.61-1.845 0-3.278-1.15-3.278-3.45 0-1.798.961-3.022 2.335-3.62 1.19-.529 2.85-.622 4.12-.769v-.286c0-.526.039-1.15-.269-1.604-.265-.408-.776-.576-1.23-.576-.834 0-1.576.433-1.758 1.33-.037.2-.182.395-.382.405l-2.123-.23c-.178-.041-.378-.188-.326-.465C29.773 1.164 32.102.38 34.184.38c1.066 0 2.458.287 3.3 1.103 1.065 1.005.963 2.347.963 3.808v3.45c0 1.037.426 1.492.826 2.052.139.2.17.44-.01.589a92.912 92.912 0 0 0-1.678 1.47l-.003-.006M6.659 7.448c0 .863.022 1.582-.41 2.348-.347.623-.899 1.006-1.515 1.006-.841 0-1.33-.648-1.33-1.604 0-1.887 1.672-2.23 3.255-2.23v.48Zm2.209 5.397a.453.453 0 0 1-.517.053c-.727-.61-.857-.894-1.257-1.476-1.202 1.239-2.052 1.61-3.61 1.61-1.843 0-3.278-1.15-3.278-3.45 0-1.798.964-3.022 2.335-3.62 1.189-.529 2.85-.622 4.118-.769v-.286c0-.526.04-1.15-.265-1.604-.268-.408-.779-.576-1.229-.576-.835 0-1.58.433-1.762 1.33-.037.2-.182.395-.379.405L.9 4.232C.72 4.19.523 4.043.572 3.766 1.062 1.164 3.388.38 5.47.38c1.066 0 2.458.287 3.3 1.103 1.065 1.005.964 2.347.964 3.808v3.45c0 1.037.425 1.492.825 2.052.142.2.173.44-.006.589a93.013 93.013 0 0 0-1.679 1.47l-.006-.006Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12g02aw\",layoutDependency:layoutDependency,layoutId:\"zysIHWwjM\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u1kr2c\",\"data-framer-name\":\"Subaru_Logo_wine_1\",fill:\"black\",intrinsicHeight:12,intrinsicWidth:89,layoutDependency:layoutDependency,layoutId:\"Fh6GTHs9g\",svg:'<svg width=\"89\" height=\"12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34.61 2.034h2.31v5.574c0 .512.292.72.787.72h3.935c.494 0 .788-.208.788-.72V2.034h2.309v5.94c0 1.26-1.076 2.215-2.31 2.215h-5.51c-1.228 0-2.31-.96-2.31-2.216V2.034Zm-10.952 5.64h2.299c.037.464.31.654.766.654h4.223c.391 0 .608-.338.608-.704 0-.49-.358-.748-.82-.748H26.13c-1.516 0-2.549-.743-2.549-2.347 0-.835.326-1.72 1.066-2.167.462-.285 1.027-.328 1.56-.328h5.423c1.175 0 2.12.835 2.109 2.035V4.5h-2.374c-.022-.37-.24-.61-.63-.61h-4.006c-.407 0-.75.207-.75.66 0 .448.348.617.745.617h4.907c1.587 0 2.408 1.065 2.408 2.615 0 1.485-.685 2.406-2.218 2.406h-5.864c-1.337 0-2.283-.54-2.294-1.97l-.005-.545Zm54.669-5.64h2.315v5.574c0 .512.294.72.788.72h3.934c.494 0 .788-.208.788-.72V2.034h2.31v5.94c0 1.254-1.082 2.215-2.31 2.215h-5.511c-1.234 0-2.316-.955-2.316-2.216l.002-5.939ZM58.843 8.58l-.908 1.61H55.37l4.408-8.155h3.016l4.408 8.154h-2.566L63.73 8.58h-4.886Zm2.44-4.481-1.456 2.718h2.918l-1.462-2.718ZM45.62 2.034h7.12c1.527 0 2.658.535 2.658 2.255 0 .742-.293 1.392-.945 1.758.716.382 1.124 1.09 1.124 1.909 0 1.152-.734 2.232-1.967 2.232h-7.99V2.034Zm2.364 6.293h4.392c.429 0 .826-.234.826-.704 0-.464-.402-.704-.826-.704h-4.392v1.408Zm0-3.094h4.392c.396 0 .647-.278.647-.666 0-.387-.245-.676-.647-.676h-4.392v1.342Zm19.658-3.199h7.739c1.544 0 2.289 1.267 2.289 2.68 0 .917-.332 1.774-1.169 2.212.816.398 1.19 1.026 1.19 1.943v1.32h-2.31V8.87c0-.775-.429-1.053-1.174-1.053h-4.184v2.373h-2.38l-.001-8.156Zm2.38 3.925h4.332c.56 0 .935-.502.935-1.032 0-.676-.5-1.037-1.147-1.037h-4.12v2.07ZM10.23-.007c2.56 0 5.304.524 7.489 1.916 1.418.912 2.739 2.293 2.739 4.093 0 2.103-1.788 3.631-3.5 4.526-2.038 1.06-4.446 1.479-6.729 1.479-2.56 0-5.299-.518-7.483-1.916C1.326 9.18 0 7.798 0 6.002c0-2.111 1.783-3.634 3.5-4.53C5.544.413 7.946-.007 10.23-.007Zm-.022.639c-2.38 0-4.946.447-7.011 1.697-1.299.78-2.582 2.009-2.582 3.64 0 1.918 1.74 3.259 3.294 4.03 1.924.943 4.174 1.31 6.299 1.31 2.385 0 4.951-.449 7.017-1.698 1.293-.786 2.581-2.009 2.581-3.64 0-1.922-1.734-3.265-3.293-4.028C14.587.997 12.337.632 10.207.632ZM1.223 4.644l3.919-.672L6.32 1.401l1.175 2.571 3.917.672-3.917.677L6.32 7.897 5.14 5.321l-3.918-.677Zm8.614 1.959 1.729-.305.516-1.163.516 1.163 1.729.305-1.729.3-.516 1.163-.517-1.163-1.728-.3Zm3.577-3.1 1.728-.3.516-1.168.517 1.167 1.728.3-1.728.306-.517 1.163-.517-1.163-1.727-.305Zm-1.848 5.502 1.722-.3.517-1.168.521 1.168 1.728.3-1.728.306-.521 1.163-.517-1.163-1.723-.306Zm-5.31.42 1.728-.3.522-1.169.516 1.17 1.728.3-1.728.305-.516 1.163-.522-1.163-1.728-.306Zm8.69-2.87 1.723-.306.517-1.163.521 1.163 1.728.306-1.728.3-.522 1.161-.516-1.162-1.722-.3Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8skdfr\",layoutDependency:layoutDependency,layoutId:\"f_LeEDXqP\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kov76t\",\"data-framer-name\":\"Nike_Inc_Logo_wine_1\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:69,layoutDependency:layoutDependency,layoutId:\"Fj5zb0viC\",svg:'<svg width=\"69\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8.013 25.327c-2.04-.082-3.708-.647-5.013-1.695-.25-.2-.843-.8-1.042-1.054-.53-.673-.889-1.328-1.129-2.054-.738-2.237-.358-5.172 1.087-8.393 1.238-2.757 3.147-5.492 6.479-9.28A201.83 201.83 0 0 1 10.356.663c.004 0-.076.14-.176.31-.866 1.467-1.607 3.195-2.011 4.691-.649 2.401-.57 4.462.229 6.06.551 1.1 1.497 2.053 2.56 2.58 1.862.922 4.587.999 7.915.223.229-.053 11.583-3.101 25.231-6.773 13.649-3.672 24.817-6.674 24.82-6.671.003.003-31.71 13.725-48.172 20.844-2.607 1.127-3.305 1.412-4.53 1.847-3.133 1.113-5.94 1.644-8.209 1.553Z\" fill=\"#FF4500\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-es2f67\",layoutDependency:layoutDependency,layoutId:\"stmrUhGlW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ch9w09\",\"data-framer-name\":\"Chase_Bank_Logo_wine_1\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:104,layoutDependency:layoutDependency,layoutId:\"kVSG5cg60\",svg:'<svg width=\"104\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M91.231.457a.675.675 0 0 0-.676.674v4.724h12.526L97.376.458h-6.145Zm12.308 6.827a.672.672 0 0 0-.677-.673h-4.74v12.48l5.415-5.686.002-6.12Zm-6.853 12.259a.675.675 0 0 0 .675-.675v-4.723H84.835l5.705 5.397h6.145Zm-12.309-6.826c0 .372.303.675.677.675h4.74V.912l-5.416 5.684-.001 6.12Z\" fill=\"#117ACA\"/><path d=\"M26.963 2.736v5.763h-8.06V2.736l-2.934-.003v14.532h2.935v-6.243h8.06v6.243h2.94V2.735h-2.94Zm39.05 0V17.26H78.89l-1.63-2.557h-8.304v-3.682h8.04V8.559h-8.04V5.233h8.29l1.597-2.497h-12.83ZM5.057 2.732c-3.054 0-4.596 1.85-4.596 4.54v5.425c0 3.114 1.987 4.568 4.58 4.568l9.21-.002-1.708-2.656H5.611c-1.473 0-2.114-.53-2.114-2.172V7.514c0-1.588.54-2.207 2.153-2.207h6.967l1.639-2.575H5.058Zm48.073-.003c-1.763 0-3.57 1.056-3.57 3.772v.697c0 2.832 1.739 3.912 3.478 3.92h6.108c.634 0 1.15.105 1.15 1.173l-.001 1.234c-.017.96-.497 1.179-1.17 1.179H51.09l-1.646 2.557h9.87c2.379 0 3.995-1.18 3.995-3.904v-1.002c0-2.634-1.501-3.879-3.829-3.879h-5.83c-.647 0-1.097-.176-1.097-1.13V6.342c0-.813.309-1.11 1.062-1.11l7.651-.002 1.6-2.505-9.735.004Zm-14.7.007-6.915 14.528h3.268l1.347-3h7.515l1.343 3h3.283L41.34 2.736h-2.909Zm1.45 3.016 2.658 6.038H37.24l2.64-6.038Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:250,pixelHeight:312,pixelWidth:500,src:\"https://framerusercontent.com/images/jaPCMHZZuWUPNEqnMTavsG5UTPs.png\"},className:\"framer-qsy1vt\",\"data-framer-name\":\"Smartwater_logo_1_\",layoutDependency:layoutDependency,layoutId:\"B_b02D54G\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5npptg\",layoutDependency:layoutDependency,layoutId:\"f1iH4EZdP\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8pow7j\",\"data-framer-name\":\"film_roll\",fill:\"black\",intrinsicHeight:75,intrinsicWidth:1602,layoutDependency:layoutDependency,layoutId:\"O4s92QMn7\",svg:'<svg width=\"1602\" height=\"75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M52.472 0H0v75h52.472V0ZM3.748 11.111V5.556h4.997v5.555H3.748Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998ZM3.748 69.444V63.89h4.997v5.555H3.748Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M102.558 0H50.086v75h52.472V0ZM53.834 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555H63.83Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997ZM53.834 69.444V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555H63.83Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M152.2 0H99.729v75H152.2V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M202.287 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M252.283 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M302.369 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M352.012 0H299.54v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M402.098 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M452.439 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M502.525 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M552.168 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M602.254 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M652.25 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M702.337 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M751.979 0h-52.471v75h52.471V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M802.066 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M852.406 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M902.492 0h-52.471v75h52.471V0Zm-48.723 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.556h-4.998Z\" fill=\"#553624\"/><path d=\"M952.135 0h-52.472v75h52.472V0Zm-48.724 11.111V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555H923.4Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.979 58.333V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555H923.4Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M1002.22 0h-52.47v75h52.47V0Zm-48.722 11.111V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm9.994 0V5.556h4.998v5.555h-4.998Zm9.995 0V5.556h4.997v5.555h-4.997Zm-39.978 58.333V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.555h-4.997Zm9.994 0V63.89h4.998v5.555h-4.998Zm9.995 0V63.89h4.997v5.556h-4.997Z\" fill=\"#553624\"/><path d=\"M1052.22 0h-52.474v75h52.474V0Zm-48.73 11.111V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1102.3 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1151.95 0h-52.48v75h52.48V0Zm-48.73 11.111V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1202.03 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm-39.98 58.333V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.556h-4.99Z\" fill=\"#553624\"/><path d=\"M1252.37 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1302.46 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm-39.97 58.333V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1352.1 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm-39.98 58.333V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.556h-4.99Z\" fill=\"#553624\"/><path d=\"M1402.19 0h-52.47v75h52.47V0Zm-48.73 11.111V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1452.18 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1502.27 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm-39.98 58.333V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.556h-4.99Z\" fill=\"#553624\"/><path d=\"M1551.91 0h-52.47v75h52.47V0Zm-48.72 11.111V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h5v5.555h-5Zm-39.98 58.333V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/><path d=\"M1602 0h-52.47v75H1602V0Zm-48.72 11.111V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm10 0V5.556h4.99v5.555h-4.99Zm9.99 0V5.556h5v5.555h-5Zm9.99 0V5.556h5v5.555h-5Zm-39.97 58.333V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm10 0V63.89h4.99v5.555h-4.99Zm9.99 0V63.89h5v5.555h-5Zm9.99 0V63.89h5v5.556h-5Z\" fill=\"#553624\"/></svg>',withExternalLayout:true})})]})]})})})});});const css=['.framer-cTt42[data-border=\"true\"]::after, .framer-cTt42 [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-cTt42.framer-13h8l3w, .framer-cTt42 .framer-13h8l3w { display: block; }\",\".framer-cTt42.framer-ipralj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1227px; }\",\".framer-cTt42 .framer-16w0q1b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-cTt42 .framer-1wxdmmx-container { flex: 1 0 0px; height: 76px; position: relative; width: 1px; z-index: 2; }\",\".framer-cTt42 .framer-1ca4ec4 { height: 41px; overflow: hidden; position: relative; width: 50px; }\",\".framer-cTt42 .framer-15cud0z { aspect-ratio: 1.2195121951219512 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-1w6hu6n { height: 25px; overflow: hidden; position: relative; width: 86px; }\",\".framer-cTt42 .framer-i19ukv { aspect-ratio: 3.44 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-1nlms7b { height: 13px; overflow: hidden; position: relative; width: 89px; }\",\".framer-cTt42 .framer-1q89rvx { aspect-ratio: 6.846153846153846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-rw8qm9 { height: 25px; overflow: hidden; position: relative; width: 71px; }\",\".framer-cTt42 .framer-li7r74 { aspect-ratio: 2.84 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-qyrdux { aspect-ratio: 3.1724137931034484 / 1; height: var(--framer-aspect-ratio-supported, 15px); overflow: visible; position: relative; width: 48px; }\",\".framer-cTt42 .framer-1ttnrxd { aspect-ratio: 5.111111111111111 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 132px; }\",\".framer-cTt42 .framer-uti6uo { height: 23px; overflow: hidden; position: relative; width: 87px; }\",\".framer-cTt42 .framer-cxf291 { aspect-ratio: 3.782608695652174 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-ow4l04 { height: 23px; overflow: hidden; position: relative; width: 86px; }\",\".framer-cTt42 .framer-1aiekgg { aspect-ratio: 3.739130434782609 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-1iykcow { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 0px; width: 3000px; z-index: 1; }\",\".framer-cTt42 .framer-1374hsa, .framer-cTt42 .framer-8pow7j { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-cTt42 .framer-d6t94o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-cTt42 .framer-k47zjw-container { flex: none; height: 76px; position: relative; width: 1227px; z-index: 2; }\",\".framer-cTt42 .framer-12k35l { height: 34px; overflow: hidden; position: relative; width: 103px; }\",\".framer-cTt42 .framer-1bf84lv { aspect-ratio: 3.0294117647058822 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-2m9kd1 { height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-cTt42 .framer-1lrt7dm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-mkadl2 { height: 22px; overflow: hidden; position: relative; width: 71px; }\",\".framer-cTt42 .framer-kwmddu { aspect-ratio: 3.227272727272727 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-12g02aw { height: 12px; overflow: hidden; position: relative; width: 89px; }\",\".framer-cTt42 .framer-1u1kr2c { aspect-ratio: 7.416666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-8skdfr { height: 26px; overflow: hidden; position: relative; width: 69px; }\",\".framer-cTt42 .framer-kov76t { aspect-ratio: 2.6538461538461537 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-es2f67 { height: 20px; overflow: hidden; position: relative; width: 104px; }\",\".framer-cTt42 .framer-ch9w09 { aspect-ratio: 5.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cTt42 .framer-qsy1vt { aspect-ratio: 1.6025641025641026 / 1; height: var(--framer-aspect-ratio-supported, 58px); overflow: visible; position: relative; width: 92px; }\",\".framer-cTt42 .framer-5npptg { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: -1773px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cTt42.framer-ipralj, .framer-cTt42 .framer-16w0q1b, .framer-cTt42 .framer-1iykcow, .framer-cTt42 .framer-d6t94o, .framer-cTt42 .framer-5npptg { gap: 0px; } .framer-cTt42.framer-ipralj > *, .framer-cTt42 .framer-16w0q1b > *, .framer-cTt42 .framer-d6t94o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cTt42.framer-ipralj > :first-child, .framer-cTt42 .framer-16w0q1b > :first-child, .framer-cTt42 .framer-d6t94o > :first-child { margin-left: 0px; } .framer-cTt42.framer-ipralj > :last-child, .framer-cTt42 .framer-16w0q1b > :last-child, .framer-cTt42 .framer-d6t94o > :last-child { margin-right: 0px; } .framer-cTt42 .framer-1iykcow > *, .framer-cTt42 .framer-5npptg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cTt42 .framer-1iykcow > :first-child, .framer-cTt42 .framer-5npptg > :first-child { margin-top: 0px; } .framer-cTt42 .framer-1iykcow > :last-child, .framer-cTt42 .framer-5npptg > :last-child { margin-bottom: 0px; } }\",\".framer-cTt42.framer-v-llf1qd .framer-8pow7j { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 120\n * @framerIntrinsicWidth 1227\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aU_QoEzt8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framerq84F58Lx9=withCSS(Component,css,\"framer-cTt42\");export default Framerq84F58Lx9;Framerq84F58Lx9.displayName=\"Logo-1\";Framerq84F58Lx9.defaultProps={height:120,width:1227};addPropertyControls(Framerq84F58Lx9,{variant:{options:[\"mZAUCQUML\",\"aU_QoEzt8\"],optionTitles:[\"Row 1\",\"Row 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerq84F58Lx9,[...TickerFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerq84F58Lx9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"120\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1227\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aU_QoEzt8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./q84F58Lx9.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Antonio-regular\",\"GF;Antonio-700\"]);export const fonts=[{family:\"Antonio\",style:\"normal\",url:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtNY2DwSXlM.woff2\",weight:\"400\"},{family:\"Antonio\",style:\"normal\",url:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htNY2DwSXlM.woff2\",weight:\"700\"}];export const css=['.framer-sLYln .framer-styles-preset-1mrul22:not(.rich-text-wrapper), .framer-sLYln .framer-styles-preset-1mrul22.rich-text-wrapper h4 { --framer-font-family: \"Antonio\", \"Antonio Placeholder\", sans-serif; --framer-font-family-bold: \"Antonio\", \"Antonio Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 140%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #e8e1d0; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 710px) { .framer-sLYln .framer-styles-preset-1mrul22:not(.rich-text-wrapper), .framer-sLYln .framer-styles-preset-1mrul22.rich-text-wrapper h4 { --framer-font-family: \"Antonio\", \"Antonio Placeholder\", sans-serif; --framer-font-family-bold: \"Antonio\", \"Antonio Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 140%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #e8e1d0; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 709px) and (min-width: 0px) { .framer-sLYln .framer-styles-preset-1mrul22:not(.rich-text-wrapper), .framer-sLYln .framer-styles-preset-1mrul22.rich-text-wrapper h4 { --framer-font-family: \"Antonio\", \"Antonio Placeholder\", sans-serif; --framer-font-family-bold: \"Antonio\", \"Antonio Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 140%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #e8e1d0; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-sLYln\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Antonio-700\"]);export const fonts=[{family:\"Antonio\",style:\"normal\",url:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htNY2DwSXlM.woff2\",weight:\"700\"}];export const css=['.framer-GauMM .framer-styles-preset-98nrem:not(.rich-text-wrapper), .framer-GauMM .framer-styles-preset-98nrem.rich-text-wrapper h1 { --framer-font-family: \"Antonio\", \"Antonio Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0.02em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-6b543eeb-bd45-4a9b-8df8-622467ae3e32, #e8e1d0); --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-GauMM .framer-styles-preset-98nrem:not(.rich-text-wrapper), .framer-GauMM .framer-styles-preset-98nrem.rich-text-wrapper h1 { --framer-font-family: \"Antonio\", \"Antonio Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0.02em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-6b543eeb-bd45-4a9b-8df8-622467ae3e32, #e8e1d0); --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-GauMM .framer-styles-preset-98nrem:not(.rich-text-wrapper), .framer-GauMM .framer-styles-preset-98nrem.rich-text-wrapper h1 { --framer-font-family: \"Antonio\", \"Antonio Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0.02em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-6b543eeb-bd45-4a9b-8df8-622467ae3e32, #e8e1d0); --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-GauMM\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98479f1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouter,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Navbar from\"#framer/local/canvasComponent/AelDvyySa/AelDvyySa.js\";import CTA from\"#framer/local/canvasComponent/I_Rx0Iwb8/I_Rx0Iwb8.js\";import Footer from\"#framer/local/canvasComponent/KBcrG_GKh/KBcrG_GKh.js\";import Logo1 from\"#framer/local/canvasComponent/q84F58Lx9/q84F58Lx9.js\";import CelebsMobile from\"#framer/local/canvasComponent/TwlO9XFAW/TwlO9XFAW.js\";import*as sharedStyle2 from\"#framer/local/css/k4kZvcZxh/k4kZvcZxh.js\";import*as sharedStyle1 from\"#framer/local/css/lpnF2rQn2/lpnF2rQn2.js\";import*as sharedStyle3 from\"#framer/local/css/qpiaGQvq5/qpiaGQvq5.js\";import*as sharedStyle from\"#framer/local/css/UOWn5bxOu/UOWn5bxOu.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const VimeoFonts=getFonts(Vimeo);const CTAFonts=getFonts(CTA);const Logo1Fonts=getFonts(Logo1);const CelebsMobileFonts=getFonts(CelebsMobile);const FooterFonts=getFonts(Footer);const breakpoints={LDxz2sIPs:\"(max-width: 809px)\",nn0CR5xO9:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Y15q8\";const variantClassNames={LDxz2sIPs:\"framer-v-byc1nn\",nn0CR5xO9:\"framer-v-1epnm2o\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"LDxz2sIPs\",Tablet:\"nn0CR5xO9\"};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:\"WQLkyLRf1\"};};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-Y15q8`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Y15q8`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTapizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTapwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"LDxz2sIPs\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"nn0CR5xO9\")return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"nn0CR5xO9\")return true;return false;};const ref4=React.useRef(null);const ref5=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"LDxz2sIPs\")return true;return false;};const router=useRouter();const isDisplayed4=()=>{if(!isBrowser())return true;if([\"nn0CR5xO9\",\"LDxz2sIPs\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jqm8w9-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{variant:\"PF6TGQ1aa\"},nn0CR5xO9:{variant:\"PF6TGQ1aa\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"JwZ4eIeGC\",layoutId:\"JwZ4eIeGC\",style:{width:\"100%\"},variant:\"JhQbpHhl2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1150,intrinsicWidth:1458,pixelHeight:1150,pixelWidth:1458,sizes:\"100vw\",src:\"https://framerusercontent.com/images/YQrWoxsX6W7eZQ61i8ATGALqU.jpg\",srcSet:\"https://framerusercontent.com/images/YQrWoxsX6W7eZQ61i8ATGALqU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YQrWoxsX6W7eZQ61i8ATGALqU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YQrWoxsX6W7eZQ61i8ATGALqU.jpg 1458w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1150,intrinsicWidth:1458,loading:getLoadingLazyAtYPosition(0),pixelHeight:1150,pixelWidth:1458,sizes:\"100vw\",src:\"https://framerusercontent.com/images/YQrWoxsX6W7eZQ61i8ATGALqU.jpg\",srcSet:\"https://framerusercontent.com/images/YQrWoxsX6W7eZQ61i8ATGALqU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YQrWoxsX6W7eZQ61i8ATGALqU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YQrWoxsX6W7eZQ61i8ATGALqU.jpg 1458w\"},className:\"framer-uaamg0\",\"data-framer-name\":\"MacBook Air - 1\",name:\"MacBook Air - 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a4qfb6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hZ25hdGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Magnate Regular\", \"Magnate Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-468e4e93-f3a8-4a1e-b116-b2f86e8ab72b, rgb(228, 174, 93))\"},children:\"Reel\"})})},nn0CR5xO9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hZ25hdGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Magnate Regular\", \"Magnate Regular Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-468e4e93-f3a8-4a1e-b116-b2f86e8ab72b, rgb(228, 174, 93))\"},children:\"Reel\"})}),transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hZ25hdGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Magnate Regular\", \"Magnate Regular Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-468e4e93-f3a8-4a1e-b116-b2f86e8ab72b, rgb(228, 174, 93))\"},children:\"Reel\"})}),className:\"framer-ch7ckr\",fonts:[\"CUSTOM;Magnate Regular\"],verticalAlignment:\"center\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p60zcb hidden-byc1nn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:689,intrinsicWidth:1201,positionX:\"center\",positionY:\"center\",sizes:\"798px\",src:\"https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg\",srcSet:\"https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg 1201w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:689,intrinsicWidth:1201,loading:getLoadingLazyAtYPosition(120),positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg\",srcSet:\"https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg 1201w\"},className:\"framer-2sm6bv\",\"data-framer-name\":\"Frame 1218\",name:\"Frame 1218\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2130,intrinsicWidth:3784,loading:getLoadingLazyAtYPosition(167.74909222948452),pixelHeight:2130,pixelWidth:3784,sizes:\"1050px\",src:\"https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg\",srcSet:\"https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg 3784w\"},className:\"framer-qbsck1 hidden-1epnm2o\",\"data-framer-name\":\"Emmy_Reel_desktop\",id:\"qbsck1\",name:\"Emmy_Reel_desktop\",onTap:onTapizu9gt({overlay}),ref:ref2,transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ctdsm4\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:54,name:\"Frame\",svg:'<svg width=\"54\" height=\"54\" viewBox=\"0 0 54 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5 37.125L36 27L22.5 16.875V37.125ZM27 4.5C14.58 4.5 4.5 14.58 4.5 27C4.5 39.42 14.58 49.5 27 49.5C39.42 49.5 49.5 39.42 49.5 27C49.5 14.58 39.42 4.5 27 4.5ZM27 45C17.0775 45 9 36.9225 9 27C9 17.0775 17.0775 9 27 9C36.9225 9 45 17.0775 45 27C45 36.9225 36.9225 45 27 45Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"qbsck1\",offsetX:0,offsetY:-591,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-1up5jkf\",exit:animation,initial:animation2,ref:ref3,role:\"dialog\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dbfnox-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"cEzFH4wKH\",isMixedBorderRadius:false,layoutId:\"cEzFH4wKH\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/745189088\",width:\"100%\"})})})})})})]})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2130,intrinsicWidth:3784,pixelHeight:2130,pixelWidth:3784,sizes:\"705px\",src:\"https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg\",srcSet:\"https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg 3784w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2130,intrinsicWidth:3784,pixelHeight:2130,pixelWidth:3784,src:\"https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg\",srcSet:\"https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg 3784w\"},className:\"framer-1jkvotm hidden-72rtr7\",\"data-framer-name\":\"Emmy_reel_tablet\",id:\"1jkvotm\",name:\"Emmy_reel_tablet\",onTap:onTapizu9gt({overlay:overlay1}),ref:ref4,transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14ursns\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:54,name:\"Frame\",svg:'<svg width=\"54\" height=\"54\" viewBox=\"0 0 54 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5 37.125L36 27L22.5 16.875V37.125ZM27 4.5C14.58 4.5 4.5 14.58 4.5 27C4.5 39.42 14.58 49.5 27 49.5C39.42 49.5 49.5 39.42 49.5 27C49.5 14.58 39.42 4.5 27 4.5ZM27 45C17.0775 45 9 36.9225 9 27C9 17.0775 17.0775 9 27 9C36.9225 9 45 17.0775 45 27C45 36.9225 36.9225 45 27 45Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{offsetX:-.5,offsetY:-396.093994140625,safeArea:false}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1jkvotm\",offsetX:0,offsetY:-504,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:\"framer-fi8d2t\",exit:animation,initial:animation2,ref:ref5,role:\"dialog\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uef5qk-container hidden-1epnm2o\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"D7dWSY6Da\",isMixedBorderRadius:false,layoutId:\"D7dWSY6Da\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/745189088\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3lgy04-container hidden-72rtr7\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"MRdP5xjWw\",isMixedBorderRadius:false,layoutId:\"MRdP5xjWw\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/745189088\",width:\"100%\"})})})]})})})})]})})})})]})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kv1l1n hidden-72rtr7 hidden-1epnm2o\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:689,intrinsicWidth:1201,loading:getLoadingLazyAtYPosition(104),positionX:\"center\",positionY:\"center\",sizes:\"380px\",src:\"https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg\",srcSet:\"https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg 1201w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:689,intrinsicWidth:1201,positionX:\"center\",positionY:\"center\",sizes:\"380px\",src:\"https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg\",srcSet:\"https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s6duj3mmOp9CAuvdPky8oGRU40M.svg 1201w\"},className:\"framer-1tyoxxz\",\"data-framer-name\":\"Frame 1218\",name:\"Frame 1218\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2130,intrinsicWidth:3784,loading:getLoadingLazyAtYPosition(117.00000000000006),pixelHeight:2130,pixelWidth:3784,sizes:\"337px\",src:\"https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg\",srcSet:\"https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg 3784w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2130,intrinsicWidth:3784,pixelHeight:2130,pixelWidth:3784,sizes:\"337px\",src:\"https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg\",srcSet:\"https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xX3O20nx629Ge0AY9kykZXC4P2w.jpg 3784w\"},className:\"framer-t37bdf\",\"data-framer-name\":\"Emmy_reel_mobile\",id:\"t37bdf\",name:\"Emmy_reel_mobile\",onTap:onTapwelu7j({overlay:overlay2}),transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xgn7qn\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:54,name:\"Frame\",svg:'<svg width=\"54\" height=\"54\" viewBox=\"0 0 54 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5 37.125L36 27L22.5 16.875V37.125ZM27 4.5C14.58 4.5 4.5 14.58 4.5 27C4.5 39.42 14.58 49.5 27 49.5C39.42 49.5 49.5 39.42 49.5 27C49.5 14.58 39.42 4.5 27 4.5ZM27 45C17.0775 45 9 36.9225 9 27C9 17.0775 17.0775 9 27 9C36.9225 9 45 17.0775 45 27C45 36.9225 36.9225 45 27 45Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1p3w3k\",\"data-framer-portal-id\":\"t37bdf\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"M8eksBc2X\"),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6iwhks-container hidden-72rtr7\",\"data-framer-portal-id\":\"t37bdf\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"UZV040jVc\",isMixedBorderRadius:false,layoutId:\"UZV040jVc\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/745189088\",width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})})]})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s9tvz3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4q1rbv\",\"data-framer-name\":\"Frame 1158\",name:\"Frame 1158\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-125dsly\",\"data-framer-name\":\"Frame 1156\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:840,name:\"Frame 1156\",svg:'<svg width=\"840\" height=\"31\" viewBox=\"0 0 840 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.33\">\\n<path d=\"M33.3425 16.1283L0 16.1274V14.8917L33.3425 14.8925V16.1283Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M212.577 16.1274H179.235V14.8917H212.577V16.1274Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M186.571 26.3346H138.621L115.289 10.3449H97.4925L73.9539 26.3346H26.0058V25.0989H73.5735L97.1112 9.10913H115.672L139.004 25.0989H186.571V26.3346Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M115.672 21.2628H97.1112L73.5735 5.27386L26.0058 5.27308V4.0372L73.9539 4.03814L97.4925 20.0271H115.289L138.621 4.0372L186.571 4.03814V5.27386L139.004 5.27308L115.672 21.2628Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M102.567 15.1986L106.332 17.6685C107.016 17.2032 107.713 16.738 108.39 16.2862C108.93 15.926 109.482 15.5579 110.029 15.189L106.336 12.7034L102.567 15.1986ZM106.339 19.0295C106.22 19.0295 106.102 18.9959 106 18.9289L101.106 15.7177C100.932 15.6029 100.827 15.4097 100.827 15.2022C100.826 14.9939 100.931 14.8006 101.104 14.6858L105.997 11.4447C106.206 11.3069 106.477 11.3078 106.684 11.4473L111.477 14.6735C111.648 14.7873 111.748 14.9789 111.749 15.1837C111.751 15.3885 111.65 15.5801 111.481 15.6956C110.686 16.2403 109.868 16.7857 109.076 17.3145C108.289 17.8396 107.475 18.3825 106.687 18.9218C106.582 18.9934 106.46 19.0295 106.339 19.0295Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M201.459 20.1868H144.652L144.494 20.0783L116.992 1.23126H95.8255L67.9213 20.1868H11.1166V18.9511H67.5418L95.4451 -0.00442886H117.375L117.533 0.104088L145.036 18.9511H201.459V20.1868Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M117.375 31.0042H95.4451L67.5418 12.0486H11.1166V10.8128H67.9213L68.0785 10.9196L95.8255 29.7685H116.992L144.652 10.8128H201.459V12.0486H145.036L117.375 31.0042Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M162.025 26.2517L161.407 25.182L178.36 15.3938L160.688 5.19085L161.306 4.12017L179.904 14.859C180.095 14.9693 180.213 15.1732 180.213 15.3938C180.213 15.6145 180.095 15.8184 179.904 15.9287L162.025 26.2517Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M149.272 26.2579L148.678 25.1749L166.407 15.4336L148.666 5.19102L149.283 4.12025L167.975 14.9119C168.167 15.024 168.286 15.2307 168.283 15.454C168.281 15.6773 168.158 15.8811 167.962 15.9888L149.272 26.2579Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M49.7251 26.2517L31.8464 15.9288C31.6548 15.8184 31.5374 15.6145 31.5374 15.3938C31.5374 15.1732 31.6548 14.9693 31.8464 14.8589L50.4453 4.12025L51.0632 5.19094L33.391 15.3938L50.3429 25.1819L49.7251 26.2517Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M62.478 26.2578L43.7863 15.9887C43.5913 15.881 43.4686 15.6771 43.4668 15.4538C43.4642 15.2305 43.5816 15.0239 43.7749 14.9118L44.0653 14.7441L62.4665 4.12017L63.0844 5.19086L45.3434 15.4335L63.0729 25.1748L62.478 26.2578Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M98.3751 26.1802C98.8127 26.1802 99.1671 25.8253 99.1671 25.3876C99.1671 24.9498 98.8127 24.5949 98.3751 24.5949C97.9376 24.5949 97.5831 24.9498 97.5831 25.3876C97.5831 25.8253 97.9376 26.1802 98.3751 26.1802Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M103.651 26.1801C104.088 26.1801 104.443 25.8253 104.443 25.3874C104.443 24.9496 104.088 24.5948 103.651 24.5948C103.214 24.5948 102.859 24.9496 102.859 25.3874C102.859 25.8253 103.214 26.1801 103.651 26.1801Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M108.925 26.1804C109.363 26.1804 109.718 25.8256 109.718 25.3877C109.718 24.9499 109.363 24.5951 108.925 24.5951C108.488 24.5951 108.133 24.9499 108.133 25.3877C108.133 25.8256 108.488 26.1804 108.925 26.1804Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M114.201 26.1802C114.639 26.1802 114.994 25.8254 114.994 25.3875C114.994 24.9497 114.639 24.5949 114.201 24.5949C113.764 24.5949 113.409 24.9497 113.409 25.3875C113.409 25.8254 113.764 26.1802 114.201 26.1802Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M98.3751 5.77686C98.8127 5.77686 99.1671 5.42202 99.1671 4.98424C99.1671 4.5473 98.8127 4.19246 98.3751 4.19246C97.9376 4.19246 97.5831 4.5473 97.5831 4.98424C97.5831 5.42202 97.9376 5.77686 98.3751 5.77686Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M103.651 5.77673C104.088 5.77673 104.443 5.42189 104.443 4.98409C104.443 4.54714 104.088 4.1923 103.651 4.1923C103.214 4.1923 102.859 4.54714 102.859 4.98409C102.859 5.42189 103.214 5.77673 103.651 5.77673Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M108.925 5.77734C109.363 5.77734 109.718 5.42249 109.718 4.98472C109.718 4.54784 109.363 4.19298 108.925 4.19298C108.488 4.19298 108.133 4.54784 108.133 4.98472C108.133 5.42249 108.488 5.77734 108.925 5.77734Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M114.201 5.77722C114.639 5.77722 114.994 5.42231 114.994 4.98455C114.994 4.54758 114.639 4.19278 114.201 4.19278C113.764 4.19278 113.409 4.54758 113.409 4.98455C113.409 5.42231 113.764 5.77722 114.201 5.77722Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M264.539 16.22H225.727V14.7814H264.539V16.22Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M264.539 21.1666H214.146V19.7286H264.539V21.1666Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M264.54 11.5294H214.146V10.0904H264.54V11.5294Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M424.448 27.3801H358.324L358.14 27.254L325.944 5.19065L326.757 4.00317L358.77 25.9424H424.448V27.3801Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M269.008 27.3792H202.886V25.9414H268.566L300.863 4.00102L301.673 5.19094L269.008 27.3792Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M326.757 27.254L325.944 26.0685L358.324 3.87707H424.448V5.31679H358.77L326.757 27.254Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M300.863 27.2551L268.566 5.31537H202.886V3.87707H269.008L301.671 26.0648L300.863 27.2551Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M263.249 15.6445C264.899 16.7266 266.55 17.8106 268.201 18.8947C269.802 17.7978 271.452 16.7248 273.053 15.6297C272.244 15.085 271.435 14.5402 270.627 13.9973C269.818 13.4525 269.01 12.9077 268.201 12.3648C266.55 13.458 264.899 14.5512 263.249 15.6445Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M400.534 16.22H361.721V14.7814H400.534V16.22Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M412.115 21.1663H361.723V19.7286H412.115V21.1663Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M361.723 11.5297V10.0901H412.115V11.5297H361.723Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M363.013 15.6445C361.362 16.7266 359.709 17.8106 358.059 18.8947C356.459 17.7978 354.81 16.7248 353.209 15.6297C354.017 15.085 354.825 14.5402 355.633 13.9973C356.443 13.4525 357.251 12.9077 358.059 12.3648C359.709 13.458 361.362 14.5512 363.013 15.6445Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M353.499 27.6234C352.897 27.1251 346.871 24.5462 342.621 22.8032C338.42 24.5445 332.464 27.1198 331.868 27.6216C331.88 27.6109 331.889 27.6002 331.898 27.5913L330.821 26.634C331.005 26.4286 331.311 26.0857 336.935 23.6515C339.647 22.4746 342.317 21.3726 342.344 21.3601L342.617 21.2476L342.891 21.3601C342.919 21.3709 345.623 22.4781 348.368 23.6533C354.056 26.0893 354.36 26.4304 354.542 26.634L353.467 27.5913C353.476 27.6002 353.485 27.6109 353.499 27.6234Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M342.618 10.6377L342.345 10.5243C342.319 10.5148 339.646 9.40911 336.934 8.23534C331.311 5.80084 331.005 5.45683 330.823 5.2508L331.899 4.2944C331.889 4.28684 331.88 4.2755 331.868 4.26605C332.466 4.76505 338.42 7.34318 342.621 9.084C346.872 7.34129 352.898 4.76126 353.499 4.26226C353.484 4.27361 353.476 4.28684 353.467 4.2944L354.542 5.2508C354.361 5.45494 354.057 5.79705 348.367 8.23344C345.623 9.4091 342.92 10.5148 342.892 10.5262L342.618 10.6377Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M295.717 27.6234C295.117 27.1251 289.091 24.5462 284.84 22.8032C280.639 24.5445 274.684 27.1198 274.087 27.6216C274.099 27.6109 274.108 27.6002 274.117 27.5913L273.042 26.634C273.225 26.4286 273.531 26.0857 279.153 23.6515C281.866 22.4746 284.537 21.3726 284.564 21.3601L284.837 21.2476L285.11 21.3601C285.138 21.3709 287.843 22.4781 290.588 23.6533C296.276 26.0893 296.58 26.4304 296.76 26.634L295.687 27.5913C295.694 27.6002 295.705 27.6109 295.717 27.6234Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M284.837 10.6377L284.564 10.5243C284.537 10.5148 281.866 9.40911 279.153 8.23534C273.531 5.80084 273.225 5.45683 273.042 5.2508L274.117 4.2944C274.109 4.28684 274.099 4.2755 274.087 4.26605C274.684 4.76505 280.639 7.34318 284.84 9.084C289.091 7.34129 295.117 4.76126 295.718 4.26226C295.705 4.27361 295.694 4.28684 295.686 4.2944L296.761 5.2508C296.58 5.45494 296.276 5.79705 290.588 8.23344C287.844 9.4091 285.138 10.5148 285.111 10.5262L284.837 10.6377Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M314.037 3.45075C307.392 3.45075 301.987 8.85606 301.987 15.5008C301.987 22.1437 307.392 27.5509 314.037 27.5509C320.681 27.5509 326.087 22.1437 326.087 15.5008C326.087 8.85606 320.681 3.45075 314.037 3.45075ZM314.037 28.9884C306.598 28.9884 300.547 22.9377 300.547 15.5008C300.547 8.06211 306.598 2.01137 314.037 2.01137C321.473 2.01137 327.524 8.06211 327.524 15.5008C327.524 22.9377 321.473 28.9884 314.037 28.9884Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M314.037 9.81414C313.507 9.81414 312.977 9.97842 312.647 10.3089C311.864 11.0911 312.4 12.6518 314.037 14.457C315.675 12.6518 316.208 11.0911 315.428 10.3089C315.096 9.97842 314.568 9.81414 314.037 9.81414ZM315.079 15.4987C316.884 17.136 318.445 17.6718 319.225 16.8896C319.888 16.2268 319.888 14.7707 319.225 14.1079C318.443 13.3257 316.884 13.8615 315.079 15.4987ZM309.764 13.7532C309.525 13.7532 309.35 13.8018 309.232 13.8484C308.579 14.121 308.347 14.9069 308.347 15.4987C308.347 16.0905 308.579 16.8765 309.232 17.149C309.654 17.3227 310.826 17.4795 312.997 15.4987C311.429 14.0706 310.384 13.7532 309.764 13.7532ZM314.037 16.5386C312.057 18.7098 312.213 19.8821 312.387 20.3022C312.658 20.9575 313.446 21.1889 314.037 21.1889C314.629 21.1889 315.415 20.9575 315.688 20.3022C315.861 19.8821 316.016 18.7098 314.037 16.5386ZM314.037 22.6283C312.675 22.6283 311.506 21.932 311.058 20.8529C310.819 20.2779 310.724 19.4789 311.101 18.4335C310.057 18.8124 309.258 18.7153 308.683 18.4783C307.604 18.0302 306.908 16.8616 306.908 15.4987C306.908 14.1359 307.604 12.9673 308.683 12.5211C309.256 12.2821 310.053 12.1869 311.095 12.5622C310.46 10.8167 311.159 9.76373 311.629 9.29328C312.867 8.05554 315.206 8.05554 316.446 9.29328C316.914 9.76373 317.611 10.8129 316.981 12.5547C318.723 11.9256 319.772 12.6219 320.243 13.0905C321.481 14.3301 321.481 16.6693 320.243 17.907C319.772 18.3775 318.719 19.0757 316.974 18.4409C317.349 19.4826 317.252 20.2798 317.015 20.8529C316.569 21.932 315.4 22.6283 314.037 22.6283Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M448.1 16.1283L414.758 16.1274V14.8917L448.1 14.8925V16.1283Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M627.334 16.1274H593.992V14.8917H627.334V16.1274Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M601.328 26.3346H553.379L530.046 10.3449H512.25L488.711 26.3346H440.763V25.0989H488.331L511.869 9.10913H530.429L553.762 25.0989H601.328V26.3346Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M530.429 21.2628H511.869L488.331 5.27386L440.763 5.27308V4.0372L488.711 4.03814L512.25 20.0271H530.046L553.379 4.0372L601.328 4.03814V5.27386L553.762 5.27308L530.429 21.2628Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M517.324 15.1986L521.089 17.6685C521.774 17.2032 522.471 16.738 523.147 16.2862C523.688 15.926 524.239 15.5579 524.786 15.189L521.094 12.7034L517.324 15.1986ZM521.096 19.0295C520.978 19.0295 520.859 18.9959 520.758 18.9289L515.864 15.7177C515.69 15.6029 515.585 15.4097 515.585 15.2022C515.584 14.9939 515.689 14.8006 515.862 14.6858L520.754 11.4447C520.963 11.3069 521.235 11.3078 521.441 11.4473L526.235 14.6735C526.405 14.7873 526.506 14.9789 526.507 15.1837C526.508 15.3885 526.408 15.5801 526.239 15.6956C525.444 16.2403 524.626 16.7857 523.834 17.3145C523.047 17.8396 522.233 18.3825 521.445 18.9218C521.34 18.9934 521.218 19.0295 521.096 19.0295Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M616.217 20.1868H559.41L559.252 20.0783L531.749 1.23126H510.583L482.679 20.1868H425.874V18.9511H482.299L510.203 -0.00442886H532.133L532.291 0.104088L559.793 18.9511H616.217V20.1868Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M532.133 31.0042H510.203L482.299 12.0486H425.874V10.8128H482.679L482.836 10.9196L510.583 29.7685H531.749L559.41 10.8128H616.217V12.0486H559.793L532.133 31.0042Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M576.782 26.2517L576.164 25.182L593.117 15.3938L575.445 5.19085L576.063 4.12017L594.662 14.859C594.852 14.9693 594.971 15.1732 594.971 15.3938C594.971 15.6145 594.852 15.8184 594.662 15.9287L576.782 26.2517Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M564.029 26.2579L563.435 25.1749L581.164 15.4336L563.423 5.19102L564.041 4.12025L582.733 14.9119C582.925 15.024 583.043 15.2307 583.04 15.454C583.039 15.6773 582.916 15.8811 582.72 15.9888L564.029 26.2579Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M464.483 26.2517L446.604 15.9288C446.412 15.8184 446.295 15.6145 446.295 15.3938C446.295 15.1732 446.412 14.9693 446.604 14.8589L465.203 4.12025L465.821 5.19094L448.149 15.3938L465.1 25.1819L464.483 26.2517Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M477.236 26.2578L458.544 15.9887C458.349 15.881 458.226 15.6771 458.224 15.4538C458.222 15.2305 458.339 15.0239 458.532 14.9118L458.823 14.7441L477.224 4.12017L477.842 5.19086L460.101 15.4335L477.83 25.1748L477.236 26.2578Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M513.133 26.1802C513.57 26.1802 513.925 25.8253 513.925 25.3876C513.925 24.9498 513.57 24.5949 513.133 24.5949C512.695 24.5949 512.341 24.9498 512.341 25.3876C512.341 25.8253 512.695 26.1802 513.133 26.1802Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M518.409 26.1801C518.846 26.1801 519.201 25.8253 519.201 25.3874C519.201 24.9496 518.846 24.5948 518.409 24.5948C517.971 24.5948 517.617 24.9496 517.617 25.3874C517.617 25.8253 517.971 26.1801 518.409 26.1801Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M523.682 26.1804C524.121 26.1804 524.475 25.8256 524.475 25.3877C524.475 24.9499 524.121 24.5951 523.682 24.5951C523.245 24.5951 522.891 24.9499 522.891 25.3877C522.891 25.8256 523.245 26.1804 523.682 26.1804Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M528.959 26.1802C529.397 26.1802 529.751 25.8254 529.751 25.3875C529.751 24.9497 529.397 24.5949 528.959 24.5949C528.521 24.5949 528.167 24.9497 528.167 25.3875C528.167 25.8254 528.521 26.1802 528.959 26.1802Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M513.133 5.77686C513.57 5.77686 513.925 5.42202 513.925 4.98424C513.925 4.5473 513.57 4.19246 513.133 4.19246C512.695 4.19246 512.341 4.5473 512.341 4.98424C512.341 5.42202 512.695 5.77686 513.133 5.77686Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M518.409 5.77673C518.846 5.77673 519.201 5.42189 519.201 4.98409C519.201 4.54714 518.846 4.1923 518.409 4.1923C517.971 4.1923 517.617 4.54714 517.617 4.98409C517.617 5.42189 517.971 5.77673 518.409 5.77673Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M523.682 5.77734C524.121 5.77734 524.475 5.42249 524.475 4.98472C524.475 4.54784 524.121 4.19298 523.682 4.19298C523.245 4.19298 522.891 4.54784 522.891 4.98472C522.891 5.42249 523.245 5.77734 523.682 5.77734Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M528.959 5.77722C529.397 5.77722 529.751 5.42231 529.751 4.98455C529.751 4.54758 529.397 4.19278 528.959 4.19278C528.521 4.19278 528.167 4.54758 528.167 4.98455C528.167 5.42231 528.521 5.77722 528.959 5.77722Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M679.297 16.22H640.485V14.7814H679.297V16.22Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M679.297 21.1666H628.903V19.7286H679.297V21.1666Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M679.297 11.5294H628.903V10.0904H679.297V11.5294Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M839.206 27.3801H773.081L772.897 27.254L740.701 5.19065L741.514 4.00317L773.528 25.9424H839.206V27.3801Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M683.766 27.3792H617.644V25.9414H683.324L715.621 4.00102L716.43 5.19094L683.766 27.3792Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M741.514 27.254L740.701 26.0685L773.081 3.87707H839.206V5.31679H773.528L741.514 27.254Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M715.621 27.2551L683.324 5.31537H617.644V3.87707H683.766L716.429 26.0648L715.621 27.2551Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M678.006 15.6445C679.656 16.7266 681.308 17.8106 682.959 18.8947C684.559 17.7978 686.21 16.7248 687.81 15.6297C687.002 15.085 686.193 14.5402 685.385 13.9973C684.576 13.4525 683.767 12.9077 682.959 12.3648C681.308 13.458 679.656 14.5512 678.006 15.6445Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M815.291 16.22H776.479V14.7814H815.291V16.22Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M826.873 21.1663H776.48V19.7286H826.873V21.1663Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M776.48 11.5297V10.0901H826.873V11.5297H776.48Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M777.771 15.6445C776.12 16.7266 774.467 17.8106 772.816 18.8947C771.217 17.7978 769.568 16.7248 767.967 15.6297C768.775 15.085 769.582 14.5402 770.39 13.9973C771.2 13.4525 772.008 12.9077 772.816 12.3648C774.467 13.458 776.12 14.5512 777.771 15.6445Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M768.257 27.6234C767.655 27.1251 761.629 24.5462 757.378 22.8032C753.178 24.5445 747.222 27.1198 746.625 27.6216C746.638 27.6109 746.647 27.6002 746.656 27.5913L745.579 26.634C745.763 26.4286 746.068 26.0857 751.692 23.6515C754.405 22.4746 757.075 21.3726 757.102 21.3601L757.375 21.2476L757.648 21.3601C757.677 21.3709 760.381 22.4781 763.126 23.6533C768.814 26.0893 769.117 26.4304 769.3 26.634L768.224 27.5913C768.233 27.6002 768.242 27.6109 768.257 27.6234Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M757.375 10.6377L757.103 10.5243C757.076 10.5148 754.404 9.40911 751.691 8.23534C746.068 5.80084 745.762 5.45683 745.581 5.2508L746.656 4.2944C746.647 4.28684 746.637 4.2755 746.626 4.26605C747.223 4.76505 753.177 7.34318 757.379 9.084C761.63 7.34129 767.655 4.76126 768.257 4.26226C768.241 4.27361 768.234 4.28684 768.224 4.2944L769.3 5.2508C769.118 5.45494 768.814 5.79705 763.125 8.23344C760.38 9.4091 757.677 10.5148 757.649 10.5262L757.375 10.6377Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M710.475 27.6234C709.874 27.1251 703.849 24.5462 699.598 22.8032C695.396 24.5445 689.441 27.1198 688.844 27.6216C688.856 27.6109 688.866 27.6002 688.874 27.5913L687.799 26.634C687.982 26.4286 688.288 26.0857 693.911 23.6515C696.623 22.4746 699.294 21.3726 699.321 21.3601L699.594 21.2476L699.868 21.3601C699.896 21.3709 702.6 22.4781 705.345 23.6533C711.033 26.0893 711.337 26.4304 711.517 26.634L710.444 27.5913C710.451 27.6002 710.462 27.6109 710.475 27.6234Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M699.595 10.6377L699.321 10.5243C699.295 10.5148 696.623 9.40911 693.911 8.23534C688.289 5.80084 687.982 5.45683 687.8 5.2508L688.874 4.2944C688.866 4.28684 688.857 4.2755 688.844 4.26605C689.441 4.76505 695.397 7.34318 699.598 9.084C703.848 7.34129 709.875 4.76126 710.476 4.26226C710.462 4.27361 710.452 4.28684 710.444 4.2944L711.518 5.2508C711.337 5.45494 711.033 5.79705 705.345 8.23344C702.601 9.4091 699.896 10.5148 699.868 10.5262L699.595 10.6377Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M728.794 3.45075C722.149 3.45075 716.744 8.85606 716.744 15.5008C716.744 22.1437 722.149 27.5509 728.794 27.5509C735.439 27.5509 740.844 22.1437 740.844 15.5008C740.844 8.85606 735.439 3.45075 728.794 3.45075ZM728.794 28.9884C721.355 28.9884 715.305 22.9377 715.305 15.5008C715.305 8.06211 721.355 2.01137 728.794 2.01137C736.231 2.01137 742.282 8.06211 742.282 15.5008C742.282 22.9377 736.231 28.9884 728.794 28.9884Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M728.795 9.81414C728.265 9.81414 727.734 9.97842 727.404 10.3089C726.622 11.0911 727.158 12.6518 728.795 14.457C730.432 12.6518 730.966 11.0911 730.186 10.3089C729.853 9.97842 729.325 9.81414 728.795 9.81414ZM729.837 15.4987C731.642 17.136 733.203 17.6718 733.983 16.8896C734.646 16.2268 734.646 14.7707 733.983 14.1079C733.201 13.3257 731.642 13.8615 729.837 15.4987ZM724.522 13.7532C724.283 13.7532 724.107 13.8018 723.99 13.8484C723.336 14.121 723.105 14.9069 723.105 15.4987C723.105 16.0905 723.336 16.8765 723.99 17.149C724.411 17.3227 725.584 17.4795 727.755 15.4987C726.187 14.0706 725.141 13.7532 724.522 13.7532ZM728.795 16.5386C726.814 18.7098 726.971 19.8821 727.145 20.3022C727.415 20.9575 728.203 21.1889 728.795 21.1889C729.387 21.1889 730.173 20.9575 730.445 20.3022C730.619 19.8821 730.774 18.7098 728.795 16.5386ZM728.795 22.6283C727.432 22.6283 726.263 21.932 725.815 20.8529C725.576 20.2779 725.481 19.4789 725.858 18.4335C724.815 18.8124 724.016 18.7153 723.441 18.4783C722.362 18.0302 721.665 16.8616 721.665 15.4987C721.665 14.1359 722.362 12.9673 723.441 12.5211C724.014 12.2821 724.811 12.1869 725.853 12.5622C725.218 10.8167 725.916 9.76373 726.387 9.29328C727.624 8.05554 729.963 8.05554 731.203 9.29328C731.672 9.76373 732.368 10.8129 731.739 12.5547C733.481 11.9256 734.53 12.6219 735 13.0905C736.238 14.3301 736.238 16.6693 735 17.907C734.53 18.3775 733.477 19.0757 731.731 18.4409C732.107 19.4826 732.01 20.2798 731.772 20.8529C731.326 21.932 730.158 22.6283 728.795 22.6283Z\" fill=\"#E4AE5D\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YjxZyl1O1\"},implicitPathVariables:undefined},{href:{webPageId:\"YjxZyl1O1\"},implicitPathVariables:undefined},{href:{webPageId:\"YjxZyl1O1\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u3c4gl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{BLsQ21ULS:resolvedLinks[2]},nn0CR5xO9:{BLsQ21ULS:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(CTA,{BLsQ21ULS:resolvedLinks[0],height:\"100%\",id:\"c6s78LiSq\",layoutId:\"c6s78LiSq\",variant:\"po4h4pIQ4\",W7bZ6PWnZ:\"See full portfolio \u2192\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wufpzb hidden-byc1nn\",\"data-framer-name\":\"Frame 1157\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:425,name:\"Frame 1157\",svg:'<svg width=\"425\" height=\"31\" viewBox=\"0 0 425 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.33\">\\n<path d=\"M33.548 16.1283L0.205566 16.1274V14.8917L33.548 14.8925V16.1283Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M212.782 16.1274H179.44V14.8917H212.782V16.1274Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M186.777 26.3346H138.827L115.494 10.3449H97.6981L74.1595 26.3346H26.2114V25.0989H73.7791L97.3168 9.10913H115.877L139.21 25.0989H186.777V26.3346Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M115.877 21.2628H97.3168L73.7791 5.27386L26.2114 5.27308V4.0372L74.1595 4.03814L97.6981 20.0271H115.494L138.827 4.0372L186.777 4.03814V5.27386L139.21 5.27308L115.877 21.2628Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M102.772 15.1986L106.537 17.6685C107.222 17.2032 107.919 16.738 108.595 16.2862C109.136 15.926 109.687 15.5579 110.234 15.189L106.542 12.7034L102.772 15.1986ZM106.544 19.0295C106.426 19.0295 106.307 18.9959 106.206 18.9289L101.312 15.7177C101.138 15.6029 101.033 15.4097 101.033 15.2022C101.032 14.9939 101.137 14.8006 101.31 14.6858L106.203 11.4447C106.411 11.3069 106.683 11.3078 106.889 11.4473L111.683 14.6735C111.853 14.7873 111.954 14.9789 111.955 15.1837C111.956 15.3885 111.856 15.5801 111.687 15.6956C110.892 16.2403 110.074 16.7857 109.282 17.3145C108.495 17.8396 107.681 18.3825 106.893 18.9218C106.788 18.9934 106.666 19.0295 106.544 19.0295Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M201.665 20.1868H144.858L144.7 20.0783L117.197 1.23126H96.0311L68.1269 20.1868H11.3222V18.9511H67.7473L95.6507 -0.00442886H117.581L117.739 0.104088L145.241 18.9511H201.665V20.1868Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M117.581 31.0042H95.6507L67.7473 12.0486H11.3222V10.8128H68.1269L68.2841 10.9196L96.0311 29.7685H117.197L144.858 10.8128H201.665V12.0486H145.241L117.581 31.0042Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M162.23 26.2517L161.612 25.182L178.565 15.3938L160.893 5.19085L161.511 4.12017L180.11 14.859C180.3 14.9693 180.419 15.1732 180.419 15.3938C180.419 15.6145 180.3 15.8184 180.11 15.9287L162.23 26.2517Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M149.477 26.2579L148.883 25.1749L166.612 15.4336L148.871 5.19102L149.489 4.12025L168.181 14.9119C168.373 15.024 168.491 15.2307 168.488 15.454C168.487 15.6773 168.364 15.8811 168.168 15.9888L149.477 26.2579Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M49.9306 26.2517L32.0519 15.9288C31.8604 15.8184 31.743 15.6145 31.743 15.3938C31.743 15.1732 31.8604 14.9693 32.0519 14.8589L50.6509 4.12025L51.2688 5.19094L33.5966 15.3938L50.5485 25.1819L49.9306 26.2517Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M62.6836 26.2578L43.9919 15.9887C43.7969 15.881 43.6742 15.6771 43.6724 15.4538C43.6698 15.2305 43.7872 15.0239 43.9805 14.9118L44.2709 14.7441L62.6721 4.12017L63.29 5.19086L45.549 15.4335L63.2785 25.1748L62.6836 26.2578Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M98.5807 26.1802C99.0183 26.1802 99.3727 25.8253 99.3727 25.3876C99.3727 24.9498 99.0183 24.5949 98.5807 24.5949C98.1431 24.5949 97.7887 24.9498 97.7887 25.3876C97.7887 25.8253 98.1431 26.1802 98.5807 26.1802Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M103.857 26.1801C104.294 26.1801 104.649 25.8253 104.649 25.3874C104.649 24.9496 104.294 24.5948 103.857 24.5948C103.419 24.5948 103.065 24.9496 103.065 25.3874C103.065 25.8253 103.419 26.1801 103.857 26.1801Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M109.13 26.1804C109.569 26.1804 109.923 25.8256 109.923 25.3877C109.923 24.9499 109.569 24.5951 109.13 24.5951C108.693 24.5951 108.339 24.9499 108.339 25.3877C108.339 25.8256 108.693 26.1804 109.13 26.1804Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M114.407 26.1802C114.845 26.1802 115.199 25.8254 115.199 25.3875C115.199 24.9497 114.845 24.5949 114.407 24.5949C113.97 24.5949 113.615 24.9497 113.615 25.3875C113.615 25.8254 113.97 26.1802 114.407 26.1802Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M98.5807 5.77686C99.0183 5.77686 99.3727 5.42202 99.3727 4.98424C99.3727 4.5473 99.0183 4.19246 98.5807 4.19246C98.1431 4.19246 97.7887 4.5473 97.7887 4.98424C97.7887 5.42202 98.1431 5.77686 98.5807 5.77686Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M103.857 5.77673C104.294 5.77673 104.649 5.42189 104.649 4.98409C104.649 4.54714 104.294 4.1923 103.857 4.1923C103.419 4.1923 103.065 4.54714 103.065 4.98409C103.065 5.42189 103.419 5.77673 103.857 5.77673Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M109.13 5.77734C109.569 5.77734 109.923 5.42249 109.923 4.98472C109.923 4.54784 109.569 4.19298 109.13 4.19298C108.693 4.19298 108.339 4.54784 108.339 4.98472C108.339 5.42249 108.693 5.77734 109.13 5.77734Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M114.407 5.77722C114.845 5.77722 115.199 5.42231 115.199 4.98455C115.199 4.54758 114.845 4.19278 114.407 4.19278C113.97 4.19278 113.615 4.54758 113.615 4.98455C113.615 5.42231 113.97 5.77722 114.407 5.77722Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M264.745 16.22H225.933V14.7814H264.745V16.22Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M264.745 21.1666H214.351V19.7286H264.745V21.1666Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M264.745 11.5294H214.352V10.0904H264.745V11.5294Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M424.654 27.3801H358.53L358.345 27.254L326.149 5.19065L326.962 4.00317L358.976 25.9424H424.654V27.3801Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M269.214 27.3792H203.092V25.9414H268.772L301.069 4.00102L301.878 5.19094L269.214 27.3792Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M326.962 27.254L326.149 26.0685L358.53 3.87707H424.654V5.31679H358.976L326.962 27.254Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M301.069 27.2551L268.772 5.31537H203.092V3.87707H269.214L301.877 26.0648L301.069 27.2551Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M263.454 15.6445C265.104 16.7266 266.756 17.8106 268.407 18.8947C270.008 17.7978 271.658 16.7248 273.258 15.6297C272.45 15.085 271.641 14.5402 270.833 13.9973C270.024 13.4525 269.215 12.9077 268.407 12.3648C266.756 13.458 265.104 14.5512 263.454 15.6445Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M400.739 16.22H361.927V14.7814H400.739V16.22Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M412.321 21.1663H361.928V19.7286H412.321V21.1663Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M361.928 11.5297V10.0901H412.321V11.5297H361.928Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M363.219 15.6445C361.568 16.7266 359.915 17.8106 358.264 18.8947C356.665 17.7978 355.016 16.7248 353.415 15.6297C354.223 15.085 355.031 14.5402 355.839 13.9973C356.648 13.4525 357.456 12.9077 358.264 12.3648C359.915 13.458 361.568 14.5512 363.219 15.6445Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M353.705 27.6234C353.103 27.1251 347.077 24.5462 342.827 22.8032C338.626 24.5445 332.67 27.1198 332.073 27.6216C332.086 27.6109 332.095 27.6002 332.104 27.5913L331.027 26.634C331.211 26.4286 331.516 26.0857 337.14 23.6515C339.853 22.4746 342.523 21.3726 342.55 21.3601L342.823 21.2476L343.096 21.3601C343.125 21.3709 345.829 22.4781 348.574 23.6533C354.262 26.0893 354.565 26.4304 354.748 26.634L353.672 27.5913C353.681 27.6002 353.69 27.6109 353.705 27.6234Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M342.823 10.6377L342.551 10.5243C342.524 10.5148 339.852 9.40911 337.139 8.23534C331.516 5.80084 331.21 5.45683 331.029 5.2508L332.104 4.2944C332.095 4.28684 332.085 4.2755 332.074 4.26605C332.671 4.76505 338.625 7.34318 342.827 9.084C347.078 7.34129 353.104 4.76126 353.705 4.26226C353.689 4.27361 353.682 4.28684 353.672 4.2944L354.748 5.2508C354.566 5.45494 354.262 5.79705 348.573 8.23344C345.828 9.4091 343.126 10.5148 343.097 10.5262L342.823 10.6377Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M295.923 27.6234C295.323 27.1251 289.297 24.5462 285.046 22.8032C280.844 24.5445 274.889 27.1198 274.292 27.6216C274.305 27.6109 274.314 27.6002 274.322 27.5913L273.247 26.634C273.43 26.4286 273.736 26.0857 279.359 23.6515C282.071 22.4746 284.742 21.3726 284.769 21.3601L285.043 21.2476L285.316 21.3601C285.344 21.3709 288.048 22.4781 290.793 23.6533C296.482 26.0893 296.785 26.4304 296.966 26.634L295.892 27.5913C295.899 27.6002 295.91 27.6109 295.923 27.6234Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M285.043 10.6377L284.77 10.5243C284.743 10.5148 282.071 9.40911 279.359 8.23534C273.737 5.80084 273.43 5.45683 273.248 5.2508L274.322 4.2944C274.314 4.28684 274.305 4.2755 274.293 4.26605C274.889 4.76505 280.845 7.34318 285.046 9.084C289.296 7.34129 295.323 4.76126 295.924 4.26226C295.91 4.27361 295.9 4.28684 295.892 4.2944L296.966 5.2508C296.786 5.45494 296.481 5.79705 290.793 8.23344C288.049 9.4091 285.344 10.5148 285.316 10.5262L285.043 10.6377Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M314.242 3.45075C307.597 3.45075 302.192 8.85606 302.192 15.5008C302.192 22.1437 307.597 27.5509 314.242 27.5509C320.887 27.5509 326.292 22.1437 326.292 15.5008C326.292 8.85606 320.887 3.45075 314.242 3.45075ZM314.242 28.9884C306.803 28.9884 300.753 22.9377 300.753 15.5008C300.753 8.06211 306.803 2.01137 314.242 2.01137C321.679 2.01137 327.73 8.06211 327.73 15.5008C327.73 22.9377 321.679 28.9884 314.242 28.9884Z\" fill=\"#E4AE5D\"/>\\n<path d=\"M314.243 9.81414C313.713 9.81414 313.183 9.97842 312.852 10.3089C312.07 11.0911 312.606 12.6518 314.243 14.457C315.88 12.6518 316.414 11.0911 315.634 10.3089C315.301 9.97842 314.773 9.81414 314.243 9.81414ZM315.285 15.4987C317.09 17.136 318.651 17.6718 319.431 16.8896C320.094 16.2268 320.094 14.7707 319.431 14.1079C318.649 13.3257 317.09 13.8615 315.285 15.4987ZM309.97 13.7532C309.731 13.7532 309.555 13.8018 309.438 13.8484C308.784 14.121 308.553 14.9069 308.553 15.4987C308.553 16.0905 308.784 16.8765 309.438 17.149C309.86 17.3227 311.032 17.4795 313.203 15.4987C311.635 14.0706 310.589 13.7532 309.97 13.7532ZM314.243 16.5386C312.262 18.7098 312.419 19.8821 312.593 20.3022C312.863 20.9575 313.651 21.1889 314.243 21.1889C314.835 21.1889 315.621 20.9575 315.893 20.3022C316.067 19.8821 316.222 18.7098 314.243 16.5386ZM314.243 22.6283C312.88 22.6283 311.711 21.932 311.263 20.8529C311.024 20.2779 310.929 19.4789 311.306 18.4335C310.263 18.8124 309.464 18.7153 308.889 18.4783C307.81 18.0302 307.113 16.8616 307.113 15.4987C307.113 14.1359 307.81 12.9673 308.889 12.5211C309.462 12.2821 310.259 12.1869 311.301 12.5622C310.666 10.8167 311.364 9.76373 311.835 9.29328C313.072 8.05554 315.412 8.05554 316.651 9.29328C317.12 9.76373 317.816 10.8129 317.187 12.5547C318.929 11.9256 319.978 12.6219 320.448 13.0905C321.686 14.3301 321.686 16.6693 320.448 17.907C319.978 18.3775 318.925 19.0757 317.179 18.4409C317.555 19.4826 317.458 20.2798 317.221 20.8529C316.774 21.932 315.606 22.6283 314.243 22.6283Z\" fill=\"#E4AE5D\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j7yzdh\",\"data-framer-name\":\"Frame 1141\",name:\"Frame 1141\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-169rwsg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p3t3zq\",\"data-framer-name\":\"Frame 1209\",name:\"Frame 1209\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-98nrem\",\"data-styles-preset\":\"UOWn5bxOu\",children:['\"What other career do you get to collaborate with the most talented people on the planet, from around the planet, all over the planet? ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-468e4e93-f3a8-4a1e-b116-b2f86e8ab72b, rgb(228, 174, 93))\"},children:'I\u2019m humbled to be here with you.\"'})]})}),className:\"framer-oal5a5\",\"data-framer-name\":\"Medium length hero headline goes here\",fonts:[\"Inter\"],name:\"Medium length hero headline goes here\",transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3547,intrinsicWidth:5320,loading:getLoadingLazyAtYPosition(546.4),pixelHeight:3547,pixelWidth:5320,positionX:\"50.8%\",positionY:\"23%\",sizes:\"min(100vw - 32px, 1100px)\",src:\"https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg\",srcSet:\"https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg 5320w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3547,intrinsicWidth:5320,pixelHeight:3547,pixelWidth:5320,positionX:\"51.4%\",positionY:\"51.6%\",sizes:\"233px\",src:\"https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg\",srcSet:\"https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg 5320w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3547,intrinsicWidth:5320,loading:getLoadingLazyAtYPosition(983),pixelHeight:3547,pixelWidth:5320,positionX:\"51.4%\",positionY:\"51.6%\",sizes:\"316px\",src:\"https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg\",srcSet:\"https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/d6aYelm0RLlr3nZhcXL3yEv4.jpeg 5320w\"},className:\"framer-f8sw8j\",\"data-framer-name\":\"7d244c28-45e7-4d83-94aa-eadc71ccde34 1\",name:\"7d244c28-45e7-4d83-94aa-eadc71ccde34 1\"})})]})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1210,positionX:\"center\",positionY:\"bottom\"},className:\"framer-s75gzp\",\"data-framer-name\":\"Logos + portfolio\",name:\"Logos + portfolio\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-165q3dg\",\"data-framer-name\":\"Film-reel\",name:\"Film-reel\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r9ib8j\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-899o4l-container\",style:{rotate:-1.4},children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"y6mNtf4UA\",layoutId:\"y6mNtf4UA\",style:{height:\"100%\",width:\"100%\"},variant:\"mZAUCQUML\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u07lyp-container\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"t9TFyVVsF\",layoutId:\"t9TFyVVsF\",style:{width:\"100%\"},variant:\"aU_QoEzt8\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-64bmwj hidden-byc1nn\",\"data-framer-name\":\"Celebs-Desktop\",name:\"Celebs-Desktop\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yy1b03\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15c6p6l\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1944,intrinsicWidth:3448,pixelHeight:1944,pixelWidth:3448,sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/pSWIXKpN8dd5Z4cgIS2cuj3z2lA.png\",srcSet:\"https://framerusercontent.com/images/pSWIXKpN8dd5Z4cgIS2cuj3z2lA.png?scale-down-to=512 512w,https://framerusercontent.com/images/pSWIXKpN8dd5Z4cgIS2cuj3z2lA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pSWIXKpN8dd5Z4cgIS2cuj3z2lA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pSWIXKpN8dd5Z4cgIS2cuj3z2lA.png 3448w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1944,intrinsicWidth:3448,loading:getLoadingLazyAtYPosition(1546),pixelHeight:1944,pixelWidth:3448,sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/pSWIXKpN8dd5Z4cgIS2cuj3z2lA.png\",srcSet:\"https://framerusercontent.com/images/pSWIXKpN8dd5Z4cgIS2cuj3z2lA.png?scale-down-to=512 512w,https://framerusercontent.com/images/pSWIXKpN8dd5Z4cgIS2cuj3z2lA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pSWIXKpN8dd5Z4cgIS2cuj3z2lA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pSWIXKpN8dd5Z4cgIS2cuj3z2lA.png 3448w\"},className:\"framer-1cfo0e1\",\"data-framer-name\":\"Frame 1145\",name:\"Frame 1145\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xblkvs\",\"data-framer-name\":\"Frame 1144\",name:\"Frame 1144\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1575,intrinsicWidth:3780,pixelHeight:1575,pixelWidth:3780,positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/5EVtsb4UEqhyYPCozI3i2VkI7g.png\",srcSet:\"https://framerusercontent.com/images/5EVtsb4UEqhyYPCozI3i2VkI7g.png?scale-down-to=512 512w,https://framerusercontent.com/images/5EVtsb4UEqhyYPCozI3i2VkI7g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5EVtsb4UEqhyYPCozI3i2VkI7g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5EVtsb4UEqhyYPCozI3i2VkI7g.png 3780w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1575,intrinsicWidth:3780,loading:getLoadingLazyAtYPosition(1546),pixelHeight:1575,pixelWidth:3780,positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/5EVtsb4UEqhyYPCozI3i2VkI7g.png\",srcSet:\"https://framerusercontent.com/images/5EVtsb4UEqhyYPCozI3i2VkI7g.png?scale-down-to=512 512w,https://framerusercontent.com/images/5EVtsb4UEqhyYPCozI3i2VkI7g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5EVtsb4UEqhyYPCozI3i2VkI7g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5EVtsb4UEqhyYPCozI3i2VkI7g.png 3780w\"},className:\"framer-1cbc1n0\",\"data-framer-name\":\"Frame 1145\",name:\"Frame 1145\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cuzzgf\",\"data-framer-name\":\"Frame 1144\",name:\"Frame 1144\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:4096,pixelHeight:2160,pixelWidth:4096,positionX:\"60.8%\",positionY:\"41.4%\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/jvNSGuYtctNJdXhfe27CtxeK5s.jpg\",srcSet:\"https://framerusercontent.com/images/jvNSGuYtctNJdXhfe27CtxeK5s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jvNSGuYtctNJdXhfe27CtxeK5s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jvNSGuYtctNJdXhfe27CtxeK5s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jvNSGuYtctNJdXhfe27CtxeK5s.jpg 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:4096,loading:getLoadingLazyAtYPosition(1546),pixelHeight:2160,pixelWidth:4096,positionX:\"60.8%\",positionY:\"41.4%\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/jvNSGuYtctNJdXhfe27CtxeK5s.jpg\",srcSet:\"https://framerusercontent.com/images/jvNSGuYtctNJdXhfe27CtxeK5s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jvNSGuYtctNJdXhfe27CtxeK5s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jvNSGuYtctNJdXhfe27CtxeK5s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jvNSGuYtctNJdXhfe27CtxeK5s.jpg 4096w\"},className:\"framer-178j1dp\",\"data-framer-name\":\"Frame 1146\",name:\"Frame 1146\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b2g37f\",\"data-framer-name\":\"Frame 1144\",name:\"Frame 1144\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4z9eyp\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2074,intrinsicWidth:2112,pixelHeight:2074,pixelWidth:2112,positionX:\"center\",positionY:\"top\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/aKTg4PNy4fdIB8guvpG34hcM6tA.jpg\",srcSet:\"https://framerusercontent.com/images/aKTg4PNy4fdIB8guvpG34hcM6tA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aKTg4PNy4fdIB8guvpG34hcM6tA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aKTg4PNy4fdIB8guvpG34hcM6tA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aKTg4PNy4fdIB8guvpG34hcM6tA.jpg 2112w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2074,intrinsicWidth:2112,loading:getLoadingLazyAtYPosition(1810.5),pixelHeight:2074,pixelWidth:2112,positionX:\"center\",positionY:\"top\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/aKTg4PNy4fdIB8guvpG34hcM6tA.jpg\",srcSet:\"https://framerusercontent.com/images/aKTg4PNy4fdIB8guvpG34hcM6tA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aKTg4PNy4fdIB8guvpG34hcM6tA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aKTg4PNy4fdIB8guvpG34hcM6tA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aKTg4PNy4fdIB8guvpG34hcM6tA.jpg 2112w\"},className:\"framer-1mqz4dm\",\"data-framer-name\":\"Frame 1146\",name:\"Frame 1146\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19g7zif\",\"data-framer-name\":\"Frame 1144\",name:\"Frame 1144\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:474,intrinsicWidth:764,pixelHeight:474,pixelWidth:764,positionX:\"51.6%\",positionY:\"33.8%\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/I0cUJu1mJ8tXwjcq5PprCb3t72U.jpg\",srcSet:\"https://framerusercontent.com/images/I0cUJu1mJ8tXwjcq5PprCb3t72U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I0cUJu1mJ8tXwjcq5PprCb3t72U.jpg 764w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:474,intrinsicWidth:764,loading:getLoadingLazyAtYPosition(1810.5),pixelHeight:474,pixelWidth:764,positionX:\"51.6%\",positionY:\"33.8%\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/I0cUJu1mJ8tXwjcq5PprCb3t72U.jpg\",srcSet:\"https://framerusercontent.com/images/I0cUJu1mJ8tXwjcq5PprCb3t72U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I0cUJu1mJ8tXwjcq5PprCb3t72U.jpg 764w\"},className:\"framer-2gyg2n\",\"data-framer-name\":\"Frame 1146\",name:\"Frame 1146\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-157vkkl\",\"data-framer-name\":\"Frame 1144\",name:\"Frame 1144\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1942,intrinsicWidth:3454,pixelHeight:1942,pixelWidth:3454,sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/vkjCzDq9Iv8kl9ljR7JSEYq12o.png\",srcSet:\"https://framerusercontent.com/images/vkjCzDq9Iv8kl9ljR7JSEYq12o.png?scale-down-to=512 512w,https://framerusercontent.com/images/vkjCzDq9Iv8kl9ljR7JSEYq12o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vkjCzDq9Iv8kl9ljR7JSEYq12o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vkjCzDq9Iv8kl9ljR7JSEYq12o.png 3454w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1942,intrinsicWidth:3454,loading:getLoadingLazyAtYPosition(1810.5),pixelHeight:1942,pixelWidth:3454,sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/vkjCzDq9Iv8kl9ljR7JSEYq12o.png\",srcSet:\"https://framerusercontent.com/images/vkjCzDq9Iv8kl9ljR7JSEYq12o.png?scale-down-to=512 512w,https://framerusercontent.com/images/vkjCzDq9Iv8kl9ljR7JSEYq12o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vkjCzDq9Iv8kl9ljR7JSEYq12o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vkjCzDq9Iv8kl9ljR7JSEYq12o.png 3454w\"},className:\"framer-1actkw5\",\"data-framer-name\":\"Frame 1145\",name:\"Frame 1145\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i86y0p\",\"data-framer-name\":\"Frame 1144\",name:\"Frame 1144\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uqrb6z\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1921,intrinsicWidth:2955,pixelHeight:1921,pixelWidth:2955,positionX:\"center\",positionY:\"top\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/JMIwFJ03CFj5NSWiRQ5kKE5ZEsQ.jpg\",srcSet:\"https://framerusercontent.com/images/JMIwFJ03CFj5NSWiRQ5kKE5ZEsQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JMIwFJ03CFj5NSWiRQ5kKE5ZEsQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JMIwFJ03CFj5NSWiRQ5kKE5ZEsQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JMIwFJ03CFj5NSWiRQ5kKE5ZEsQ.jpg 2955w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1921,intrinsicWidth:2955,loading:getLoadingLazyAtYPosition(2075),pixelHeight:1921,pixelWidth:2955,positionX:\"center\",positionY:\"top\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/JMIwFJ03CFj5NSWiRQ5kKE5ZEsQ.jpg\",srcSet:\"https://framerusercontent.com/images/JMIwFJ03CFj5NSWiRQ5kKE5ZEsQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JMIwFJ03CFj5NSWiRQ5kKE5ZEsQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JMIwFJ03CFj5NSWiRQ5kKE5ZEsQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JMIwFJ03CFj5NSWiRQ5kKE5ZEsQ.jpg 2955w\"},className:\"framer-2r4bcv\",\"data-framer-name\":\"Frame 1146\",name:\"Frame 1146\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-aw3mp7\",\"data-framer-name\":\"Frame 1144\",name:\"Frame 1144\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1546,intrinsicWidth:2328,pixelHeight:1546,pixelWidth:2328,positionX:\"center\",positionY:\"top\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/ieA41WP96w6jTQA0z6oBNQdHxSY.jpg\",srcSet:\"https://framerusercontent.com/images/ieA41WP96w6jTQA0z6oBNQdHxSY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ieA41WP96w6jTQA0z6oBNQdHxSY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ieA41WP96w6jTQA0z6oBNQdHxSY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ieA41WP96w6jTQA0z6oBNQdHxSY.jpg 2328w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1546,intrinsicWidth:2328,loading:getLoadingLazyAtYPosition(2075),pixelHeight:1546,pixelWidth:2328,positionX:\"center\",positionY:\"top\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/ieA41WP96w6jTQA0z6oBNQdHxSY.jpg\",srcSet:\"https://framerusercontent.com/images/ieA41WP96w6jTQA0z6oBNQdHxSY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ieA41WP96w6jTQA0z6oBNQdHxSY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ieA41WP96w6jTQA0z6oBNQdHxSY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ieA41WP96w6jTQA0z6oBNQdHxSY.jpg 2328w\"},className:\"framer-2squn6\",\"data-framer-name\":\"Frame 1146\",name:\"Frame 1146\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s00g3d\",\"data-framer-name\":\"Frame 1144\",name:\"Frame 1144\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1960,intrinsicWidth:1284,pixelHeight:1960,pixelWidth:1284,positionX:\"40.6%\",positionY:\"16.2%\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/ua8vOg8fDh39cJHhKJFQ3FVEo.jpg\",srcSet:\"https://framerusercontent.com/images/ua8vOg8fDh39cJHhKJFQ3FVEo.jpg?scale-down-to=1024 670w,https://framerusercontent.com/images/ua8vOg8fDh39cJHhKJFQ3FVEo.jpg 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1960,intrinsicWidth:1284,loading:getLoadingLazyAtYPosition(2075),pixelHeight:1960,pixelWidth:1284,positionX:\"40.6%\",positionY:\"16.2%\",sizes:\"max(min(100vw, 1440px) / 3, 1px)\",src:\"https://framerusercontent.com/images/ua8vOg8fDh39cJHhKJFQ3FVEo.jpg\",srcSet:\"https://framerusercontent.com/images/ua8vOg8fDh39cJHhKJFQ3FVEo.jpg?scale-down-to=1024 670w,https://framerusercontent.com/images/ua8vOg8fDh39cJHhKJFQ3FVEo.jpg 1284w\"},className:\"framer-6pyu4b\",\"data-framer-name\":\"Frame 1145\",name:\"Frame 1145\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-615wm3\",\"data-framer-name\":\"Frame 1144\",name:\"Frame 1144\"})})})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l9zcqk-container hidden-72rtr7 hidden-1epnm2o\",children:/*#__PURE__*/_jsx(CelebsMobile,{height:\"100%\",id:\"jdOq3S2jW\",layoutId:\"jdOq3S2jW\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",intrinsicHeight:5408,intrinsicWidth:2562,loading:getLoadingLazyAtYPosition(1641.4),pixelHeight:5408,pixelWidth:2562,positionX:\"left\",positionY:\"top\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/kHx4YuwzxYi6s3q4R1d7cF2U9Q.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/kHx4YuwzxYi6s3q4R1d7cF2U9Q.jpg?scale-down-to=2048 970w,https://framerusercontent.com/images/kHx4YuwzxYi6s3q4R1d7cF2U9Q.jpg?scale-down-to=4096 1940w,https://framerusercontent.com/images/kHx4YuwzxYi6s3q4R1d7cF2U9Q.jpg 2562w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2852,intrinsicWidth:1210,pixelHeight:2852,pixelWidth:1210,sizes:\"100vw\",src:\"https://framerusercontent.com/images/QPBM1QbQAK0tn0qddw6oVrBEPEU.jpg\",srcSet:\"https://framerusercontent.com/images/QPBM1QbQAK0tn0qddw6oVrBEPEU.jpg?scale-down-to=2048 868w,https://framerusercontent.com/images/QPBM1QbQAK0tn0qddw6oVrBEPEU.jpg 1210w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2852,intrinsicWidth:1210,loading:getLoadingLazyAtYPosition(2339.5),pixelHeight:2852,pixelWidth:1210,sizes:\"100vw\",src:\"https://framerusercontent.com/images/QPBM1QbQAK0tn0qddw6oVrBEPEU.jpg\",srcSet:\"https://framerusercontent.com/images/QPBM1QbQAK0tn0qddw6oVrBEPEU.jpg?scale-down-to=2048 868w,https://framerusercontent.com/images/QPBM1QbQAK0tn0qddw6oVrBEPEU.jpg 1210w\"},className:\"framer-15tafh7\",\"data-framer-name\":\"BG\",name:\"BG\",children:[/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1210,positionX:\"center\",positionY:\"top\"},className:\"framer-pm7s64\",\"data-framer-name\":\"Process\",name:\"Process\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-33hayk\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zd3h2s\",\"data-styles-preset\":\"lpnF2rQn2\",children:\"brandon\u2019s Award-winning Approach\"})}),className:\"framer-5e8sc9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19acs9l\",\"data-framer-name\":\"Group 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:110,name:\"Group 9\",svg:'<svg width=\"110\" height=\"12\" viewBox=\"0 0 110 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.7727 6.45325H3.93909V5.7923H21.7727V6.45325Z\" fill=\"#C69866\"/>\\n<path d=\"M106.355 6.45325H88.5216V5.7923H106.355V6.45325Z\" fill=\"#C69866\"/>\\n<path d=\"M106.232 11.5222H75.8488L75.7643 11.4646L61.0544 1.3842H49.7333L34.8086 11.5222H4.42622V10.8613H34.6056L49.5298 0.723251H61.2593L61.3438 0.780845L76.0537 10.8613H106.232V11.5222Z\" fill=\"#C69866\"/>\\n<path d=\"M61.2593 11.5222H49.5298L34.6056 1.3842H4.42622V0.723251H34.8086L49.7333 10.8613H61.0544L75.8488 0.723251H106.232V1.3842H76.0537L61.2593 11.5222Z\" fill=\"#C69866\"/>\\n<path d=\"M4.53211 6.05664C3.77353 5.55904 3.01494 5.06096 2.25636 4.56336C1.52082 5.0671 0.762856 5.55998 0.0273132 6.06372C0.398814 6.31346 0.770312 6.56368 1.14181 6.81343C1.51336 7.06364 1.88486 7.31385 2.25636 7.5636C3.01494 7.06128 3.77353 6.55896 4.53211 6.05664Z\" fill=\"#C69866\"/>\\n<path d=\"M109.973 6.11619C109.214 5.61812 108.456 5.12053 107.697 4.62293C106.962 5.1262 106.204 5.61907 105.468 6.12281C105.839 6.37303 106.211 6.62276 106.582 6.87298C106.954 7.12272 107.326 7.37295 107.697 7.62317C108.456 7.12085 109.214 6.61851 109.973 6.11619Z\" fill=\"#C69866\"/>\\n<path d=\"M51.6005 6.448H50.703V5.78705H51.6005V6.448Z\" fill=\"#C69866\"/>\\n<path d=\"M52.2199 6.12941L54.2334 7.45085C54.6002 7.20158 54.9732 6.9523 55.3358 6.71058C55.6238 6.51843 55.9188 6.32157 56.2111 6.12423L54.2358 4.79477L52.2199 6.12941ZM54.2372 8.17883C54.1739 8.17883 54.1111 8.16089 54.0559 8.12454L51.4385 6.40701C51.3455 6.34611 51.2893 6.24273 51.2893 6.13131C51.2889 6.02036 51.3446 5.9165 51.4371 5.85513L54.0545 4.12201C54.1659 4.04837 54.3108 4.04884 54.4218 4.12343L56.9853 5.84851C57.0764 5.90988 57.1307 6.01186 57.1312 6.12139C57.1317 6.23092 57.0778 6.33384 56.9877 6.39569C56.5628 6.68603 56.1256 6.97826 55.7026 7.26011C55.281 7.54148 54.8453 7.8323 54.4237 8.12076C54.3675 8.15947 54.3023 8.17883 54.2372 8.17883Z\" fill=\"#C69866\"/>\\n<path d=\"M46.1221 6.12941L48.1357 7.45085C48.502 7.2011 48.8755 6.95229 49.238 6.7101C49.526 6.51795 49.8206 6.32157 50.1129 6.12423L48.1376 4.79477L46.1221 6.12941ZM48.139 8.17883C48.0762 8.17883 48.0129 8.16089 47.9577 8.12454L45.3403 6.40701C45.2473 6.34611 45.1911 6.24273 45.1911 6.13131C45.1911 6.02036 45.2464 5.9165 45.3394 5.85513L47.9567 4.12201C48.0682 4.04837 48.2126 4.04884 48.3236 4.12343L50.8876 5.84851C50.9782 5.90988 51.033 6.01186 51.0335 6.12139C51.0339 6.23092 50.9801 6.33384 50.8895 6.39569C50.4651 6.68603 50.0279 6.97779 49.6049 7.26011C49.1833 7.54148 48.7475 7.8323 48.3259 8.12076C48.2698 8.15947 48.2041 8.17883 48.139 8.17883Z\" fill=\"#C69866\"/>\\n<path d=\"M45.5995 6.448H44.702V5.78705H45.5995V6.448Z\" fill=\"#C69866\"/>\\n<path d=\"M40.1212 6.12941L42.1347 7.45085C42.5011 7.2011 42.8745 6.95229 43.2371 6.7101C43.5251 6.51795 43.8197 6.32157 44.1119 6.12423L42.1366 4.79477L40.1212 6.12941ZM42.138 8.17883C42.0752 8.17883 42.012 8.16089 41.9567 8.12454L39.3394 6.40701C39.2464 6.34611 39.1906 6.24273 39.1902 6.13131C39.1902 6.02036 39.2454 5.9165 39.3384 5.85513L41.9558 4.12201C42.0672 4.04837 42.2121 4.04884 42.3226 4.12343L44.8866 5.84851C44.9773 5.90988 45.032 6.01186 45.0325 6.12139C45.033 6.23092 44.9791 6.33384 44.8885 6.39569C44.4641 6.68603 44.0269 6.97779 43.6039 7.26011C43.1823 7.54148 42.7466 7.8323 42.325 8.12076C42.2688 8.15947 42.2036 8.17883 42.138 8.17883Z\" fill=\"#C69866\"/>\\n<path d=\"M66.0668 6.448H65.1698V5.78705H66.0668V6.448Z\" fill=\"#C69866\"/>\\n<path d=\"M66.6866 6.12941L68.7002 7.45085C69.0665 7.20158 69.4395 6.95277 69.8021 6.71058C70.09 6.51843 70.3851 6.32157 70.6778 6.12423L68.702 4.79477L66.6866 6.12941ZM68.7039 8.17883C68.6407 8.17883 68.5774 8.16089 68.5222 8.12454L65.9048 6.40701C65.8123 6.34611 65.7561 6.24273 65.7556 6.13131C65.7556 6.02036 65.8113 5.9165 65.9039 5.85513L68.5212 4.12201C68.6326 4.04837 68.7776 4.04884 68.888 4.12343L71.4521 5.84851C71.5427 5.90988 71.5975 6.01186 71.5979 6.12139C71.5984 6.23092 71.5446 6.33384 71.4544 6.39569C71.0295 6.68651 70.5919 6.97827 70.1689 7.26059C69.7478 7.54196 69.3115 7.8323 68.8904 8.12076C68.8342 8.15947 68.7691 8.17883 68.7039 8.17883Z\" fill=\"#C69866\"/>\\n<path d=\"M60.5889 6.12941L62.602 7.45085C62.9688 7.2011 63.3422 6.95229 63.7048 6.7101C63.9928 6.51795 64.2874 6.32157 64.5796 6.12423L62.6043 4.79477L60.5889 6.12941ZM62.6058 8.17883C62.5425 8.17883 62.4797 8.16089 62.4245 8.12454L59.8071 6.40701C59.7141 6.34611 59.6579 6.24273 59.6579 6.13131C59.6574 6.02036 59.7132 5.9165 59.8057 5.85513L62.4235 4.12201C62.5345 4.04789 62.6794 4.04884 62.7903 4.12344L65.3539 5.84851C65.445 5.90988 65.4998 6.01186 65.5002 6.12139C65.5002 6.23092 65.4464 6.33384 65.3562 6.39569C64.9318 6.68603 64.4947 6.97779 64.0716 7.26011C63.6501 7.54148 63.2138 7.8323 62.7927 8.12076C62.7361 8.15947 62.6709 8.17883 62.6058 8.17883Z\" fill=\"#C69866\"/>\\n<path d=\"M60.0663 6.448H59.1688V5.78705H60.0663V6.448Z\" fill=\"#C69866\"/>\\n<path d=\"M54.588 6.12941L56.6015 7.45085C56.9679 7.20158 57.3408 6.95277 57.7034 6.71058C57.9914 6.51843 58.2864 6.32157 58.5787 6.12423L56.6034 4.79477L54.588 6.12941ZM56.6048 8.17883C56.5415 8.17883 56.4788 8.16089 56.4235 8.12454L53.8062 6.40701C53.7131 6.34611 53.657 6.24273 53.657 6.13131C53.6565 6.02036 53.7122 5.9165 53.8047 5.85513L56.4226 4.12201C56.534 4.04837 56.6785 4.04884 56.7894 4.12343L59.3534 5.84851C59.4441 5.90988 59.4988 6.01186 59.4993 6.12139C59.4998 6.23092 59.4459 6.33384 59.3553 6.39569C58.9309 6.68651 58.4932 6.97827 58.0702 7.26059C57.6486 7.54196 57.2129 7.8323 56.7918 8.12076C56.7351 8.15947 56.67 8.17883 56.6048 8.17883Z\" fill=\"#C69866\"/>\\n<path d=\"M24.0063 11.4863L15.4621 6.55281C15.3597 6.4938 15.2969 6.38475 15.2969 6.26673C15.2969 6.1487 15.3597 6.03964 15.4621 5.98062L24.3505 0.848821L24.6809 1.42101L16.2883 6.26673L24.3368 10.9137L24.0063 11.4863Z\" fill=\"#C69866\"/>\\n<path d=\"M30.1016 11.4896L21.1689 6.58159C21.0646 6.52447 20.999 6.41493 20.9975 6.29549C20.9966 6.17605 21.0599 6.06559 21.1628 6.0061L30.0955 0.848796L30.426 1.42099L22.0017 6.28511L30.4198 10.9103L30.1016 11.4896Z\" fill=\"#C69866\"/>\\n<path d=\"M18.57 11.4863L10.0258 6.55281C9.92333 6.4938 9.86054 6.38475 9.86054 6.26673C9.86054 6.1487 9.92333 6.03964 10.0258 5.98062L18.9141 0.848821L19.2446 1.42101L10.852 6.26673L18.9004 10.9137L18.57 11.4863Z\" fill=\"#C69866\"/>\\n<path d=\"M12.8254 11.4863L4.1107 6.45463C4.00736 6.39514 3.94423 6.28419 3.94551 6.16522C3.94674 6.04578 4.01222 5.93625 4.11679 5.87866L13.2786 0.845039L13.5968 1.42433L4.94926 6.17561L13.1558 10.9137L12.8254 11.4863Z\" fill=\"#C69866\"/>\\n<path d=\"M86.2045 11.4863L85.874 10.9137L93.9225 6.26673L85.5298 1.42101L85.8603 0.848821L94.7487 5.98062C94.8511 6.03964 94.9139 6.1487 94.9139 6.26673C94.9139 6.38475 94.8511 6.4938 94.7487 6.55281L86.2045 11.4863Z\" fill=\"#C69866\"/>\\n<path d=\"M80.1091 11.4896L79.7909 10.9103L88.2095 6.28511L79.7847 1.42099L80.1152 0.848796L89.048 6.0061C89.1513 6.06559 89.2141 6.17652 89.2132 6.29549C89.2118 6.41493 89.1461 6.52447 89.0418 6.58159L80.1091 11.4896Z\" fill=\"#C69866\"/>\\n<path d=\"M91.6408 11.4863L91.3103 10.9137L99.3588 6.26673L90.9662 1.42101L91.2966 0.848821L100.185 5.98062C100.287 6.03964 100.35 6.1487 100.35 6.26673C100.35 6.38475 100.287 6.4938 100.185 6.55281L91.6408 11.4863Z\" fill=\"#C69866\"/>\\n<path d=\"M97.3854 11.4863L97.0549 10.9137L105.262 6.17561L96.6144 1.42433L96.9326 0.845039L106.094 5.87912C106.199 5.93624 106.264 6.04578 106.265 6.16522C106.267 6.28419 106.203 6.39514 106.1 6.45463L97.3854 11.4863Z\" fill=\"#C69866\"/>\\n<path d=\"M42.1409 12L42.0153 11.9485C42.0025 11.9434 40.7595 11.4354 39.4989 10.8948C36.8849 9.77544 36.7451 9.61822 36.6621 9.52474L37.1559 9.08522C37.1521 9.08097 37.1474 9.07577 37.1412 9.07058C37.4174 9.29955 40.1863 10.4845 42.1394 11.2852C44.0699 10.4855 46.8062 9.30143 47.0805 9.07152C47.0748 9.07671 47.0706 9.08143 47.0668 9.08568L47.5606 9.52474C47.4766 9.61916 47.3359 9.77732 44.7526 10.8962C43.5062 11.4358 42.2787 11.9429 42.2664 11.9481L42.1409 12Z\" fill=\"#C69866\"/>\\n<path d=\"M68.7063 12L68.5807 11.9485C68.568 11.9434 67.3254 11.4354 66.0644 10.8948C63.4503 9.77544 63.3111 9.61822 63.2275 9.52474L63.7213 9.08522C63.7175 9.08097 63.7128 9.07577 63.7067 9.07058C63.9829 9.29955 66.7518 10.4845 68.7049 11.2852C70.6353 10.4855 73.3717 9.30143 73.646 9.07152C73.6403 9.07671 73.636 9.08143 73.6323 9.08568L74.1266 9.52474C74.0421 9.61916 73.9018 9.77732 71.318 10.8962C70.0716 11.4358 68.8442 11.9429 68.8319 11.9481L68.7063 12Z\" fill=\"#C69866\"/>\\n<path d=\"M37.1412 2.92944C37.1474 2.92425 37.1521 2.91907 37.1559 2.91482L36.6621 2.47576C36.7451 2.38181 36.8849 2.22507 39.4989 1.10523C40.7595 0.56514 42.0025 0.056684 42.0153 0.0514908L42.1409 2.02656e-05L42.2664 0.0519519C42.2787 0.0571451 43.5062 0.564671 44.7526 1.10429C47.3359 2.22271 47.4766 2.38087 47.5606 2.47576L47.0668 2.91482C47.0706 2.9186 47.0748 2.92378 47.0805 2.9285C46.8062 2.69859 44.0699 1.51455 42.1394 0.714801C40.1863 1.51549 37.4174 2.70094 37.1412 2.92944Z\" fill=\"#C69866\"/>\\n<path d=\"M63.7067 2.92944C63.7128 2.92425 63.7175 2.91907 63.7213 2.91482L63.2275 2.47576C63.3111 2.38181 63.4503 2.22507 66.0644 1.10523C67.3254 0.56514 68.568 0.056684 68.5807 0.0514908L68.7063 2.02656e-05L68.8319 0.0519519C68.8442 0.0571451 70.0716 0.564671 71.318 1.10429C73.9018 2.22271 74.0421 2.38087 74.1266 2.47576L73.6323 2.91482C73.636 2.9186 73.6403 2.92378 73.646 2.9285C73.3717 2.69859 70.6353 1.51455 68.7049 0.714801C66.7518 1.51549 63.9829 2.70094 63.7067 2.92944Z\" fill=\"#C69866\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ineh0o\",\"data-framer-name\":\"Stack\",name:\"Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sv3fl4\",\"data-framer-name\":\"1\",name:\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ewv5d\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1870,intrinsicWidth:2804,loading:getLoadingLazyAtYPosition(1803.8000000000002),pixelHeight:1870,pixelWidth:2804,positionX:\"center\",positionY:\"top\",sizes:\"max(100vw - 32px, 1px)\",src:\"https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg\",srcSet:\"https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg 2804w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1870,intrinsicWidth:2804,pixelHeight:1870,pixelWidth:2804,positionX:\"52.8%\",positionY:\"21.3%\",sizes:\"calc((100vw - 96px) * 0.3)\",src:\"https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg\",srcSet:\"https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg 2804w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1870,intrinsicWidth:2804,loading:getLoadingLazyAtYPosition(2557.9),pixelHeight:1870,pixelWidth:2804,sizes:\"380px\",src:\"https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg\",srcSet:\"https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/q397VNoVOV9z2dfB4hRdETZAa34.jpg 2804w\"},className:\"framer-fuh6ih\",\"data-framer-name\":\"DSC02745_1\",name:\"DSC02745_1\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1384,intrinsicWidth:2251,loading:getLoadingLazyAtYPosition(2003.8000000000002),pixelHeight:1384,pixelWidth:2251,positionX:\"center\",positionY:\"top\",sizes:\"calc(100vw - 32px)\",src:\"https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg\",srcSet:\"https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg 2251w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1384,intrinsicWidth:2251,pixelHeight:1384,pixelWidth:2251,positionX:\"center\",positionY:\"top\",sizes:\"calc((100vw - 96px) / 1.428)\",src:\"https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg\",srcSet:\"https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg 2251w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1384,intrinsicWidth:2251,loading:getLoadingLazyAtYPosition(2557.9),pixelHeight:1384,pixelWidth:2251,positionX:\"center\",positionY:\"top\",sizes:\"max(100vw - 524px, 1px)\",src:\"https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg\",srcSet:\"https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/prH1o4T9MTAezz3O5QkREoodU.jpg 2251w\"},className:\"framer-zf7mej\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wv1fmi\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-aqh10x\",\"data-framer-name\":\"Group 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:92,intrinsicWidth:92,name:\"Group 2\",style:{rotate:269},svg:'<svg width=\"92\" height=\"92\" viewBox=\"0 0 92 92\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M82.9161 18.6007H74.1275V9.83055H75.3512V17.377H82.9161V18.6007Z\" fill=\"#C69866\"/>\\n<path d=\"M87.7739 17.1344H86.5502V6.19938H75.5897V4.9757H87.7739V17.1344Z\" fill=\"#C69866\"/>\\n<path d=\"M92 92L86.3827 85.6559V62.0753H87.6064V85.1931L90.7777 88.7719V1.96745H4.09682L7.80475 4.94714H30.9382V6.17082H7.37461L0.62027 0.743774H92V92Z\" fill=\"#C69866\"/>\\n<path d=\"M70.7716 51.0382L82.804 63.0705V9.93993H29.6734L41.7057 21.9723H70.7716V51.0382ZM84.0277 66.0247L69.5479 51.5449V23.196H41.1989L41.0201 23.0171L26.7192 8.71624H84.0277V66.0247Z\" fill=\"#C69866\"/>\\n<path d=\"M77.6466 58.1672H76.4229V16.3209H34.578V15.0972H77.6466V58.1672Z\" fill=\"#C69866\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mkknao hidden-1epnm2o hidden-byc1nn\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e39sk\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1mrul22\",\"data-styles-preset\":\"k4kZvcZxh\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-468e4e93-f3a8-4a1e-b116-b2f86e8ab72b, rgb(228, 174, 93))\"},children:\"Streamlined work-flow\"})}),className:\"framer-fb9kym\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-isqdj2\",\"data-styles-preset\":\"qpiaGQvq5\",children:\"I started my career at Disney Channel as a storyboard artist then editor. I eventually worked my way into the freelance world of cinematography and directing. Having a working knowledge of pre-production, production, and post production, allows me to effectively communicate with all the departments leading to a more efficient shoot. I believe miscommunications and oversights in pre-production lead to missteps on set. The more of these we can avoid, the more energy we will have to put towards achieving our best work. \"})}),className:\"framer-wzycvn\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fs1l6e\",\"data-framer-name\":\"2\",name:\"2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:842,intrinsicWidth:1551,loading:getLoadingLazyAtYPosition(2520.6000000000004),pixelHeight:842,pixelWidth:1551,sizes:\"calc(100vw - 32px)\",src:\"https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png\",srcSet:\"https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png 1551w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:842,intrinsicWidth:1551,pixelHeight:842,pixelWidth:1551,sizes:\"calc((100vw - 96px) * 0.7)\",src:\"https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png\",srcSet:\"https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png 1551w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:842,intrinsicWidth:1551,loading:getLoadingLazyAtYPosition(2988.7000000000003),pixelHeight:842,pixelWidth:1551,sizes:\"max(100vw - 524px, 1px)\",src:\"https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png\",srcSet:\"https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PTkgIq4TRzRjIxuJK2VkkwzGM.png 1551w\"},className:\"framer-14r49cl\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1156inl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c9bt6c\",\"data-framer-name\":\"Group 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:91,intrinsicWidth:92,name:\"Group 3\",svg:'<svg width=\"92\" height=\"91\" viewBox=\"0 0 92 91\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M58.7287 1.31502C60.9044 1.86151 63.0407 2.57602 65.1258 3.45858C72.9929 6.78571 79.6865 12.2988 84.4851 19.4002C87.3666 23.6654 89.4517 28.3543 90.6849 33.28V1.31502H58.7287ZM92 44.0022H90.6849C90.6849 26.8069 80.4507 11.368 64.6129 4.66991C59.3512 2.44452 53.7606 1.31502 47.9977 1.31502V-4.57764e-05H92V44.0022Z\" fill=\"#C69866\"/>\\n<path d=\"M83.4872 19.3503H73.5716V9.43325H74.8866V18.0353H83.4872V19.3503Z\" fill=\"#C69866\"/>\\n<path d=\"M83.5996 90.3425H82.2845V18.3541H83.5996V90.3425Z\" fill=\"#C69866\"/>\\n<path d=\"M74.229 10.1392H1.59624V8.82409H74.229V10.1392Z\" fill=\"#C69866\"/>\\n<path d=\"M80.2257 42.9531L79.1079 41.8587C79.105 41.8558 79.0991 41.8485 50.9829 13.7323L49.8607 12.6101H74.1837V13.9251H53.0345C57.5569 18.4475 74.3927 35.2833 78.9107 39.8013V18.6521H80.2257V42.9531Z\" fill=\"#C69866\"/>\\n<path d=\"M69.9288 30.8645L68.7364 30.3107L74.2612 18.4049L75.455 18.9587L69.9288 30.8645Z\" fill=\"#C69866\"/>\\n<path d=\"M71.7245 32.95L70.5308 32.3962L77.0243 18.4053L78.2166 18.9591L71.7245 32.95Z\" fill=\"#C69866\"/>\\n<path d=\"M73.5043 35.0479L72.3119 34.4941L78.9837 20.116L80.1761 20.6697L73.5043 35.0479Z\" fill=\"#C69866\"/>\\n<path d=\"M75.433 36.9768L74.2407 36.423L78.8858 26.4139L80.0781 26.9677L75.433 36.9768Z\" fill=\"#C69866\"/>\\n<path d=\"M77.2917 38.8354L76.0994 38.2817L79.0203 31.9883L80.2126 32.5421L77.2917 38.8354Z\" fill=\"#C69866\"/>\\n<path d=\"M68.0161 29.1506L66.8238 28.5968C67.4331 27.2832 68.377 25.2507 69.0346 23.8319L64.2696 26.0441L63.7159 24.8504L70.6857 21.6167L70.9736 22.1822C71.1168 22.4686 71.1167 22.4686 70.5191 23.7559L68.0161 29.1506Z\" fill=\"#C69866\"/>\\n<path d=\"M62.5555 24.1316L62.0032 22.9378L73.909 17.413L74.4628 18.6068L62.5555 24.1316Z\" fill=\"#C69866\"/>\\n<path d=\"M60.4706 22.3357L59.9168 21.1434L73.9091 14.6513L74.4629 15.8436L60.4706 22.3357Z\" fill=\"#C69866\"/>\\n<path d=\"M58.5373 20.3909L57.9835 19.1985L71.9759 12.7065L72.5282 13.8988L58.5373 20.3909Z\" fill=\"#C69866\"/>\\n<path d=\"M56.4434 18.6274L55.8897 17.4336L66.153 12.6716L66.7069 13.8654L56.4434 18.6274Z\" fill=\"#C69866\"/>\\n<path d=\"M54.5849 16.7686L54.0311 15.5748L60.4252 12.6085L60.979 13.8009L54.5849 16.7686Z\" fill=\"#C69866\"/>\\n<path d=\"M90.6119 45.1771C89.421 45.4723 88.5355 46.5506 88.5355 47.8306V86.951C88.5355 88.231 89.421 89.3094 90.6119 89.6046V45.1771ZM91.9269 91H91.2694C89.0367 91 87.2204 89.1837 87.2204 86.951V47.8306C87.2204 45.5994 89.0367 43.7831 91.2694 43.7831H91.9269V91Z\" fill=\"#C69866\"/>\\n<path d=\"M2.33264 1.38056C2.6278 2.57143 3.70618 3.4569 4.98618 3.4569H44.1066C45.3866 3.4569 46.4649 2.57143 46.7601 1.38056H2.33264ZM44.1066 4.77197H4.98618C2.75495 4.77197 0.93869 2.95572 0.93869 0.723023V0.0654883H48.1555V0.723023C48.1555 2.95572 46.3393 4.77197 44.1066 4.77197Z\" fill=\"#C69866\"/>\\n<path d=\"M89.5453 10.5381H81.8857V2.88H89.5453V10.5381Z\" fill=\"#C69866\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-157bi50\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1mrul22\",\"data-styles-preset\":\"k4kZvcZxh\",style:{\"--framer-text-color\":\"var(--token-468e4e93-f3a8-4a1e-b116-b2f86e8ab72b, rgb(228, 174, 93))\"},children:\"Flexibility and collaboration\"})}),className:\"framer-19u0rf9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-isqdj2\",\"data-styles-preset\":\"qpiaGQvq5\",style:{\"--framer-text-alignment\":\"left\"},children:\"Time on set is precious, so I place a high premium on creative problem solving and the ability to adapt the plan in real-time while filming.  From working with celebrities, children, animals, and everything in-between, I have experience with some of the most challenging schedules and personalities. When it comes to locations and logistics, I've shot in over 35 countries on 6 continents. Being able to navigate various cultures, carnet/airport workflows, local crew integrations, and every kind of weather the planet can throw at you, is something I pride myself in.  Having been-there- before allows me to think outside of the box when problem solving and helps me deliver for the team while under pressure.\"})}),className:\"framer-1ghar0x\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t0z3sb\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2496,intrinsicWidth:4032,loading:getLoadingLazyAtYPosition(2320.6000000000004),pixelHeight:2496,pixelWidth:4032,sizes:\"max(100vw - 32px, 1px)\",src:\"https://framerusercontent.com/images/9tGx3PAohQQInwipbKYi8xLz4c.jpg\",srcSet:\"https://framerusercontent.com/images/9tGx3PAohQQInwipbKYi8xLz4c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9tGx3PAohQQInwipbKYi8xLz4c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9tGx3PAohQQInwipbKYi8xLz4c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9tGx3PAohQQInwipbKYi8xLz4c.jpg 4032w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:4032,pixelHeight:3024,pixelWidth:4032,positionX:\"58.4%\",positionY:\"50.4%\",sizes:\"calc((100vw - 96px) * 0.3)\",src:\"https://framerusercontent.com/images/97SBXZp8p2N2gDazLckigc5ZF2s.jpg\",srcSet:\"https://framerusercontent.com/images/97SBXZp8p2N2gDazLckigc5ZF2s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/97SBXZp8p2N2gDazLckigc5ZF2s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/97SBXZp8p2N2gDazLckigc5ZF2s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/97SBXZp8p2N2gDazLckigc5ZF2s.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2496,intrinsicWidth:4032,loading:getLoadingLazyAtYPosition(2988.7000000000003),pixelHeight:2496,pixelWidth:4032,sizes:\"380px\",src:\"https://framerusercontent.com/images/9tGx3PAohQQInwipbKYi8xLz4c.jpg\",srcSet:\"https://framerusercontent.com/images/9tGx3PAohQQInwipbKYi8xLz4c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9tGx3PAohQQInwipbKYi8xLz4c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9tGx3PAohQQInwipbKYi8xLz4c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9tGx3PAohQQInwipbKYi8xLz4c.jpg 4032w\"},className:\"framer-1esvixv\",\"data-framer-name\":\"DSC02745_1\",name:\"DSC02745_1\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c0v044\",\"data-framer-name\":\"3\",name:\"3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9dqqzc\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2589,intrinsicWidth:3662,loading:getLoadingLazyAtYPosition(2819.4),pixelHeight:2589,pixelWidth:3662,positionX:\"center\",positionY:\"top\",sizes:\"max(100vw - 32px, 1px)\",src:\"https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg\",srcSet:\"https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg 3662w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2589,intrinsicWidth:3662,pixelHeight:2589,pixelWidth:3662,positionX:\"63.1%\",positionY:\"46.6%\",sizes:\"calc((100vw - 96px) * 0.3)\",src:\"https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg\",srcSet:\"https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg 3662w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2589,intrinsicWidth:3662,loading:getLoadingLazyAtYPosition(3320.5),pixelHeight:2589,pixelWidth:3662,positionX:\"center\",positionY:\"top\",sizes:\"max((100vw - 144px) * 0.3002, 1px)\",src:\"https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg\",srcSet:\"https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QbIuaByy02PtVLgdIaFl2YE9uY.jpg 3662w\"},className:\"framer-1lbkepd\",\"data-framer-name\":\"DSC02745_1\",name:\"DSC02745_1\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:728,intrinsicWidth:1065,loading:getLoadingLazyAtYPosition(3019.4),pixelHeight:728,pixelWidth:1065,sizes:\"calc(100vw - 32px)\",src:\"https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png\",srcSet:\"https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png 1065w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:728,intrinsicWidth:1065,pixelHeight:728,pixelWidth:1065,sizes:\"calc((100vw - 96px) / 1.428)\",src:\"https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png\",srcSet:\"https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png 1065w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:728,intrinsicWidth:1065,loading:getLoadingLazyAtYPosition(3320.5),pixelHeight:728,pixelWidth:1065,sizes:\"max((100vw - 144px) * 0.6998, 1px)\",src:\"https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png\",srcSet:\"https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VzxucTdavxyH4aV4JLjj8MrtcLo.png 1065w\"},className:\"framer-14a8q6d\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o3sv8m\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t2magz\",\"data-framer-name\":\"Group 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:92,intrinsicWidth:91,name:\"Group 4\",style:{rotate:360},svg:'<svg width=\"91\" height=\"92\" viewBox=\"0 0 91 92\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M83.3275 24.4514H82.169V8.87729H66.5948V7.71869H83.3275V24.4514Z\" fill=\"#C69866\"/>\\n<path d=\"M91 58.5452H89.8414V11.8215H91V58.5452Z\" fill=\"#C69866\"/>\\n<path d=\"M32.5179 1.15845V-0.000149488H79.2248V1.15845H32.5179Z\" fill=\"#C69866\"/>\\n<path d=\"M88.1666 91.4895H87.0081V46.1639L82.4548 50.7172V33.3035H77.2758L57.7445 13.7721V8.59193H41.1714L45.3037 4.4596H0V3.301H48.1011L43.9675 7.43333H58.9031V13.2919L77.7547 32.1449H83.6134V47.9199L88.1666 43.3665V91.4895Z\" fill=\"#C69866\"/>\\n<path d=\"M87.5834 28.5723H86.4248V4.6228H62.6221V3.46421H87.5834V28.5723Z\" fill=\"#C69866\"/>\\n<path d=\"M71.9488 19.0975H76.4454L71.9488 14.6009V19.0975ZM79.2428 20.2561H70.7902V11.8048L79.2428 20.2561Z\" fill=\"#C69866\"/>\\n<path d=\"M67.993 8.87738L82.1691 23.0535V8.87738H67.993ZM83.3277 25.8508L65.1969 7.71879H83.3277V25.8508Z\" fill=\"#C69866\"/>\\n<path d=\"M79.8041 11.2423H82.1689V8.87747H79.8041V11.2423ZM83.3275 12.4009H78.6455V7.71887H83.3275V12.4009Z\" fill=\"#C69866\"/>\\n<path d=\"M78.4705 12.5773V20.1738L70.8739 12.5773H78.4705Z\" fill=\"#C69866\"/>\\n<path d=\"M73.979 33.6316C70.91 31.2127 68.0843 28.5351 65.3179 25.7892C62.5694 23.0227 59.8918 20.1983 57.4742 17.1268C60.5458 19.5444 63.3701 22.222 66.1366 24.9704C68.8825 27.7369 71.5589 30.5626 73.979 33.6316Z\" fill=\"#C69866\"/>\\n<path d=\"M73.719 37.2734L72.9003 36.4534L77.0725 32.2812L77.8925 33.0999L73.719 37.2734Z\" fill=\"#C69866\"/>\\n<path d=\"M54.6188 18.1719L53.7988 17.3519L57.9723 13.1796L58.7911 13.9996L54.6188 18.1719Z\" fill=\"#C69866\"/>\\n<path d=\"M68.3289 23.5374L67.5102 22.7173L70.9602 19.2672L71.779 20.0873L68.3289 23.5374Z\" fill=\"#C69866\"/>\\n<path d=\"M82.7483 39.9434H75.5701L51.1044 15.4763V8.29823H52.263V14.9962L76.0503 38.7848H82.7483V39.9434Z\" fill=\"#C69866\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-21uxyb\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1mrul22\",\"data-styles-preset\":\"k4kZvcZxh\",style:{\"--framer-text-color\":\"var(--token-468e4e93-f3a8-4a1e-b116-b2f86e8ab72b, rgb(228, 174, 93))\"},children:\"Easy breezey\"})}),className:\"framer-1s32crk\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-isqdj2\",\"data-styles-preset\":\"qpiaGQvq5\",children:\"I try to make things as easy on my collaborators as possible. Splitting my time between NYC and LA, I have a strong rolodex of crew members to recommend for all flavors of projects. Having worked all over the globe, I have solid crew recs in many other countries as well. Additionally, I own roughly $200k worth of equipment that's available for your project if needed. This has helped countless projects save money and consolidate the gear rental process. By simplifying the logistics of our shoot, we are able to spend more time  focusing on the creative execution and setting ourselves up for maximum success in the field or in the studio.\"})}),className:\"framer-w4j8l8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1210,positionX:\"center\",positionY:\"bottom\"},className:\"framer-1h1tu7e\",\"data-framer-name\":\"About\",name:\"About\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jwlua9\",\"data-framer-name\":\"Frame 1176\",name:\"Frame 1176\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:941,intrinsicWidth:1602,loading:getLoadingLazyAtYPosition(3759.2),pixelHeight:941,pixelWidth:1602,src:\"https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg\",srcSet:\"https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg 1602w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:941,intrinsicWidth:1602,pixelHeight:941,pixelWidth:1602,sizes:\"calc(min(100vw - 144px, 1000px) * 0.55)\",src:\"https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg\",srcSet:\"https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg 1602w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:941,intrinsicWidth:1602,loading:getLoadingLazyAtYPosition(3858.5),pixelHeight:941,pixelWidth:1602,src:\"https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg\",srcSet:\"https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0Gj2RLTvPeUB9el3hBTiomHGxQ.jpg 1602w\"},className:\"framer-1sosvow\",\"data-framer-name\":\"Frame 1165\",name:\"Frame 1165\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ltu1w0\",\"data-framer-name\":\"Frame 1173\",name:\"Frame 1173\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v7tjg5\",\"data-framer-name\":\"Frame 1164\",name:\"Frame 1164\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hg5g0x\",\"data-framer-name\":\"Frame 1159\",name:\"Frame 1159\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ufneb\",\"data-framer-name\":\"Frame 1163\",name:\"Frame 1163\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zd3h2s\",\"data-styles-preset\":\"lpnF2rQn2\",children:\"meet\"})}),className:\"framer-ubamzl\",\"data-framer-name\":\"Medium length hero headline goes here\",fonts:[\"Inter\"],name:\"Medium length hero headline goes here\",verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i9l4uo\",\"data-framer-name\":\"Frame 1160\",name:\"Frame 1160\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h6nrn3\",\"data-framer-name\":\"Frame 1163\",name:\"Frame 1163\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb25jbyBJbkxpbmUgUmVndWxhcg==\",\"--framer-font-family\":'\"Bronco InLine Regular\", \"Bronco InLine Regular Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"rgb(228, 174, 93)\",\"--framer-text-transform\":\"uppercase\"},children:\"Brandon.\"})}),className:\"framer-1u3wilc\",\"data-framer-name\":\"Medium length hero headline goes here\",fonts:[\"CUSTOM;Bronco InLine Regular\"],name:\"Medium length hero headline goes here\",verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-isqdj2\",\"data-styles-preset\":\"qpiaGQvq5\",children:\"I'm an Emmy award winning cinematographer / director that's worked in this industry for over 14 years. My career has blessed me with some of the  best friends and memories a person could wish for. I approach each project with gratitude for the opportunity to create with some of the most incredible people in the world.  I'll rarely say no to a Mezcal Negroni, and will never say no to a dance party. \"})}),className:\"framer-vbd3ku\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4yqnf0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mxs7qb\",\"data-framer-name\":\"Group 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:90,intrinsicWidth:92,name:\"Group 7\",svg:'<svg width=\"92\" height=\"90\" viewBox=\"0 0 92 90\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M87.003 90H85.7318L85.7317 27.5858C79.8517 27.3442 74.2825 25.0025 69.9887 20.9503C65.7051 16.908 63.0423 11.5055 62.45 5.68078H0V4.40961H63.6194L63.6649 4.99714C64.592 16.9715 74.3563 26.1451 86.3773 26.333L87.0028 26.3428L87.003 90Z\" fill=\"#C69866\"/>\\n<path d=\"M61.1682 10.6172H14.3332V9.34602H61.1682V10.6172Z\" fill=\"#C69866\"/>\\n<path d=\"M74.182 1.27124H28.0969V7.4625e-05H74.182V1.27124Z\" fill=\"#C69866\"/>\\n<path d=\"M82.3944 76.4976H81.1232V29.6622H82.3944V76.4976Z\" fill=\"#C69866\"/>\\n<path d=\"M91.3598 64.1672H90.0887V18.0819H91.3598V64.1672Z\" fill=\"#C69866\"/>\\n<path d=\"M75.3626 16.0506H85.7316V5.68074H75.3626V16.0506ZM87.0028 17.3218H74.0914V4.40957H87.0028V17.3218Z\" fill=\"#C69866\"/>\\n<path d=\"M79.7198 11.6934H90.0886V1.32356H79.7198V11.6934ZM91.3598 12.9646H78.4487V0.052393H91.3598V12.9646Z\" fill=\"#C69866\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-szgrqc\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DkeFvTTbO\"},implicitPathVariables:undefined},{href:{webPageId:\"DkeFvTTbO\"},implicitPathVariables:undefined},{href:{webPageId:\"DkeFvTTbO\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nqtyu6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{BLsQ21ULS:resolvedLinks1[2],style:{width:\"100%\"}},nn0CR5xO9:{BLsQ21ULS:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(CTA,{BLsQ21ULS:resolvedLinks1[0],height:\"100%\",id:\"I_UEMUsDT\",layoutId:\"I_UEMUsDT\",variant:\"po4h4pIQ4\",W7bZ6PWnZ:\"more about brandon  \u2192\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8a5rww-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CTA,{BLsQ21ULS:\"https://www.instagram.com/brandoncolewidener/\",height:\"100%\",id:\"HEPj006cG\",layoutId:\"HEPj006cG\",variant:\"ExEV_QRHD\",W7bZ6PWnZ:\"Catch me on instagram\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxmzn9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,loading:getLoadingLazyAtYPosition(3468.2),pixelHeight:5369,pixelWidth:4e3,positionX:\"49.6%\",positionY:\"26.3%\",src:\"https://framerusercontent.com/images/QbWcQ7dM1AopgSiq2P5VrnLtfuY.jpg?scale-down-to=2048\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,pixelHeight:5369,pixelWidth:4e3,positionX:\"23.5%\",positionY:\"48.9%\",src:\"https://framerusercontent.com/images/QbWcQ7dM1AopgSiq2P5VrnLtfuY.jpg?scale-down-to=2048\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,loading:getLoadingLazyAtYPosition(3858.5),pixelHeight:5369,pixelWidth:4e3,positionX:\"49.6%\",positionY:\"26.3%\",src:\"https://framerusercontent.com/images/QbWcQ7dM1AopgSiq2P5VrnLtfuY.jpg?scale-down-to=2048\"},className:\"framer-1htt755\",\"data-framer-name\":\"IZ6A2063 1\",name:\"IZ6A2063 1\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cd84di\",\"data-framer-name\":\"Group_5\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:142,name:\"Group_5\",svg:'<svg width=\"142\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m141.568 10.064-2.902-1.904c-.937.642-1.904 1.27-2.841 1.913l1.421.956 1.42.957 2.902-1.922Zm-135.825 0A7621.14 7621.14 0 0 1 2.842 8.16C1.904 8.802.938 9.43 0 10.073l1.421.956 1.42.957 2.902-1.922Z\" fill=\"#C69866\"/><path d=\"m135.761 16.478-10.219-5.9a.42.42 0 0 1 0-.73l10.631-6.138.421.73-10 5.773 9.588 5.536-.421.729Z\" fill=\"#C69866\"/><path d=\"m128.889 16.478-10.422-6.018a.42.42 0 0 1 .008-.734l10.957-6.02.406.738-10.302 5.66 9.775 5.645-.422.729Zm-123.16 0-.422-.73 9.588-5.535-10-5.773.422-.73 10.631 6.138a.42.42 0 0 1 0 .73l-10.22 5.9Z\" fill=\"#C69866\"/><path d=\"m12.6 16.478-.422-.73 9.776-5.644-10.302-5.66.405-.739 10.958 6.021a.422.422 0 0 1 .008.734L12.6 16.478Zm95.079-6.386 5.065 3.409 5.168-3.423-5.165-3.39a327.69 327.69 0 0 1-2.677 1.8c-.787.525-1.596 1.065-2.391 1.604Zm5.063 4.336a.423.423 0 0 1-.235-.071l-5.814-3.913a.42.42 0 0 1-.003-.697c.962-.658 1.953-1.32 2.912-1.96.956-.638 1.945-1.297 2.902-1.953a.422.422 0 0 1 .469-.005l5.936 3.895a.424.424 0 0 1 .001.704l-5.935 3.93a.426.426 0 0 1-.233.07Z\" fill=\"#C69866\"/><path d=\"m23.563 10.092 5.064 3.409 5.168-3.423-5.165-3.39c-.887.606-1.795 1.212-2.676 1.8-.787.525-1.596 1.064-2.39 1.604Zm5.063 4.336a.422.422 0 0 1-.235-.071l-5.814-3.913a.421.421 0 0 1-.003-.697c.962-.659 1.953-1.32 2.912-1.96.956-.638 1.945-1.298 2.902-1.953a.422.422 0 0 1 .469-.005l5.935 3.895a.42.42 0 0 1 .002.704l-5.936 3.93a.424.424 0 0 1-.233.07Zm7.049 2.03-.406-.738 9.987-5.487-9.994-5.77.42-.73 10.643 6.144a.422.422 0 0 1-.008.734l-10.642 5.847Z\" fill=\"#C69866\"/><path d=\"m39.043 16.458-.406-.738 9.986-5.487-9.994-5.77.422-.73 10.641 6.144a.422.422 0 0 1-.008.734l-10.641 5.847Zm68.497 0-10.641-5.847a.421.421 0 0 1-.008-.734l10.642-6.144.421.73-9.994 5.77 9.986 5.486-.406.739Z\" fill=\"#C69866\"/><path d=\"M103.931 16.458 93.29 10.611a.42.42 0 0 1-.008-.734l10.641-6.144.422.73-9.994 5.77 9.986 5.486-.406.739ZM25.53 12.407H2.794v-.842h22.738v.842Zm113.166 0h-22.737v-.842h22.737v.842ZM25.53 8.716H2.794v-.843h22.738v.843Zm113.166 0h-22.737v-.843h22.737v.843Z\" fill=\"#C69866\"/><path d=\"M138.697 4.52H3.134v-.843h135.563v.843ZM114.184.843H28.396V0h85.788v.843Zm0 19.157H28.396v-.843h85.788V20Zm24.513-3.445H3.134v-.842h135.563v.842Zm-30.886-6.463 2.092 1.408 2.134-1.413-2.131-1.4c-.397.27-.8.54-1.192.8l-.903.605Zm2.09 2.336a.423.423 0 0 1-.235-.071l-2.843-1.913a.425.425 0 0 1-.186-.348c0-.14.068-.27.183-.35.472-.323.957-.646 1.426-.96.467-.31.95-.633 1.417-.952a.42.42 0 0 1 .469-.005l2.902 1.904a.42.42 0 0 1 .19.351.42.42 0 0 1-.188.353l-2.902 1.921a.426.426 0 0 1-.233.07Zm-80.462-2.336L31.53 11.5l2.134-1.413-2.132-1.4c-.396.27-.799.54-1.19.8-.298.198-.602.402-.904.605Zm2.09 2.336a.423.423 0 0 1-.235-.071l-2.843-1.913a.421.421 0 0 1-.003-.698c.472-.323.957-.647 1.428-.96a138.9 138.9 0 0 0 1.415-.953.422.422 0 0 1 .47-.004l2.901 1.904a.424.424 0 0 1 .001.704l-2.902 1.921a.424.424 0 0 1-.232.07Zm29.789-1.373a.96.96 0 1 0 0-1.922.96.96 0 0 0 0 1.922Zm6.398 0a.96.96 0 1 0 0-1.922.96.96 0 0 0 0 1.922Zm6.398 0a.96.96 0 1 0 0-1.922.96.96 0 0 0 0 1.922Zm6.399 0a.96.96 0 1 0 0-1.921.96.96 0 0 0 0 1.92Z\" fill=\"#C69866\"/></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1anx1cf\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gblmux\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q6twlg\",\"data-framer-name\":\"Interview-1\",name:\"Interview-1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4148.7),positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 418px)\",src:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png\",srcSet:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=512 512w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png 4036w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 306px)\",src:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png\",srcSet:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=512 512w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png 4036w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4150.5),positionX:\"center\",positionY:\"center\",sizes:\"795.3333px\",src:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png\",srcSet:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=512 512w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png 4036w\"},className:\"framer-isadxu\",\"data-framer-name\":\"Stucco-03-byGhostlyPixels 1\",name:\"Stucco-03-byGhostlyPixels 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10mq3rb\",\"data-framer-name\":\"Frame 1186\",name:\"Frame 1186\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1625,intrinsicWidth:1302,loading:getLoadingLazyAtYPosition(4410.5),pixelHeight:1625,pixelWidth:1302,positionX:\"50.4%\",positionY:\"82.8%\",sizes:\"345.5px\",src:\"https://framerusercontent.com/images/mf8R48EyGr0cCGUZnB7NZa8JyI.jpg\",srcSet:\"https://framerusercontent.com/images/mf8R48EyGr0cCGUZnB7NZa8JyI.jpg?scale-down-to=1024 820w,https://framerusercontent.com/images/mf8R48EyGr0cCGUZnB7NZa8JyI.jpg 1302w\"},className:\"framer-1mskm37 hidden-1epnm2o hidden-byc1nn\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gyiunw\",\"data-framer-name\":\"Frame 17\",name:\"Frame 17\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jylgp9\",\"data-framer-name\":\"Frame 1174\",name:\"Frame 1174\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4393.2),sizes:\"min(max(100vw - 32px, 1px) - 48px, 200px)\",src:\"https://framerusercontent.com/images/o9zg3VwDx0rPLGEo8P8VGJrglM.png\",srcSet:\"https://framerusercontent.com/images/o9zg3VwDx0rPLGEo8P8VGJrglM.png?scale-down-to=512 512w,https://framerusercontent.com/images/o9zg3VwDx0rPLGEo8P8VGJrglM.png 529w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/o9zg3VwDx0rPLGEo8P8VGJrglM.png\",srcSet:\"https://framerusercontent.com/images/o9zg3VwDx0rPLGEo8P8VGJrglM.png?scale-down-to=512 512w,https://framerusercontent.com/images/o9zg3VwDx0rPLGEo8P8VGJrglM.png 529w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4622.5),sizes:\"250px\",src:\"https://framerusercontent.com/images/o9zg3VwDx0rPLGEo8P8VGJrglM.png\",srcSet:\"https://framerusercontent.com/images/o9zg3VwDx0rPLGEo8P8VGJrglM.png?scale-down-to=512 512w,https://framerusercontent.com/images/o9zg3VwDx0rPLGEo8P8VGJrglM.png 529w\"},className:\"framer-1t0gw0u\",\"data-framer-name\":\"Shoutout LA logo 1\",name:\"Shoutout LA logo 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(18, 18, 18)\"},children:\"Read about Brandon\u2019s journey and motivation behind his career.\"})}),className:\"framer-103l5al\",\"data-framer-name\":\"Text\",fonts:[\"GF;Raleway-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mx7y3p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CTA,{BLsQ21ULS:\"https://shoutoutla.com/meet-brandon-widener-director-cinematographer/\",height:\"100%\",id:\"BFEGNy051\",layoutId:\"BFEGNy051\",variant:\"dyWlrkhrd\",W7bZ6PWnZ:\"Read full interview \u2192\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-js47g4\",\"data-framer-name\":\"Interview-2\",name:\"Interview-2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4458.2),positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 418px)\",src:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png\",srcSet:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=512 512w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png 4036w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 306px)\",src:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png\",srcSet:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=512 512w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png 4036w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4150.5),positionX:\"center\",positionY:\"center\",sizes:\"795.3333px\",src:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png\",srcSet:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=512 512w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png 4036w\"},className:\"framer-1oapr1c\",\"data-framer-name\":\"Stucco-03-byGhostlyPixels 1\",name:\"Stucco-03-byGhostlyPixels 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ed1mm3\",\"data-framer-name\":\"Frame 1186\",name:\"Frame 1186\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1487,intrinsicWidth:1181,loading:getLoadingLazyAtYPosition(4410.5),pixelHeight:1487,pixelWidth:1181,sizes:\"345px\",src:\"https://framerusercontent.com/images/4ntY3xvIuxar3Wi1zCzvgplkrSw.jpg\",srcSet:\"https://framerusercontent.com/images/4ntY3xvIuxar3Wi1zCzvgplkrSw.jpg?scale-down-to=1024 813w,https://framerusercontent.com/images/4ntY3xvIuxar3Wi1zCzvgplkrSw.jpg 1181w\"},className:\"framer-j9zjrr hidden-1epnm2o hidden-byc1nn\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tw6y0g\",\"data-framer-name\":\"Frame 17\",name:\"Frame 17\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-90xcnt\",\"data-framer-name\":\"Frame 1174\",name:\"Frame 1174\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:114,intrinsicWidth:958,loading:getLoadingLazyAtYPosition(4702.7),pixelHeight:114,pixelWidth:958,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw - 32px, 1px) - 48px, 200px)\",src:\"https://framerusercontent.com/images/XzapNZv0N68e2qRGEsxEVHtd2I.png\",srcSet:\"https://framerusercontent.com/images/XzapNZv0N68e2qRGEsxEVHtd2I.png?scale-down-to=512 512w,https://framerusercontent.com/images/XzapNZv0N68e2qRGEsxEVHtd2I.png 958w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:114,intrinsicWidth:958,pixelHeight:114,pixelWidth:958,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XzapNZv0N68e2qRGEsxEVHtd2I.png\",srcSet:\"https://framerusercontent.com/images/XzapNZv0N68e2qRGEsxEVHtd2I.png?scale-down-to=512 512w,https://framerusercontent.com/images/XzapNZv0N68e2qRGEsxEVHtd2I.png 958w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:114,intrinsicWidth:958,loading:getLoadingLazyAtYPosition(4622.5),pixelHeight:114,pixelWidth:958,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/XzapNZv0N68e2qRGEsxEVHtd2I.png\",srcSet:\"https://framerusercontent.com/images/XzapNZv0N68e2qRGEsxEVHtd2I.png?scale-down-to=512 512w,https://framerusercontent.com/images/XzapNZv0N68e2qRGEsxEVHtd2I.png 958w\"},className:\"framer-nsk406\",\"data-framer-name\":\"Shoutout LA logo 1\",name:\"Shoutout LA logo 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(18, 18, 18)\"},children:\"Catch a glimpse of Brandon\u2019s most memorable set experiences.\"})}),className:\"framer-ahzgkm\",\"data-framer-name\":\"Text\",fonts:[\"GF;Raleway-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3a55wj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CTA,{BLsQ21ULS:\"https://canvasrebel.com/meet-brandon-widener/\",height:\"100%\",id:\"Nj9YQNSlE\",layoutId:\"Nj9YQNSlE\",variant:\"dyWlrkhrd\",W7bZ6PWnZ:\"Read full interview \u2192\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jxjz3f\",\"data-framer-name\":\"Interview-3\",name:\"Interview-3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4767.7),positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 418px)\",src:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png\",srcSet:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=512 512w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png 4036w\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 306px)\",src:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png\",srcSet:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=512 512w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png 4036w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4150.5),positionX:\"center\",positionY:\"center\",sizes:\"795.3333px\",src:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png\",srcSet:\"https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=512 512w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g069sd83I1CVzEqs2YpjErfBENw.png 4036w\"},className:\"framer-5foj6o\",\"data-framer-name\":\"Stucco-03-byGhostlyPixels 1\",name:\"Stucco-03-byGhostlyPixels 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2lw5n5\",\"data-framer-name\":\"Frame 1186\",name:\"Frame 1186\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:883,intrinsicWidth:1037,loading:getLoadingLazyAtYPosition(4410.5),pixelHeight:883,pixelWidth:1037,sizes:\"345.5px\",src:\"https://framerusercontent.com/images/m3qyXFy71OLy9AvBojmnWp7iE.png\",srcSet:\"https://framerusercontent.com/images/m3qyXFy71OLy9AvBojmnWp7iE.png?scale-down-to=512 512w,https://framerusercontent.com/images/m3qyXFy71OLy9AvBojmnWp7iE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/m3qyXFy71OLy9AvBojmnWp7iE.png 1037w\"},className:\"framer-umfw0m hidden-1epnm2o hidden-byc1nn\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16m7mcl\",\"data-framer-name\":\"Frame 17\",name:\"Frame 17\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11nw6qh\",\"data-framer-name\":\"Frame 1174\",name:\"Frame 1174\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:130,intrinsicWidth:300,loading:getLoadingLazyAtYPosition(5012.2),pixelHeight:130,pixelWidth:300,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/GU9e0Y0nP5jPkbDEhmsvZaqKEU.png\"}},nn0CR5xO9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:130,intrinsicWidth:300,pixelHeight:130,pixelWidth:300,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/GU9e0Y0nP5jPkbDEhmsvZaqKEU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:130,intrinsicWidth:300,loading:getLoadingLazyAtYPosition(4622.5),pixelHeight:130,pixelWidth:300,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/GU9e0Y0nP5jPkbDEhmsvZaqKEU.png\"},className:\"framer-fj4hny\",\"data-framer-name\":\"Shoutout LA logo 1\",name:\"Shoutout LA logo 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(18, 18, 18)\"},children:\"Get insights into Brandon's journey and his advice for people on a similar path.\"})}),className:\"framer-160z0eh\",\"data-framer-name\":\"Text\",fonts:[\"GF;Raleway-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ognlv8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CTA,{BLsQ21ULS:\"https://boldjourney.com/news/meet-brandon-widener/\",height:\"100%\",id:\"PM1krhdR1\",layoutId:\"PM1krhdR1\",variant:\"dyWlrkhrd\",W7bZ6PWnZ:\"Read full interview \u2192\",width:\"100%\"})})})})]})]})]})]})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15pwhu0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LDxz2sIPs:{variant:\"fKdNkEWon\"},nn0CR5xO9:{variant:\"fKdNkEWon\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"l_cPdEJxf\",layoutId:\"l_cPdEJxf\",style:{width:\"100%\"},variant:\"bjxmVPzju\",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-Y15q8 { background: rgb(26, 22, 21); }`,\".framer-Y15q8.framer-lux5qc, .framer-Y15q8 .framer-lux5qc { display: block; }\",\".framer-Y15q8.framer-72rtr7 { align-content: center; align-items: center; background-color: #1a1615; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-Y15q8 .framer-jqm8w9-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 4; }\",\".framer-Y15q8 .framer-uaamg0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 0px 72px 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-1a4qfb6 { background-color: #1f1b1a; flex: none; height: 73px; left: calc(50.00000000000002% - 227px / 2); overflow: hidden; position: absolute; top: 96px; width: 227px; z-index: 1; }\",\".framer-Y15q8 .framer-ch7ckr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 47px; left: calc(49.77973568281941% - 199px / 2); position: absolute; top: 9px; white-space: pre-wrap; width: 199px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Y15q8 .framer-1p60zcb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-2sm6bv { aspect-ratio: 1.7431059506531206 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 689px); position: relative; width: 1200px; }\",\".framer-Y15q8 .framer-qbsck1 { aspect-ratio: 1.7766497461928934 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 591px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 1050px; }\",\".framer-Y15q8 .framer-1ctdsm4, .framer-Y15q8 .framer-14ursns { flex: none; height: 89px; left: calc(50.00000000000002% - 89px / 2); position: absolute; top: calc(49.91539763113369% - 89px / 2); width: 89px; }\",\".framer-Y15q8 .framer-1up5jkf { background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 591px; overflow: hidden; position: relative; width: 1050px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Y15q8 .framer-dbfnox-container { bottom: -18px; flex: none; left: 0px; position: absolute; right: -11px; top: -15px; }\",\".framer-Y15q8 .framer-1jkvotm { aspect-ratio: 1.7766497461928934 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 397px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 705px; }\",\".framer-Y15q8 .framer-fi8d2t { background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 504px; overflow: hidden; position: relative; width: 894px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Y15q8 .framer-uef5qk-container { bottom: -16px; flex: none; left: 0px; position: absolute; right: -3px; top: -16px; }\",\".framer-Y15q8 .framer-3lgy04-container { flex: none; height: 371px; left: calc(50.92198581560285% - 604px / 2); position: absolute; top: calc(48.73737373737376% - 371px / 2); width: 604px; }\",\".framer-Y15q8 .framer-1kv1l1n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 8px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-1tyoxxz { aspect-ratio: 1.7431059506531206 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 218px); position: relative; width: 380px; }\",\".framer-Y15q8 .framer-t37bdf { aspect-ratio: 1.7766497461928934 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 190px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 337px; }\",\".framer-Y15q8 .framer-xgn7qn { flex: none; height: 54px; left: calc(49.851632047477764% - 54px / 2); position: absolute; top: calc(50.65963060686018% - 54px / 2); width: 54px; }\",\".framer-Y15q8 .framer-1p3w3k { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-Y15q8 .framer-6iwhks-container { bottom: 270px; flex: none; height: 205px; left: calc(50.25641025641028% - 340px / 2); position: fixed; width: 340px; }\",\".framer-Y15q8 .framer-s9tvz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-4q1rbv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-125dsly { flex: none; height: 31px; position: relative; width: 840px; }\",\".framer-Y15q8 .framer-1u3c4gl-container, .framer-Y15q8 .framer-1nqtyu6-container, .framer-Y15q8 .framer-8a5rww-container, .framer-Y15q8 .framer-1mx7y3p-container, .framer-Y15q8 .framer-3a55wj-container, .framer-Y15q8 .framer-ognlv8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Y15q8 .framer-wufpzb { flex: none; height: 31px; position: relative; width: 425px; }\",\".framer-Y15q8 .framer-j7yzdh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 0px 72px 0px 72px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-169rwsg { 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; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Y15q8 .framer-p3t3zq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 215px; overflow: visible; padding: 10px 0px 10px 0px; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-Y15q8 .framer-oal5a5 { --framer-paragraph-spacing: 24px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 743px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Y15q8 .framer-f8sw8j { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 213px; position: relative; width: 316px; }\",\".framer-Y15q8 .framer-s75gzp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-165q3dg { flex: none; height: 278px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-1r9ib8j { bottom: 99px; flex: none; left: 0px; overflow: visible; position: absolute; top: 10px; width: 100%; z-index: 3; }\",\".framer-Y15q8 .framer-899o4l-container { flex: none; height: 76px; left: -13px; position: absolute; top: calc(47.16981132075474% - 76px / 2); width: 102%; }\",\".framer-Y15q8 .framer-1u07lyp-container { bottom: 0px; flex: none; height: auto; position: absolute; right: 0px; width: 102%; }\",\".framer-Y15q8 .framer-64bmwj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-yy1b03 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-15c6p6l, .framer-Y15q8 .framer-4z9eyp, .framer-Y15q8 .framer-uqrb6z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-1cfo0e1, .framer-Y15q8 .framer-1cbc1n0, .framer-Y15q8 .framer-1actkw5, .framer-Y15q8 .framer-6pyu4b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 265px; justify-content: flex-end; overflow: visible; padding: 20.121952056884766px; position: relative; width: 1px; }\",\".framer-Y15q8 .framer-1xblkvs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 39px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-1cuzzgf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 39px; min-width: 208px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-178j1dp, .framer-Y15q8 .framer-1mqz4dm, .framer-Y15q8 .framer-2gyg2n, .framer-Y15q8 .framer-2r4bcv, .framer-Y15q8 .framer-2squn6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 264px; justify-content: flex-end; overflow: visible; padding: 20.121952056884766px; position: relative; width: 1px; }\",\".framer-Y15q8 .framer-1b2g37f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 39px; min-width: 114px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-19g7zif { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 39px; min-width: 206px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-157vkkl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 39px; min-width: 128px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-i86y0p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 39px; min-width: 226px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-aw3mp7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 39px; min-width: 106px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-1s00g3d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 39px; min-width: 248px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-615wm3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 39px; min-width: 79px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-l9zcqk-container, .framer-Y15q8 .framer-15pwhu0-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-15tafh7 { 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-Y15q8 .framer-pm7s64 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 68px 72px 120px 72px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-33hayk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-5e8sc9, .framer-Y15q8 .framer-ubamzl, .framer-Y15q8 .framer-1u3wilc { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Y15q8 .framer-19acs9l { flex: none; height: 12px; position: relative; width: 110px; }\",\".framer-Y15q8 .framer-ineh0o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-sv3fl4, .framer-Y15q8 .framer-1fs1l6e, .framer-Y15q8 .framer-1c0v044 { align-content: flex-start; align-items: flex-start; background-color: var(--token-738215bf-6920-4d54-bd7d-1f350ef10f80, #1a1615); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 2.767256498336792px 2.2138051986694336px 0px rgba(0, 0, 0, 0.06), 0px 6.650102138519287px 5.32008171081543px 0px rgba(0, 0, 0, 0.08077855408191681), 0px 12.521552085876465px 10.017241477966309px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 22.3363094329834px 17.869047164916992px 0px rgba(0, 0, 0, 0.11922144889831543), 0px 41.777610778808594px 33.422088623046875px 0px rgba(0, 0, 0, 0.14377087354660034), 0px 100px 80px 0px rgba(0, 0, 0, 0.20000000298023224); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Y15q8 .framer-6ewv5d { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 380px; }\",\".framer-Y15q8 .framer-fuh6ih, .framer-Y15q8 .framer-1esvixv, .framer-Y15q8 .framer-1lbkepd { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-Y15q8 .framer-zf7mej { 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: flex-start; overflow: visible; padding: 24px 48px 36px 48px; position: relative; width: 1px; }\",\".framer-Y15q8 .framer-wv1fmi { 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-Y15q8 .framer-aqh10x, .framer-Y15q8 .framer-c9bt6c, .framer-Y15q8 .framer-t2magz { flex: none; height: 69px; position: relative; width: 69px; }\",\".framer-Y15q8 .framer-1mkknao { flex: none; height: 71px; overflow: hidden; position: relative; width: 70px; }\",\".framer-Y15q8 .framer-1e39sk { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Y15q8 .framer-fb9kym { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 820px; word-break: break-word; word-wrap: break-word; }\",\".framer-Y15q8 .framer-wzycvn, .framer-Y15q8 .framer-1ghar0x, .framer-Y15q8 .framer-vbd3ku { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Y15q8 .framer-14r49cl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 48px 36px 48px; position: relative; width: 1px; }\",\".framer-Y15q8 .framer-1156inl { align-content: flex-end; align-items: flex-end; 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-Y15q8 .framer-157bi50 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-19u0rf9 { flex: none; height: auto; position: relative; text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25); white-space: pre-wrap; width: 551px; word-break: break-word; word-wrap: break-word; }\",\".framer-Y15q8 .framer-t0z3sb { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 380px; }\",\".framer-Y15q8 .framer-9dqqzc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 346px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 30%; }\",\".framer-Y15q8 .framer-14a8q6d { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: visible; padding: 24px 48px 36px 48px; position: relative; width: 1px; }\",\".framer-Y15q8 .framer-1o3sv8m { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; min-width: 11%; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Y15q8 .framer-21uxyb, .framer-Y15q8 .framer-1jylgp9, .framer-Y15q8 .framer-90xcnt, .framer-Y15q8 .framer-11nw6qh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-1s32crk { flex: none; height: auto; position: relative; text-shadow: 5px 4px 1px rgba(0, 0, 0, 0.25); white-space: pre-wrap; width: 551px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Y15q8 .framer-w4j8l8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Y15q8 .framer-1h1tu7e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 0px 72px 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-jwlua9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-1sosvow { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-1ltu1w0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 477px; }\",\".framer-Y15q8 .framer-v7tjg5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-1hg5g0x, .framer-Y15q8 .framer-10ufneb, .framer-Y15q8 .framer-i9l4uo, .framer-Y15q8 .framer-h6nrn3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y15q8 .framer-4yqnf0 { flex: none; height: 90px; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 92px; z-index: 1; }\",\".framer-Y15q8 .framer-1mxs7qb { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Y15q8 .framer-szgrqc { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-Y15q8 .framer-sxmzn9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 480px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 48%; }\",\".framer-Y15q8 .framer-1htt755 { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-1cd84di { aspect-ratio: 7.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 142px; }\",\".framer-Y15q8 .framer-1anx1cf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px 72px 0px 72px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-1gblmux { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1056px; z-index: 8; }\",\".framer-Y15q8 .framer-1q6twlg, .framer-Y15q8 .framer-js47g4, .framer-Y15q8 .framer-1jxjz3f { align-content: flex-start; align-items: flex-start; background-color: #f9f8f3; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0px 1.1345751285552979px 2.2138051986694336px 0px rgba(0, 0, 0, 0.08), 0px 2.726541757583618px 5.32008171081543px 0px rgba(0, 0, 0, 0.07520172744989395), 0px 5.133836269378662px 10.017241477966309px 0px rgba(0, 0, 0, 0.08635707199573517), 0px 9.157886505126953px 17.869047164916992px 0px rgba(0, 0, 0, 0.13206951320171356), 0px 17.128820419311523px 33.422088623046875px 0px rgba(0, 0, 0, 0.23308224976062775), 0px 41px 80px 0px rgba(0, 0, 0, 0.41999998688697815); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Y15q8 .framer-isadxu, .framer-Y15q8 .framer-1oapr1c, .framer-Y15q8 .framer-5foj6o { aspect-ratio: 1.3328929986789961 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 597px); left: -225px; mix-blend-mode: difference; position: absolute; right: -225px; top: -260px; z-index: 1; }\",\".framer-Y15q8 .framer-10mq3rb, .framer-Y15q8 .framer-ed1mm3, .framer-Y15q8 .framer-2lw5n5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Y15q8 .framer-1mskm37, .framer-Y15q8 .framer-umfw0m { aspect-ratio: 1.8297872340425532 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 189px); position: relative; width: 346px; }\",\".framer-Y15q8 .framer-gyiunw, .framer-Y15q8 .framer-tw6y0g, .framer-Y15q8 .framer-16m7mcl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-1t0gw0u, .framer-Y15q8 .framer-nsk406, .framer-Y15q8 .framer-fj4hny { aspect-ratio: 5.480000215418198 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); max-width: 250px; position: relative; width: 100%; }\",\".framer-Y15q8 .framer-103l5al, .framer-Y15q8 .framer-ahzgkm, .framer-Y15q8 .framer-160z0eh { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Y15q8 .framer-j9zjrr { aspect-ratio: 1.8297872340425532 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 189px); position: relative; width: 345px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Y15q8.framer-72rtr7, .framer-Y15q8 .framer-uaamg0, .framer-Y15q8 .framer-1p60zcb, .framer-Y15q8 .framer-1kv1l1n, .framer-Y15q8 .framer-s9tvz3, .framer-Y15q8 .framer-4q1rbv, .framer-Y15q8 .framer-j7yzdh, .framer-Y15q8 .framer-169rwsg, .framer-Y15q8 .framer-p3t3zq, .framer-Y15q8 .framer-s75gzp, .framer-Y15q8 .framer-64bmwj, .framer-Y15q8 .framer-yy1b03, .framer-Y15q8 .framer-15c6p6l, .framer-Y15q8 .framer-1cfo0e1, .framer-Y15q8 .framer-1xblkvs, .framer-Y15q8 .framer-1cbc1n0, .framer-Y15q8 .framer-1cuzzgf, .framer-Y15q8 .framer-178j1dp, .framer-Y15q8 .framer-1b2g37f, .framer-Y15q8 .framer-4z9eyp, .framer-Y15q8 .framer-1mqz4dm, .framer-Y15q8 .framer-19g7zif, .framer-Y15q8 .framer-2gyg2n, .framer-Y15q8 .framer-157vkkl, .framer-Y15q8 .framer-1actkw5, .framer-Y15q8 .framer-i86y0p, .framer-Y15q8 .framer-uqrb6z, .framer-Y15q8 .framer-2r4bcv, .framer-Y15q8 .framer-aw3mp7, .framer-Y15q8 .framer-2squn6, .framer-Y15q8 .framer-1s00g3d, .framer-Y15q8 .framer-6pyu4b, .framer-Y15q8 .framer-615wm3, .framer-Y15q8 .framer-15tafh7, .framer-Y15q8 .framer-pm7s64, .framer-Y15q8 .framer-33hayk, .framer-Y15q8 .framer-ineh0o, .framer-Y15q8 .framer-sv3fl4, .framer-Y15q8 .framer-6ewv5d, .framer-Y15q8 .framer-zf7mej, .framer-Y15q8 .framer-wv1fmi, .framer-Y15q8 .framer-1e39sk, .framer-Y15q8 .framer-1fs1l6e, .framer-Y15q8 .framer-14r49cl, .framer-Y15q8 .framer-1156inl, .framer-Y15q8 .framer-157bi50, .framer-Y15q8 .framer-t0z3sb, .framer-Y15q8 .framer-1c0v044, .framer-Y15q8 .framer-9dqqzc, .framer-Y15q8 .framer-14a8q6d, .framer-Y15q8 .framer-1o3sv8m, .framer-Y15q8 .framer-21uxyb, .framer-Y15q8 .framer-1h1tu7e, .framer-Y15q8 .framer-jwlua9, .framer-Y15q8 .framer-1sosvow, .framer-Y15q8 .framer-1ltu1w0, .framer-Y15q8 .framer-v7tjg5, .framer-Y15q8 .framer-1hg5g0x, .framer-Y15q8 .framer-10ufneb, .framer-Y15q8 .framer-i9l4uo, .framer-Y15q8 .framer-h6nrn3, .framer-Y15q8 .framer-szgrqc, .framer-Y15q8 .framer-sxmzn9, .framer-Y15q8 .framer-1anx1cf, .framer-Y15q8 .framer-1gblmux, .framer-Y15q8 .framer-1q6twlg, .framer-Y15q8 .framer-10mq3rb, .framer-Y15q8 .framer-gyiunw, .framer-Y15q8 .framer-1jylgp9, .framer-Y15q8 .framer-js47g4, .framer-Y15q8 .framer-ed1mm3, .framer-Y15q8 .framer-tw6y0g, .framer-Y15q8 .framer-90xcnt, .framer-Y15q8 .framer-1jxjz3f, .framer-Y15q8 .framer-2lw5n5, .framer-Y15q8 .framer-16m7mcl, .framer-Y15q8 .framer-11nw6qh { gap: 0px; } .framer-Y15q8.framer-72rtr7 > *, .framer-Y15q8 .framer-1kv1l1n > *, .framer-Y15q8 .framer-p3t3zq > *, .framer-Y15q8 .framer-s75gzp > *, .framer-Y15q8 .framer-yy1b03 > *, .framer-Y15q8 .framer-15tafh7 > *, .framer-Y15q8 .framer-14r49cl > *, .framer-Y15q8 .framer-v7tjg5 > *, .framer-Y15q8 .framer-10mq3rb > *, .framer-Y15q8 .framer-ed1mm3 > *, .framer-Y15q8 .framer-2lw5n5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Y15q8.framer-72rtr7 > :first-child, .framer-Y15q8 .framer-uaamg0 > :first-child, .framer-Y15q8 .framer-1p60zcb > :first-child, .framer-Y15q8 .framer-1kv1l1n > :first-child, .framer-Y15q8 .framer-s9tvz3 > :first-child, .framer-Y15q8 .framer-p3t3zq > :first-child, .framer-Y15q8 .framer-s75gzp > :first-child, .framer-Y15q8 .framer-64bmwj > :first-child, .framer-Y15q8 .framer-yy1b03 > :first-child, .framer-Y15q8 .framer-1cfo0e1 > :first-child, .framer-Y15q8 .framer-1cbc1n0 > :first-child, .framer-Y15q8 .framer-178j1dp > :first-child, .framer-Y15q8 .framer-1mqz4dm > :first-child, .framer-Y15q8 .framer-2gyg2n > :first-child, .framer-Y15q8 .framer-1actkw5 > :first-child, .framer-Y15q8 .framer-2r4bcv > :first-child, .framer-Y15q8 .framer-2squn6 > :first-child, .framer-Y15q8 .framer-6pyu4b > :first-child, .framer-Y15q8 .framer-15tafh7 > :first-child, .framer-Y15q8 .framer-pm7s64 > :first-child, .framer-Y15q8 .framer-33hayk > :first-child, .framer-Y15q8 .framer-ineh0o > :first-child, .framer-Y15q8 .framer-zf7mej > :first-child, .framer-Y15q8 .framer-wv1fmi > :first-child, .framer-Y15q8 .framer-1e39sk > :first-child, .framer-Y15q8 .framer-14r49cl > :first-child, .framer-Y15q8 .framer-1156inl > :first-child, .framer-Y15q8 .framer-157bi50 > :first-child, .framer-Y15q8 .framer-14a8q6d > :first-child, .framer-Y15q8 .framer-1o3sv8m > :first-child, .framer-Y15q8 .framer-21uxyb > :first-child, .framer-Y15q8 .framer-1h1tu7e > :first-child, .framer-Y15q8 .framer-1sosvow > :first-child, .framer-Y15q8 .framer-1ltu1w0 > :first-child, .framer-Y15q8 .framer-v7tjg5 > :first-child, .framer-Y15q8 .framer-sxmzn9 > :first-child, .framer-Y15q8 .framer-10mq3rb > :first-child, .framer-Y15q8 .framer-gyiunw > :first-child, .framer-Y15q8 .framer-1jylgp9 > :first-child, .framer-Y15q8 .framer-ed1mm3 > :first-child, .framer-Y15q8 .framer-tw6y0g > :first-child, .framer-Y15q8 .framer-90xcnt > :first-child, .framer-Y15q8 .framer-2lw5n5 > :first-child, .framer-Y15q8 .framer-16m7mcl > :first-child, .framer-Y15q8 .framer-11nw6qh > :first-child { margin-top: 0px; } .framer-Y15q8.framer-72rtr7 > :last-child, .framer-Y15q8 .framer-uaamg0 > :last-child, .framer-Y15q8 .framer-1p60zcb > :last-child, .framer-Y15q8 .framer-1kv1l1n > :last-child, .framer-Y15q8 .framer-s9tvz3 > :last-child, .framer-Y15q8 .framer-p3t3zq > :last-child, .framer-Y15q8 .framer-s75gzp > :last-child, .framer-Y15q8 .framer-64bmwj > :last-child, .framer-Y15q8 .framer-yy1b03 > :last-child, .framer-Y15q8 .framer-1cfo0e1 > :last-child, .framer-Y15q8 .framer-1cbc1n0 > :last-child, .framer-Y15q8 .framer-178j1dp > :last-child, .framer-Y15q8 .framer-1mqz4dm > :last-child, .framer-Y15q8 .framer-2gyg2n > :last-child, .framer-Y15q8 .framer-1actkw5 > :last-child, .framer-Y15q8 .framer-2r4bcv > :last-child, .framer-Y15q8 .framer-2squn6 > :last-child, .framer-Y15q8 .framer-6pyu4b > :last-child, .framer-Y15q8 .framer-15tafh7 > :last-child, .framer-Y15q8 .framer-pm7s64 > :last-child, .framer-Y15q8 .framer-33hayk > :last-child, .framer-Y15q8 .framer-ineh0o > :last-child, .framer-Y15q8 .framer-zf7mej > :last-child, .framer-Y15q8 .framer-wv1fmi > :last-child, .framer-Y15q8 .framer-1e39sk > :last-child, .framer-Y15q8 .framer-14r49cl > :last-child, .framer-Y15q8 .framer-1156inl > :last-child, .framer-Y15q8 .framer-157bi50 > :last-child, .framer-Y15q8 .framer-14a8q6d > :last-child, .framer-Y15q8 .framer-1o3sv8m > :last-child, .framer-Y15q8 .framer-21uxyb > :last-child, .framer-Y15q8 .framer-1h1tu7e > :last-child, .framer-Y15q8 .framer-1sosvow > :last-child, .framer-Y15q8 .framer-1ltu1w0 > :last-child, .framer-Y15q8 .framer-v7tjg5 > :last-child, .framer-Y15q8 .framer-sxmzn9 > :last-child, .framer-Y15q8 .framer-10mq3rb > :last-child, .framer-Y15q8 .framer-gyiunw > :last-child, .framer-Y15q8 .framer-1jylgp9 > :last-child, .framer-Y15q8 .framer-ed1mm3 > :last-child, .framer-Y15q8 .framer-tw6y0g > :last-child, .framer-Y15q8 .framer-90xcnt > :last-child, .framer-Y15q8 .framer-2lw5n5 > :last-child, .framer-Y15q8 .framer-16m7mcl > :last-child, .framer-Y15q8 .framer-11nw6qh > :last-child { margin-bottom: 0px; } .framer-Y15q8 .framer-uaamg0 > *, .framer-Y15q8 .framer-64bmwj > *, .framer-Y15q8 .framer-ineh0o > *, .framer-Y15q8 .framer-gyiunw > *, .framer-Y15q8 .framer-tw6y0g > *, .framer-Y15q8 .framer-16m7mcl > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Y15q8 .framer-1p60zcb > *, .framer-Y15q8 .framer-wv1fmi > *, .framer-Y15q8 .framer-1156inl > *, .framer-Y15q8 .framer-1o3sv8m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Y15q8 .framer-s9tvz3 > *, .framer-Y15q8 .framer-pm7s64 > *, .framer-Y15q8 .framer-1h1tu7e > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-Y15q8 .framer-4q1rbv > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-Y15q8 .framer-4q1rbv > :first-child, .framer-Y15q8 .framer-j7yzdh > :first-child, .framer-Y15q8 .framer-169rwsg > :first-child, .framer-Y15q8 .framer-15c6p6l > :first-child, .framer-Y15q8 .framer-1xblkvs > :first-child, .framer-Y15q8 .framer-1cuzzgf > :first-child, .framer-Y15q8 .framer-1b2g37f > :first-child, .framer-Y15q8 .framer-4z9eyp > :first-child, .framer-Y15q8 .framer-19g7zif > :first-child, .framer-Y15q8 .framer-157vkkl > :first-child, .framer-Y15q8 .framer-i86y0p > :first-child, .framer-Y15q8 .framer-uqrb6z > :first-child, .framer-Y15q8 .framer-aw3mp7 > :first-child, .framer-Y15q8 .framer-1s00g3d > :first-child, .framer-Y15q8 .framer-615wm3 > :first-child, .framer-Y15q8 .framer-sv3fl4 > :first-child, .framer-Y15q8 .framer-6ewv5d > :first-child, .framer-Y15q8 .framer-1fs1l6e > :first-child, .framer-Y15q8 .framer-t0z3sb > :first-child, .framer-Y15q8 .framer-1c0v044 > :first-child, .framer-Y15q8 .framer-9dqqzc > :first-child, .framer-Y15q8 .framer-jwlua9 > :first-child, .framer-Y15q8 .framer-1hg5g0x > :first-child, .framer-Y15q8 .framer-10ufneb > :first-child, .framer-Y15q8 .framer-i9l4uo > :first-child, .framer-Y15q8 .framer-h6nrn3 > :first-child, .framer-Y15q8 .framer-szgrqc > :first-child, .framer-Y15q8 .framer-1anx1cf > :first-child, .framer-Y15q8 .framer-1gblmux > :first-child, .framer-Y15q8 .framer-1q6twlg > :first-child, .framer-Y15q8 .framer-js47g4 > :first-child, .framer-Y15q8 .framer-1jxjz3f > :first-child { margin-left: 0px; } .framer-Y15q8 .framer-4q1rbv > :last-child, .framer-Y15q8 .framer-j7yzdh > :last-child, .framer-Y15q8 .framer-169rwsg > :last-child, .framer-Y15q8 .framer-15c6p6l > :last-child, .framer-Y15q8 .framer-1xblkvs > :last-child, .framer-Y15q8 .framer-1cuzzgf > :last-child, .framer-Y15q8 .framer-1b2g37f > :last-child, .framer-Y15q8 .framer-4z9eyp > :last-child, .framer-Y15q8 .framer-19g7zif > :last-child, .framer-Y15q8 .framer-157vkkl > :last-child, .framer-Y15q8 .framer-i86y0p > :last-child, .framer-Y15q8 .framer-uqrb6z > :last-child, .framer-Y15q8 .framer-aw3mp7 > :last-child, .framer-Y15q8 .framer-1s00g3d > :last-child, .framer-Y15q8 .framer-615wm3 > :last-child, .framer-Y15q8 .framer-sv3fl4 > :last-child, .framer-Y15q8 .framer-6ewv5d > :last-child, .framer-Y15q8 .framer-1fs1l6e > :last-child, .framer-Y15q8 .framer-t0z3sb > :last-child, .framer-Y15q8 .framer-1c0v044 > :last-child, .framer-Y15q8 .framer-9dqqzc > :last-child, .framer-Y15q8 .framer-jwlua9 > :last-child, .framer-Y15q8 .framer-1hg5g0x > :last-child, .framer-Y15q8 .framer-10ufneb > :last-child, .framer-Y15q8 .framer-i9l4uo > :last-child, .framer-Y15q8 .framer-h6nrn3 > :last-child, .framer-Y15q8 .framer-szgrqc > :last-child, .framer-Y15q8 .framer-1anx1cf > :last-child, .framer-Y15q8 .framer-1gblmux > :last-child, .framer-Y15q8 .framer-1q6twlg > :last-child, .framer-Y15q8 .framer-js47g4 > :last-child, .framer-Y15q8 .framer-1jxjz3f > :last-child { margin-right: 0px; } .framer-Y15q8 .framer-j7yzdh > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-Y15q8 .framer-169rwsg > *, .framer-Y15q8 .framer-1hg5g0x > *, .framer-Y15q8 .framer-10ufneb > *, .framer-Y15q8 .framer-i9l4uo > *, .framer-Y15q8 .framer-h6nrn3 > *, .framer-Y15q8 .framer-1gblmux > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Y15q8 .framer-15c6p6l > *, .framer-Y15q8 .framer-4z9eyp > *, .framer-Y15q8 .framer-uqrb6z > *, .framer-Y15q8 .framer-sv3fl4 > *, .framer-Y15q8 .framer-6ewv5d > *, .framer-Y15q8 .framer-1fs1l6e > *, .framer-Y15q8 .framer-t0z3sb > *, .framer-Y15q8 .framer-1c0v044 > *, .framer-Y15q8 .framer-9dqqzc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Y15q8 .framer-1cfo0e1 > *, .framer-Y15q8 .framer-1cbc1n0 > *, .framer-Y15q8 .framer-178j1dp > *, .framer-Y15q8 .framer-1mqz4dm > *, .framer-Y15q8 .framer-2gyg2n > *, .framer-Y15q8 .framer-1actkw5 > *, .framer-Y15q8 .framer-2r4bcv > *, .framer-Y15q8 .framer-2squn6 > *, .framer-Y15q8 .framer-6pyu4b > * { margin: 0px; margin-bottom: calc(8.384145736694336px / 2); margin-top: calc(8.384145736694336px / 2); } .framer-Y15q8 .framer-1xblkvs > *, .framer-Y15q8 .framer-1cuzzgf > *, .framer-Y15q8 .framer-1b2g37f > *, .framer-Y15q8 .framer-19g7zif > *, .framer-Y15q8 .framer-157vkkl > *, .framer-Y15q8 .framer-i86y0p > *, .framer-Y15q8 .framer-aw3mp7 > *, .framer-Y15q8 .framer-1s00g3d > *, .framer-Y15q8 .framer-615wm3 > * { margin: 0px; margin-left: calc(8.384145736694336px / 2); margin-right: calc(8.384145736694336px / 2); } .framer-Y15q8 .framer-33hayk > *, .framer-Y15q8 .framer-sxmzn9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Y15q8 .framer-zf7mej > *, .framer-Y15q8 .framer-14a8q6d > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Y15q8 .framer-1e39sk > *, .framer-Y15q8 .framer-21uxyb > *, .framer-Y15q8 .framer-1jylgp9 > *, .framer-Y15q8 .framer-90xcnt > *, .framer-Y15q8 .framer-11nw6qh > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Y15q8 .framer-157bi50 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-Y15q8 .framer-jwlua9 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Y15q8 .framer-1sosvow > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Y15q8 .framer-1ltu1w0 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-Y15q8 .framer-szgrqc > *, .framer-Y15q8 .framer-1anx1cf > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Y15q8 .framer-1q6twlg > *, .framer-Y15q8 .framer-js47g4 > *, .framer-Y15q8 .framer-1jxjz3f > * { margin: 0px; margin-left: calc(128px / 2); margin-right: calc(128px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-Y15q8 { background: rgb(26, 22, 21); } .framer-Y15q8.framer-72rtr7 { width: 810px; } .framer-Y15q8 .framer-1a4qfb6 { height: 58px; left: calc(49.876543209876566% - 138px / 2); top: 92px; width: 138px; } .framer-Y15q8 .framer-ch7ckr { bottom: 2px; height: unset; left: 52%; transform: translateX(-50%); white-space: pre; width: auto; } .framer-Y15q8 .framer-2sm6bv { height: var(--framer-aspect-ratio-supported, 458px); width: 798px; } .framer-Y15q8 .framer-fi8d2t { height: 396px; width: 706px; } .framer-Y15q8 .framer-3lgy04-container { bottom: -17px; height: unset; left: -1px; right: -4px; top: -19px; width: unset; } .framer-Y15q8 .framer-j7yzdh { gap: 48px; padding: 0px 36px 0px 36px; } .framer-Y15q8 .framer-p3t3zq { min-height: 224px; } .framer-Y15q8 .framer-oal5a5 { left: 53%; top: 50%; width: 450px; } .framer-Y15q8 .framer-f8sw8j { height: 225px; width: 233px; } .framer-Y15q8 .framer-165q3dg { height: 256px; } .framer-Y15q8 .framer-1r9ib8j { bottom: 104px; top: 5px; } .framer-Y15q8 .framer-1cfo0e1, .framer-Y15q8 .framer-1cbc1n0, .framer-Y15q8 .framer-178j1dp, .framer-Y15q8 .framer-1mqz4dm, .framer-Y15q8 .framer-2gyg2n, .framer-Y15q8 .framer-1actkw5, .framer-Y15q8 .framer-2r4bcv, .framer-Y15q8 .framer-2squn6, .framer-Y15q8 .framer-6pyu4b { height: 180px; } .framer-Y15q8 .framer-1b2g37f, .framer-Y15q8 .framer-19g7zif, .framer-Y15q8 .framer-157vkkl, .framer-Y15q8 .framer-aw3mp7, .framer-Y15q8 .framer-1s00g3d { min-width: unset; width: 100%; } .framer-Y15q8 .framer-pm7s64 { padding: 72px 48px 72px 48px; } .framer-Y15q8 .framer-33hayk, .framer-Y15q8 .framer-19u0rf9, .framer-Y15q8 .framer-1ltu1w0 { width: 100%; } .framer-Y15q8 .framer-5e8sc9 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Y15q8 .framer-6ewv5d { flex-direction: column; width: 30%; } .framer-Y15q8 .framer-fuh6ih, .framer-Y15q8 .framer-1esvixv, .framer-Y15q8 .framer-1lbkepd { height: 1px; width: 100%; } .framer-Y15q8 .framer-zf7mej { flex: none; padding: 24px 24px 36px 24px; width: 70%; } .framer-Y15q8 .framer-aqh10x, .framer-Y15q8 .framer-t2magz { order: 0; } .framer-Y15q8 .framer-fb9kym, .framer-Y15q8 .framer-1s32crk { order: 0; width: 100%; } .framer-Y15q8 .framer-wzycvn, .framer-Y15q8 .framer-w4j8l8 { order: 1; } .framer-Y15q8 .framer-14r49cl { flex: none; order: 0; padding: 24px 24px 36px 24px; width: 70%; } .framer-Y15q8 .framer-t0z3sb { flex-direction: column; justify-content: center; order: 1; width: 30%; } .framer-Y15q8 .framer-9dqqzc { align-self: stretch; flex-direction: column; height: auto; width: 30%; } .framer-Y15q8 .framer-14a8q6d { align-self: unset; flex: none; height: min-content; padding: 24px 24px 36px 24px; width: 70%; } .framer-Y15q8 .framer-1h1tu7e { padding: 72px; } .framer-Y15q8 .framer-jwlua9 { gap: 36px; } .framer-Y15q8 .framer-1sosvow { width: 55%; } .framer-Y15q8 .framer-szgrqc { align-self: unset; flex-wrap: wrap; overflow: visible; width: 100%; } .framer-Y15q8 .framer-sxmzn9, .framer-Y15q8 .framer-1jylgp9, .framer-Y15q8 .framer-90xcnt, .framer-Y15q8 .framer-11nw6qh { flex: 1 0 0px; width: 1px; } .framer-Y15q8 .framer-1anx1cf { flex-direction: column; padding: 0px; } .framer-Y15q8 .framer-1gblmux { flex-direction: column; width: 100%; } .framer-Y15q8 .framer-1q6twlg, .framer-Y15q8 .framer-js47g4, .framer-Y15q8 .framer-1jxjz3f { flex: none; width: 100%; } .framer-Y15q8 .framer-isadxu, .framer-Y15q8 .framer-1oapr1c, .framer-Y15q8 .framer-5foj6o { height: var(--framer-aspect-ratio-supported, 837px); } .framer-Y15q8 .framer-gyiunw, .framer-Y15q8 .framer-tw6y0g, .framer-Y15q8 .framer-16m7mcl { align-content: flex-end; align-items: flex-end; flex-direction: row; gap: 48px; } .framer-Y15q8 .framer-1t0gw0u, .framer-Y15q8 .framer-nsk406, .framer-Y15q8 .framer-fj4hny { height: var(--framer-aspect-ratio-supported, 37px); max-width: 200px; } .framer-Y15q8 .framer-1mx7y3p-container, .framer-Y15q8 .framer-3a55wj-container, .framer-Y15q8 .framer-ognlv8-container { z-index: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Y15q8 .framer-j7yzdh, .framer-Y15q8 .framer-6ewv5d, .framer-Y15q8 .framer-t0z3sb, .framer-Y15q8 .framer-9dqqzc, .framer-Y15q8 .framer-jwlua9, .framer-Y15q8 .framer-1anx1cf, .framer-Y15q8 .framer-1gblmux, .framer-Y15q8 .framer-gyiunw, .framer-Y15q8 .framer-tw6y0g, .framer-Y15q8 .framer-16m7mcl { gap: 0px; } .framer-Y15q8 .framer-j7yzdh > *, .framer-Y15q8 .framer-gyiunw > *, .framer-Y15q8 .framer-tw6y0g > *, .framer-Y15q8 .framer-16m7mcl > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Y15q8 .framer-j7yzdh > :first-child, .framer-Y15q8 .framer-jwlua9 > :first-child, .framer-Y15q8 .framer-gyiunw > :first-child, .framer-Y15q8 .framer-tw6y0g > :first-child, .framer-Y15q8 .framer-16m7mcl > :first-child { margin-left: 0px; } .framer-Y15q8 .framer-j7yzdh > :last-child, .framer-Y15q8 .framer-jwlua9 > :last-child, .framer-Y15q8 .framer-gyiunw > :last-child, .framer-Y15q8 .framer-tw6y0g > :last-child, .framer-Y15q8 .framer-16m7mcl > :last-child { margin-right: 0px; } .framer-Y15q8 .framer-6ewv5d > *, .framer-Y15q8 .framer-t0z3sb > *, .framer-Y15q8 .framer-9dqqzc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Y15q8 .framer-6ewv5d > :first-child, .framer-Y15q8 .framer-t0z3sb > :first-child, .framer-Y15q8 .framer-9dqqzc > :first-child, .framer-Y15q8 .framer-1anx1cf > :first-child, .framer-Y15q8 .framer-1gblmux > :first-child { margin-top: 0px; } .framer-Y15q8 .framer-6ewv5d > :last-child, .framer-Y15q8 .framer-t0z3sb > :last-child, .framer-Y15q8 .framer-9dqqzc > :last-child, .framer-Y15q8 .framer-1anx1cf > :last-child, .framer-Y15q8 .framer-1gblmux > :last-child { margin-bottom: 0px; } .framer-Y15q8 .framer-jwlua9 > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-Y15q8 .framer-1anx1cf > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Y15q8 .framer-1gblmux > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-Y15q8 { background: rgb(26, 22, 21); } .framer-Y15q8.framer-72rtr7 { width: 390px; } .framer-Y15q8 .framer-uaamg0 { gap: 20px; padding: 96px 0px 16px 0px; } .framer-Y15q8 .framer-1a4qfb6 { height: 21px; left: calc(49.743589743589766% - 67px / 2); width: 67px; } .framer-Y15q8 .framer-ch7ckr { height: 93px; left: unset; right: -72px; top: -35px; width: 209px; } .framer-Y15q8 .framer-1tyoxxz, .framer-Y15q8 .framer-1cd84di { order: 0; } .framer-Y15q8 .framer-6iwhks-container { bottom: unset; height: 248px; left: calc(50.00000000000002% - 386px / 2); top: 78px; width: 386px; z-index: 3; } .framer-Y15q8 .framer-s9tvz3 { gap: 48px; } .framer-Y15q8 .framer-4q1rbv { justify-content: flex-end; padding: 0px 16px 0px 0px; } .framer-Y15q8 .framer-j7yzdh { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 48px; padding: 0px 16px 0px 16px; } .framer-Y15q8 .framer-169rwsg { flex: none; flex-direction: column; gap: 36px; width: 100%; } .framer-Y15q8 .framer-p3t3zq { flex: none; gap: 12px; min-height: unset; width: 100%; } .framer-Y15q8 .framer-oal5a5 { left: unset; position: relative; top: unset; transform: unset; width: 355px; } .framer-Y15q8 .framer-f8sw8j { height: 220px; width: 100%; } .framer-Y15q8 .framer-s75gzp { padding: 0px 0px 12px 0px; } .framer-Y15q8 .framer-165q3dg { height: 247px; order: 0; } .framer-Y15q8 .framer-1r9ib8j { bottom: 127px; height: 92px; top: unset; } .framer-Y15q8 .framer-899o4l-container { left: -13px; right: -229px; top: calc(47.82608695652176% - 76px / 2); width: unset; } .framer-Y15q8 .framer-1u07lyp-container { left: -9px; width: unset; } .framer-Y15q8 .framer-l9zcqk-container { order: 2; } .framer-Y15q8 .framer-15tafh7 { height: 4191px; } .framer-Y15q8 .framer-pm7s64 { gap: 48px; padding: 36px 16px 72px 16px; } .framer-Y15q8 .framer-33hayk, .framer-Y15q8 .framer-fb9kym { width: 100%; } .framer-Y15q8 .framer-5e8sc9 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Y15q8 .framer-sv3fl4, .framer-Y15q8 .framer-1fs1l6e, .framer-Y15q8 .framer-1c0v044 { flex-direction: column; } .framer-Y15q8 .framer-6ewv5d { align-self: unset; height: min-content; width: 100%; } .framer-Y15q8 .framer-fuh6ih, .framer-Y15q8 .framer-1esvixv, .framer-Y15q8 .framer-1lbkepd { height: 200px; } .framer-Y15q8 .framer-zf7mej { flex: none; padding: 16px; width: 100%; } .framer-Y15q8 .framer-aqh10x { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); width: 64px; } .framer-Y15q8 .framer-14r49cl { flex: none; order: 1; padding: 16px; width: 100%; } .framer-Y15q8 .framer-c9bt6c { aspect-ratio: 1.010989010989011 / 1; height: var(--framer-aspect-ratio-supported, 64px); width: 65px; } .framer-Y15q8 .framer-t0z3sb { align-self: unset; height: min-content; order: 0; width: 100%; } .framer-Y15q8 .framer-9dqqzc { height: min-content; width: 100%; } .framer-Y15q8 .framer-14a8q6d { align-self: unset; flex: none; height: min-content; padding: 16px; width: 100%; } .framer-Y15q8 .framer-t2magz { aspect-ratio: 0.9891304347826086 / 1; height: var(--framer-aspect-ratio-supported, 64px); width: 63px; } .framer-Y15q8 .framer-1h1tu7e { flex: 1 0 0px; height: 1px; padding: 48px 16px 48px 16px; } .framer-Y15q8 .framer-jwlua9 { flex-direction: column; order: 0; } .framer-Y15q8 .framer-1sosvow { gap: 36px; height: 538px; order: 1; } .framer-Y15q8 .framer-1ltu1w0 { gap: 0px; height: 356px; max-width: 100%; min-width: 100px; order: 0; width: 333px; z-index: 1; } .framer-Y15q8 .framer-vbd3ku { flex: 1 0 0px; height: 1px; } .framer-Y15q8 .framer-szgrqc { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; gap: 8px; height: 1px; order: 1; } .framer-Y15q8 .framer-1nqtyu6-container { order: 0; width: 100%; } .framer-Y15q8 .framer-8a5rww-container { order: 1; width: 100%; } .framer-Y15q8 .framer-sxmzn9 { height: min-content; order: 0; width: 100%; } .framer-Y15q8 .framer-1htt755 { flex: none; height: 243px; order: 1; } .framer-Y15q8 .framer-1anx1cf { flex-direction: column; order: 1; padding: 0px; } .framer-Y15q8 .framer-1gblmux { flex-direction: column; width: 100%; } .framer-Y15q8 .framer-1q6twlg, .framer-Y15q8 .framer-js47g4, .framer-Y15q8 .framer-1jxjz3f { flex: none; width: 100%; } .framer-Y15q8 .framer-isadxu { bottom: -86px; height: var(--framer-aspect-ratio-supported, 606px); top: unset; } .framer-Y15q8 .framer-gyiunw, .framer-Y15q8 .framer-tw6y0g, .framer-Y15q8 .framer-16m7mcl { gap: 20px; } .framer-Y15q8 .framer-1t0gw0u, .framer-Y15q8 .framer-nsk406, .framer-Y15q8 .framer-fj4hny { height: var(--framer-aspect-ratio-supported, 37px); max-width: 200px; } .framer-Y15q8 .framer-1mx7y3p-container, .framer-Y15q8 .framer-3a55wj-container, .framer-Y15q8 .framer-ognlv8-container { width: 100%; z-index: 3; } .framer-Y15q8 .framer-1oapr1c, .framer-Y15q8 .framer-5foj6o { bottom: -86px; height: var(--framer-aspect-ratio-supported, 607px); top: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Y15q8 .framer-uaamg0, .framer-Y15q8 .framer-s9tvz3, .framer-Y15q8 .framer-j7yzdh, .framer-Y15q8 .framer-169rwsg, .framer-Y15q8 .framer-p3t3zq, .framer-Y15q8 .framer-pm7s64, .framer-Y15q8 .framer-sv3fl4, .framer-Y15q8 .framer-1fs1l6e, .framer-Y15q8 .framer-1c0v044, .framer-Y15q8 .framer-jwlua9, .framer-Y15q8 .framer-1sosvow, .framer-Y15q8 .framer-1ltu1w0, .framer-Y15q8 .framer-szgrqc, .framer-Y15q8 .framer-1anx1cf, .framer-Y15q8 .framer-1gblmux, .framer-Y15q8 .framer-gyiunw, .framer-Y15q8 .framer-tw6y0g, .framer-Y15q8 .framer-16m7mcl { gap: 0px; } .framer-Y15q8 .framer-uaamg0 > *, .framer-Y15q8 .framer-gyiunw > *, .framer-Y15q8 .framer-tw6y0g > *, .framer-Y15q8 .framer-16m7mcl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Y15q8 .framer-uaamg0 > :first-child, .framer-Y15q8 .framer-s9tvz3 > :first-child, .framer-Y15q8 .framer-j7yzdh > :first-child, .framer-Y15q8 .framer-169rwsg > :first-child, .framer-Y15q8 .framer-p3t3zq > :first-child, .framer-Y15q8 .framer-pm7s64 > :first-child, .framer-Y15q8 .framer-sv3fl4 > :first-child, .framer-Y15q8 .framer-1fs1l6e > :first-child, .framer-Y15q8 .framer-1c0v044 > :first-child, .framer-Y15q8 .framer-jwlua9 > :first-child, .framer-Y15q8 .framer-1sosvow > :first-child, .framer-Y15q8 .framer-1ltu1w0 > :first-child, .framer-Y15q8 .framer-szgrqc > :first-child, .framer-Y15q8 .framer-1anx1cf > :first-child, .framer-Y15q8 .framer-1gblmux > :first-child, .framer-Y15q8 .framer-gyiunw > :first-child, .framer-Y15q8 .framer-tw6y0g > :first-child, .framer-Y15q8 .framer-16m7mcl > :first-child { margin-top: 0px; } .framer-Y15q8 .framer-uaamg0 > :last-child, .framer-Y15q8 .framer-s9tvz3 > :last-child, .framer-Y15q8 .framer-j7yzdh > :last-child, .framer-Y15q8 .framer-169rwsg > :last-child, .framer-Y15q8 .framer-p3t3zq > :last-child, .framer-Y15q8 .framer-pm7s64 > :last-child, .framer-Y15q8 .framer-sv3fl4 > :last-child, .framer-Y15q8 .framer-1fs1l6e > :last-child, .framer-Y15q8 .framer-1c0v044 > :last-child, .framer-Y15q8 .framer-jwlua9 > :last-child, .framer-Y15q8 .framer-1sosvow > :last-child, .framer-Y15q8 .framer-1ltu1w0 > :last-child, .framer-Y15q8 .framer-szgrqc > :last-child, .framer-Y15q8 .framer-1anx1cf > :last-child, .framer-Y15q8 .framer-1gblmux > :last-child, .framer-Y15q8 .framer-gyiunw > :last-child, .framer-Y15q8 .framer-tw6y0g > :last-child, .framer-Y15q8 .framer-16m7mcl > :last-child { margin-bottom: 0px; } .framer-Y15q8 .framer-s9tvz3 > *, .framer-Y15q8 .framer-j7yzdh > *, .framer-Y15q8 .framer-pm7s64 > *, .framer-Y15q8 .framer-jwlua9 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Y15q8 .framer-169rwsg > *, .framer-Y15q8 .framer-1sosvow > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-Y15q8 .framer-p3t3zq > *, .framer-Y15q8 .framer-1anx1cf > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Y15q8 .framer-sv3fl4 > *, .framer-Y15q8 .framer-1fs1l6e > *, .framer-Y15q8 .framer-1c0v044 > *, .framer-Y15q8 .framer-1ltu1w0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Y15q8 .framer-szgrqc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Y15q8 .framer-1gblmux > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5272\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nn0CR5xO9\":{\"layout\":[\"fixed\",\"auto\"]},\"LDxz2sIPs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Y15q8\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5272,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Magnate Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/45wBuewi6gkwiqsEIoXhCVQ6vM.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\"},{family:\"Bronco InLine Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/DWfwShqSKP5ePP2pgSKcL9QU.woff2\"},{family:\"Raleway\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCKNLA3JC9c.woff2\",weight:\"500\"}]},...NavbarFonts,...VimeoFonts,...CTAFonts,...Logo1Fonts,...CelebsMobileFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nn0CR5xO9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LDxz2sIPs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"5272\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"__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", "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", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "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", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "SVG", "Image2", "css", "Framerq84F58Lx9", "withCSS", "q84F58Lx9_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "AelDvyySa_default", "VimeoFonts", "Vimeo_default", "CTAFonts", "I_Rx0Iwb8_default", "Logo1Fonts", "q84F58Lx9_default", "CelebsMobileFonts", "TwlO9XFAW_default", "FooterFonts", "KBcrG_GKh_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapizu9gt", "overlay", "paginationInfo", "args", "onTapwelu7j", "ref1", "pe", "isDisplayed", "isDisplayed1", "ref2", "ref3", "isDisplayed2", "ref4", "ref5", "isDisplayed3", "router", "useRouter", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "x", "RichText2", "l", "SVG", "AnimatePresence", "Floating", "overlay1", "overlay2", "Ga", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
