{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/Kuwa4LRQnmmppaTnEydr/OyCZglBxLZoJn5latIqw/DataInput.js", "ssg:https://framerusercontent.com/modules/Eimqj79fjElrLlTfmv0n/aFv06ufqf6bHBKFqDLmb/kM24On6Gt.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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType,RenderTarget,withCSS}from\"framer\";import{forwardRef,useEffect,useState,useRef,useId}from\"react\";import{motion}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// totalPages\n// pageHistory\n// logicConfig\n// isEndPage\n// previousPage()\n// nextPage()\nexport const useMultiStepFormStore=createStore({});export const HIDDEN_CLASS_NAME=\"framerforms-hidden\";const CANVAS_HIDDEN_CLASS_NAME=\"framerforms-canvas-hidden\";export const useInstanceId=()=>{const id=useId();const cleanId=id.replace(/:/g,\"\");const instanceId=`superfields-${cleanId}`;return instanceId;};export const HiddenInput=/*#__PURE__*/forwardRef(({name,required,value,setInvalid,onSetValueEvent,noPrefill=false,disabled=false},parentRef)=>{const internalRef=useRef(null);const ref=parentRef||internalRef;useEffect(()=>{if(ref.current){ref.current.addEventListener(\"framerFormsSetValue\",onSetValueEvent);}return()=>{if(ref.current){ref.current.removeEventListener(\"framerFormsSetValue\",onSetValueEvent);}};},[onSetValueEvent]);return /*#__PURE__*/_jsx(\"input\",{ref:ref,type:\"text\",\"data-framerforms-set-value-event\":!!onSetValueEvent,\"data-framerforms-no-prefill\":noPrefill,style:{position:\"absolute\",opacity:0,pointerEvents:\"none\",inset:0},tabIndex:-1,name:name,required:required,value:value,disabled:disabled,onInvalid:event=>{event.preventDefault();setInvalid(true);}});});const HideElementComponent=/*#__PURE__*/forwardRef(({},ref)=>{return /*#__PURE__*/_jsx(\"div\",{ref:ref,className:HIDDEN_CLASS_NAME});});export const HideElement=withCSS(HideElementComponent,[`div:has(> .${HIDDEN_CLASS_NAME}) { display: none; }`,`.${HIDDEN_CLASS_NAME} { display: none; }`],HIDDEN_CLASS_NAME);HideElement.displayName=\"FramerForms/Hide Element\";export const HiddenComponentLabel=/*#__PURE__*/forwardRef(({text,subtext=\"\",children=null,...otherProps},ref)=>{const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=useInstanceId();return isCanvas?/*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,...otherProps,ref:ref,className:CANVAS_HIDDEN_CLASS_NAME,style:{backgroundColor:\"rgba(187, 187, 187, 0.15)\",borderRadius:10,padding:\"12px 16px\",fontFamily:\"Inter\",fontWeight:500,fontSize:12,color:\"#999\",display:\"flex\",flexDirection:\"column\",gap:4,alignItems:\"center\",textAlign:\"center\",width:\"100%\",height:\"100%\",textWrap:\"nowrap\"},children:[children,text,subtext&&/*#__PURE__*/_jsx(\"span\",{style:{opacity:.7,whiteSpace:\"pre\",lineHeight:1.4},children:subtext}),/*#__PURE__*/_jsx(Border,{width:\"1px\",style:\"solid\",borderColor:\"rgba(136, 136, 136, 0.1)\"}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                        [data-framer-component-container=\"true\"] div:has(> .${CANVAS_HIDDEN_CLASS_NAME}) {\n                            display: none !important;\n                        }`}})]}):/*#__PURE__*/_jsxs(\"div\",{...otherProps,ref:ref,className:HIDDEN_CLASS_NAME,children:[/*#__PURE__*/_jsx(HideElement,{}),children]});});HiddenComponentLabel.displayName=\"FramerForms/Hidden Component Label\";export function iconProp({size=16,buttonTitle=\"Icon\",controls={}}={}){return{type:ControlType.Object,buttonTitle,optional:true,defaultValue:{color:\"#999\",size},controls:{image:{type:ControlType.Image},color:{type:ControlType.Color,optional:true,defaultValue:\"#999\"},size:{type:ControlType.Number,defaultValue:size,min:1,step:1,displayStepper:true},...controls}};}export function Icon({image,color,size,style={},defaultImage}){return /*#__PURE__*/_jsx(\"div\",{style:{width:size,height:size,minWidth:size,minHeight:size,pointerEvents:\"none\",backgroundColor:color,backgroundImage:color?\"none\":image?`url('${image}')`:defaultImage,maskImage:image?`url('${image}')`:defaultImage,backgroundSize:\"contain\",backgroundPosition:\"center\",maskSize:\"contain\",maskPosition:\"center\",...style}});}Icon.displayName=\"FramerForms/Icon\";export function Border({width,style,transition=null,borderColor=\"inherit\",opacity=1}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor,opacity},style:{position:\"absolute\",inset:0,borderWidth:width,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}Border.displayName=\"FramerForms/Border\";export function createBackground(fill,on=null,focused=null,invalid=null){if(fill){const onOff=typeof on==\"boolean\";if(fill.type==\"color\"){let color=invalid&&fill.colorInvalid||focused&&fill.colorFocus||(onOff?on?fill.colorOn:fill.colorOff:fill.color);return{backgroundColor:color,backgroundImage:\"none\"};}else{const colorA=invalid&&fill.colorAInvalid||focused&&fill.colorAFocus||(onOff?on?fill.colorAOn:fill.colorAOff:fill.colorA);const colorB=invalid&&fill.colorBInvalid||focused&&fill.colorBFocus||(onOff?on?fill.colorBOn:fill.colorBOff:fill.colorB);return{backgroundColor:\"none\",backgroundImage:`linear-gradient(${fill.gradientAngle}deg, ${colorB}, ${colorA})`};}}return{};}export function parsePadding(padding){if(typeof padding!==\"string\"){return[0,0,0,0];}const values=padding.split(\" \");const parsedValues=values.map(value=>parseInt(value.replace(\"px\",\"\"),10));switch(parsedValues.length){case 1:const p=parsedValues[0];return[p,p,p,p];case 4:return parsedValues;}return[0,0,0,0];}export function fillProp({onOff=false,focus=true,invalid=true,optional=false,hidden=null,color=\"rgba(187, 187, 187, 0.15)\",colorA=\"#BBB\",colorB=\"#676767\",colorOn=\"rgba(70, 160, 219, 0.2)\",colorAOn=\"#66C2FF\",colorBOn=\"#0099FF\",colorOff=\"rgba(187, 187, 187, 0.15)\",colorAOff=\"#BBB\",colorBOff=\"#676767\"}={}){return{type:ControlType.Object,optional,hidden,icon:\"color\",defaultValue:{type:\"color\",...onOff?{colorOn,colorOff}:{color,colorA,colorB}},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"linearGradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn,hidden:props=>props.type!==\"color\"},colorOff:{type:ControlType.Color,defaultValue:colorOff,hidden:props=>props.type!==\"color\"}}:{color:{type:ControlType.Color,defaultValue:color,hidden:props=>props.type!==\"color\"}},...focus?{colorFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"color\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"color\"}}:{},...onOff?{colorAOn:{type:ControlType.Color,defaultValue:colorAOn,title:\"Colors On\",hidden:props=>props.type!==\"linearGradient\"},colorBOn:{type:ControlType.Color,defaultValue:colorBOn,title:\" \",hidden:props=>props.type!==\"linearGradient\"},colorAOff:{type:ControlType.Color,defaultValue:colorAOff,title:\"Colors Off\",hidden:props=>props.type!==\"linearGradient\"},colorBOff:{type:ControlType.Color,defaultValue:colorBOff,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{colorA:{type:ControlType.Color,defaultValue:colorA,title:\"Colors\",hidden:props=>props.type!==\"linearGradient\"},colorB:{type:ControlType.Color,defaultValue:colorB,title:\" \",hidden:props=>props.type!==\"linearGradient\"}},...focus?{colorAFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"linearGradient\"},colorBFocus:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},...invalid?{colorAInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"linearGradient\"},colorBInvalid:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"linearGradient\"}}};}export function borderProp({onOff=false,focus=true,invalid=true,defaultValue=true,color=\"rgba(136, 136, 136, 0.1)\",colorOn=\"#0099FF\",colorOff=\"rgba(136, 136, 136, 0.1)\",colorFocus=\"#0099FF\",colorInvalid=\"#FF5A6F\",hidden=null}={}){return{type:ControlType.Object,optional:true,hidden,defaultValue:defaultValue?{color,colorOn,colorOff,colorFocus,colorInvalid,width:\"1px\"}:undefined,controls:{...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn},colorOff:{type:ControlType.Color,defaultValue:colorOff}}:{color:{type:ControlType.Color,defaultValue:color}},...focus?{colorFocus:{type:ControlType.Color,defaultValue:colorFocus,optional:true,title:\"Focus\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,defaultValue:colorInvalid,optional:true,title:\"Invalid\"}}:{},width:{type:ControlType.Padding,defaultValue:\"1px\"},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}};}export function shadowsProp({invalid=true,onOff=false}={}){return{type:ControlType.Object,buttonTitle:\"Shadows\",optional:true,controls:{...onOff?{on:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 153, 255, 0.5) 0px 2px 4px 0px\"},off:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}}:{default:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}},focus:{type:ControlType.BoxShadow},invalid:invalid?{type:ControlType.BoxShadow}:null}};}export function useCanvasState(ref){const[totalPages,setTotalPages]=useState(1);useEffect(()=>{const element=ref.current;let pages=null;function updateState(){setTotalPages(pages?pages.children.length:1);}if(element){const multiStepForms=document.querySelectorAll(\"div[data-framerforms-multi-step-form]\");for(const multiStepForm of multiStepForms){const form=multiStepForm.closest(\"form\")||multiStepForm.parentElement.parentElement.parentElement;if(form&&isAncestor(form,element)){pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');}}}updateState();if(pages){const observer=new MutationObserver((mutationsList,observer)=>{for(let mutation of mutationsList){if(mutation.type===\"childList\"){updateState();}}});observer.observe(pages,{childList:true});return()=>observer.disconnect();}},[]);return{page:0,totalPages};}export function isAncestor(ancestorElement,descendantElement){if(!ancestorElement||!descendantElement){return false;}let currentElement=descendantElement;while(currentElement!==null){if(currentElement===ancestorElement){return true;}currentElement=currentElement.parentElement;}return false;}export function getFormInfo(element){const form=element===null||element===void 0?void 0:element.closest(\"form\");let formId=null;let pages=null;if(form){formId=form.getAttribute(\"framerforms-id\");pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');if(!formId){formId=uuid();form.setAttribute(\"framerforms-id\",formId);}}return{form,formId,pages};}function uuid(){let d=new Date().getTime()// Timestamp\n;let d2=performance&&performance.now&&performance.now()*1e3||0// Time in microseconds since page-load or 0 if unsupported\n;return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,function(c){let r=Math.random()*16// random number between 0 and 16\n;if(d>0){// Use timestamp until depleted\nr=(d+r)%16|0;d=Math.floor(d/16);}else{// Use microseconds since page-load if supported\nr=(d2+r)%16|0;d2=Math.floor(d2/16);}return(c===\"x\"?r:r&3|8).toString(16);});}\nexport const __FramerMetadata__ = {\"exports\":{\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useInstanceId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideElement\":{\"type\":\"reactComponent\",\"name\":\"HideElement\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerFormsShared.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState}from\"react\";import{HiddenComponentLabel}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n * @framerDisableUnlink\n */export default function DataInput(props){const{type}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[value,setValue]=useState(\"\");let text=\"\";switch(type){case\"url\":text=\"Current URL\";break;case\"utmTags\":text=\"UTM Tags\";break;case\"urlParameter\":text=`${props.urlParameter} URL Parameter`;break;case\"referrerUrl\":text=\"Referrer URL\";break;}useEffect(()=>{switch(type){case\"url\":setValue(window.location.href);break;case\"utmTags\":const utms={};const queryParams=new URLSearchParams(window.location.search);queryParams.forEach((value,key)=>{// Check if the key starts with 'utm_' (indicating it's a UTM parameter)\nif(key.startsWith(\"utm_\")){utms[key]=value;}});setValue(utms);break;case\"urlParameter\":var _get;setValue((_get=new URLSearchParams(window.location.search).get(props.urlParameter))!==null&&_get!==void 0?_get:\"\");break;case\"referrerUrl\":setValue(document.referrer);break;}},[type,props.urlParameter]);return /*#__PURE__*/_jsx(HiddenComponentLabel,{text:text,subtext:\"Hidden Field\",children:!isCanvas&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"hidden\"},children:type==\"utmTags\"?value?Object.keys(value).map(key=>/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:key,value:value[key],\"data-framerforms-no-prefill\":true})):null:/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:props.name,value:value,\"data-framerforms-no-prefill\":true})})});}DataInput.displayName=\"URL Data Collector\";addPropertyControls(DataInput,{type:{type:ControlType.Enum,options:[\"url\",\"utmTags\",\"referrerUrl\",\"urlParameter\"],optionTitles:[\"Current URL\",\"UTM Tags\",\"Referrer URL\",\"URL Parameter\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},name:{type:ControlType.String,defaultValue:\"Data\",preventLocalization:true,hidden:props=>props.type==\"utmTags\"},urlParameter:{type:ControlType.String,defaultValue:\"\",placeholder:\"Parameter Name\",title:\"URL Param\",preventLocalization:true,hidden:props=>props.type!==\"urlParameter\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"DataInput\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98a2bb2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/FzZ67ct97QwFne6Bf7ku/Ticker.js\";import URLDataCollector from\"https://framerusercontent.com/modules/Kuwa4LRQnmmppaTnEydr/OyCZglBxLZoJn5latIqw/DataInput.js\";import FramerForms20SubmitButton from\"https://framerusercontent.com/modules/MzEVLk1keIMeijYoJIKe/dDUOt8H8K2EGb7g44U7X/SubmitButton.js\";import FramerForms20FormField from\"https://framerusercontent.com/modules/V59wttelZuiLRosougLs/dhr36rd0qfGLLZh7ndpO/FormField.js\";import NavbarLogoOnly from\"#framer/local/canvasComponent/gmoEt3eSI/gmoEt3eSI.js\";import WebsiteExploreLink from\"#framer/local/canvasComponent/Qx9b4GFb1/Qx9b4GFb1.js\";import*as sharedStyle from\"#framer/local/css/KoEUCX82Z/KoEUCX82Z.js\";import*as sharedStyle1 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import metadataProvider from\"#framer/local/webPageMetadata/kM24On6Gt/kM24On6Gt.js\";const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithFX=withFX(Image);const NavbarLogoOnlyFonts=getFonts(NavbarLogoOnly);const WebsiteExploreLinkFonts=getFonts(WebsiteExploreLink);const Ticker1Fonts=getFonts(Ticker1);const FramerForms20FormFieldFonts=getFonts(FramerForms20FormField);const URLDataCollectorFonts=getFonts(URLDataCollector);const FramerForms20SubmitButtonFonts=getFonts(FramerForms20SubmitButton);const breakpoints={aPLbsZi1m:\"(min-width: 1200px)\",qkr_Uvmn9:\"(min-width: 810px) and (max-width: 1199px)\",sSjIZNoEI:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-iUHjh\";const variantClassNames={aPLbsZi1m:\"framer-v-xujv1m\",qkr_Uvmn9:\"framer-v-3x5k21\",sSjIZNoEI:\"framer-v-142hfo9\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:-150,y:0};const transition2={delay:.3,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"aPLbsZi1m\",Phone:\"sSjIZNoEI\",Tablet:\"qkr_Uvmn9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aPLbsZi1m\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"qkr_Uvmn9\",\"sSjIZNoEI\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"sSjIZNoEI\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"qkr_Uvmn9\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"qkr_Uvmn9\",\"sSjIZNoEI\"].includes(baseVariant))return true;return false;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"aPLbsZi1m\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(17, 17, 17); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-xujv1m\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rnxxup\",\"data-framer-name\":\"Content Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:2160,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.5292)`,src:\"https://framerusercontent.com/images/cMWQfHfxinNawfL1uzaUZrgTA.png\",srcSet:\"https://framerusercontent.com/images/cMWQfHfxinNawfL1uzaUZrgTA.png?scale-down-to=1024 910w,https://framerusercontent.com/images/cMWQfHfxinNawfL1uzaUZrgTA.png?scale-down-to=2048 1820w,https://framerusercontent.com/images/cMWQfHfxinNawfL1uzaUZrgTA.png 1920w\"},className:\"framer-f80c6s hidden-3x5k21 hidden-142hfo9\",\"data-framer-name\":\"Banner Side\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13bufqe\",\"data-framer-name\":\"Customers section\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-7jymqd\",\"data-framer-appear-id\":\"7jymqd\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15ft74o\",\"data-styles-preset\":\"KoEUCX82Z\",children:\"Chosen by 10,000+ Studios Worldwide\"})}),className:\"framer-1k0o6fl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Delivering unforgettable films in 50+ countries\"})}),className:\"framer-19tk7ma\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-199fsqd-container\",\"data-framer-appear-id\":\"199fsqd\",initial:animation3,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"E0WTFtuBB\",optimized:true,rendersWithMotion:true,scopeId:\"kM24On6Gt\",style:{scale:.9,transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.9,id:\"E0WTFtuBB\",layoutId:\"E0WTFtuBB\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jq43fv\",\"data-framer-name\":\"Logos Ticker\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-146zqwd\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:900,pixelHeight:500,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"78px\",src:\"https://framerusercontent.com/images/2xHWqLBJTZGyQ87xkBbCvp5rD9g.png\",srcSet:\"https://framerusercontent.com/images/2xHWqLBJTZGyQ87xkBbCvp5rD9g.png?scale-down-to=512 512w,https://framerusercontent.com/images/2xHWqLBJTZGyQ87xkBbCvp5rD9g.png 900w\"},className:\"framer-18xqhys\",\"data-framer-name\":\"Logo 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1btiycp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:225,pixelHeight:288,pixelWidth:432,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9BuK4qBdZN83W6XhMBV7fTv3lEI.svg\"},className:\"framer-uj3bxu\",\"data-framer-name\":\"Logo 2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x35nzz\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:426,intrinsicWidth:800,pixelHeight:426,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"108px\",src:\"https://framerusercontent.com/images/tXE7khdZW5ld3neZ7N1uWdiWM.png\",srcSet:\"https://framerusercontent.com/images/tXE7khdZW5ld3neZ7N1uWdiWM.png?scale-down-to=512 512w,https://framerusercontent.com/images/tXE7khdZW5ld3neZ7N1uWdiWM.png 800w\"},className:\"framer-txdu7\",\"data-framer-name\":\"Logo 3\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1owy9rp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:900,pixelHeight:500,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"112px\",src:\"https://framerusercontent.com/images/ivxZ1YUX6ARzZkW56Ha8d2DQNMA.png\",srcSet:\"https://framerusercontent.com/images/ivxZ1YUX6ARzZkW56Ha8d2DQNMA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ivxZ1YUX6ARzZkW56Ha8d2DQNMA.png 900w\"},className:\"framer-19h6rsm\",\"data-framer-name\":\"Logo 4\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nbm2da\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:900,pixelHeight:500,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"112px\",src:\"https://framerusercontent.com/images/gHf6RRXBTNHcOW1kvKyQf0SKiZU.png\",srcSet:\"https://framerusercontent.com/images/gHf6RRXBTNHcOW1kvKyQf0SKiZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/gHf6RRXBTNHcOW1kvKyQf0SKiZU.png 900w\"},className:\"framer-9w1pgd\",\"data-framer-name\":\"Logo 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q407cq\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:900,pixelHeight:500,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"112px\",src:\"https://framerusercontent.com/images/zVyEAm2O6irdkHIAMiX5aXIkcY.png\",srcSet:\"https://framerusercontent.com/images/zVyEAm2O6irdkHIAMiX5aXIkcY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zVyEAm2O6irdkHIAMiX5aXIkcY.png 900w\"},className:\"framer-ycz75a\",\"data-framer-name\":\"Logo 6\"})})]})],speed:65,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5a1ar7\",\"data-framer-name\":\"Form Side\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qkr_Uvmn9:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`},sSjIZNoEI:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`max(${componentViewport?.width||\"100vw\"} * 0.4708, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aobi0f-container\",nodeId:\"I0e6wcz1H\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sSjIZNoEI:{variant:\"ddDI3zXFf\"}},children:/*#__PURE__*/_jsx(NavbarLogoOnly,{height:\"100%\",id:\"I0e6wcz1H\",layoutId:\"I0e6wcz1H\",style:{height:\"100%\",width:\"100%\"},variant:\"ZLQ_VM4WM\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sSjIZNoEI:{height:39,y:(componentViewport?.y||0)+0+0+0+0+24}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y6nllx-container hidden-xujv1m hidden-3x5k21\",nodeId:\"kcXZS2epa\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(WebsiteExploreLink,{height:\"100%\",id:\"kcXZS2epa\",layoutId:\"kcXZS2epa\",variant:\"VzvgPUG7c\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qkr_Uvmn9:{height:39,y:(componentViewport?.y||0)+0+0+0+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-stf1qi-container hidden-xujv1m hidden-142hfo9\",nodeId:\"fWV65MAS4\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(WebsiteExploreLink,{height:\"100%\",id:\"fWV65MAS4\",layoutId:\"fWV65MAS4\",variant:\"SXak4dDAL\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1ekm82o\",\"data-framer-appear-id\":\"1ekm82o\",\"data-framer-name\":\"Form\",initial:animation6,optimized:true,children:[isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r898df-container hidden-xujv1m\",isModuleExternal:true,nodeId:\"FiYIYS05x\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"FiYIYS05x\",layoutId:\"FiYIYS05x\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jq43fv\",\"data-framer-name\":\"Logos Ticker\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-146zqwd\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:900,pixelHeight:500,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"78px\",src:\"https://framerusercontent.com/images/2xHWqLBJTZGyQ87xkBbCvp5rD9g.png\",srcSet:\"https://framerusercontent.com/images/2xHWqLBJTZGyQ87xkBbCvp5rD9g.png?scale-down-to=512 512w,https://framerusercontent.com/images/2xHWqLBJTZGyQ87xkBbCvp5rD9g.png 900w\"},className:\"framer-18xqhys\",\"data-framer-name\":\"Logo 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1btiycp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:225,pixelHeight:288,pixelWidth:432,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9BuK4qBdZN83W6XhMBV7fTv3lEI.svg\"},className:\"framer-uj3bxu\",\"data-framer-name\":\"Logo 2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x35nzz\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:426,intrinsicWidth:800,pixelHeight:426,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"108px\",src:\"https://framerusercontent.com/images/tXE7khdZW5ld3neZ7N1uWdiWM.png\",srcSet:\"https://framerusercontent.com/images/tXE7khdZW5ld3neZ7N1uWdiWM.png?scale-down-to=512 512w,https://framerusercontent.com/images/tXE7khdZW5ld3neZ7N1uWdiWM.png 800w\"},className:\"framer-txdu7\",\"data-framer-name\":\"Logo 3\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1owy9rp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:900,pixelHeight:500,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"112px\",src:\"https://framerusercontent.com/images/ivxZ1YUX6ARzZkW56Ha8d2DQNMA.png\",srcSet:\"https://framerusercontent.com/images/ivxZ1YUX6ARzZkW56Ha8d2DQNMA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ivxZ1YUX6ARzZkW56Ha8d2DQNMA.png 900w\"},className:\"framer-19h6rsm\",\"data-framer-name\":\"Logo 4\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nbm2da\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:900,pixelHeight:500,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"112px\",src:\"https://framerusercontent.com/images/gHf6RRXBTNHcOW1kvKyQf0SKiZU.png\",srcSet:\"https://framerusercontent.com/images/gHf6RRXBTNHcOW1kvKyQf0SKiZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/gHf6RRXBTNHcOW1kvKyQf0SKiZU.png 900w\"},className:\"framer-9w1pgd\",\"data-framer-name\":\"Logo 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q407cq\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:900,pixelHeight:500,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"112px\",src:\"https://framerusercontent.com/images/zVyEAm2O6irdkHIAMiX5aXIkcY.png\",srcSet:\"https://framerusercontent.com/images/zVyEAm2O6irdkHIAMiX5aXIkcY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zVyEAm2O6irdkHIAMiX5aXIkcY.png 900w\"},className:\"framer-ycz75a\",\"data-framer-name\":\"Logo 6\"})})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x0vmvc\",\"data-framer-name\":\"Form Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qkr_Uvmn9:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(217, 194, 176)\"},children:\"Join 10,000+ Studios\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(217, 194, 176)\"},children:\"Try out the platform for free, and upgrade when ready:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},sSjIZNoEI:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(217, 194, 176)\"},children:\"Join 10,000+ Studios\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(217, 194, 176)\"},children:\"Try out for free, and upgrade when ready:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 194, 176)\"},children:\"Get Started\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 194, 176)\"},children:\"Try out the platform for free, and upgrade when ready:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1dgb10d\",fonts:[\"GF;Instrument Sans-700\",\"GF;Instrument Sans-regular\",\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h7fnrq\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sSjIZNoEI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Full Name \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Full Name \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-1yf3som\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qhuepg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aaT4PX4GX\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"aaT4PX4GX\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(176, 23, 23)\",gap:8,invalidMessage:\"Enter your Name\",requiredMessage:\"Name is required\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"aaT4PX4GX\",max:100,min:0,name:\"name\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(196, 196, 196, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"rgb(0, 117, 255)\",dotSize:8,fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(237, 237, 237)\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"Enter your Name\",type:\"input\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wpqja0\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Email Address \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-1tl4hql\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uotm2y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zU1WIaE2c\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"zU1WIaE2c\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(176, 23, 23)\",gap:8,invalidMessage:\"Please enter a valid Email\",requiredMessage:\"Email is required\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"zU1WIaE2c\",max:100,min:0,name:\"email\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(196, 196, 196, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"rgb(0, 117, 255)\",dotSize:8,fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(237, 237, 237)\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"Enter your Name\",type:\"email\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dw9cst\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Company or Brand Name \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-17z73pt\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b279lk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZrpJSyT_R\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"ZrpJSyT_R\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(176, 23, 23)\",gap:8,invalidMessage:\"Invalid value.\",requiredMessage:\"Company/Brand Name is required\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"ZrpJSyT_R\",max:100,min:0,name:\"company\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(196, 196, 196, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"rgb(0, 117, 255)\",dotSize:8,fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(237, 237, 237)\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"e.g. Hightower Films\",type:\"input\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ii1a46\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Website or Portfolio \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-1k6plhx\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-njufq5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SRFbc7_Df\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"SRFbc7_Df\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(255, 0, 0)\",gap:8,invalidMessage:\"Please enter a valid URL\",requiredMessage:\"Wesbite/Portfolio is required\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"SRFbc7_Df\",max:100,min:0,name:\"website\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(196, 196, 196, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"rgb(0, 117, 255)\",dotSize:8,fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(237, 237, 237)\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"mywebsite.com\",type:\"input\",urlPlaceholder:\"https://yourwebsite.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cchn0w\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(194, 194, 194)\"},children:\"Don't have a website/portfolio? - Your brand's social profiles are also acceptable, e.g. Instagram, Facebook, Vimeo, or Youtube.\"})}),className:\"framer-1n24oxb\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jyo54c\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Size of your Company \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-vej01o\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nk41iq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HP_d1tQYX\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},border:{color:\"rgb(34, 34, 34)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"HP_d1tQYX\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(176, 23, 23)\",gap:8,invalidMessage:\"Invalid value.\",requiredMessage:\"Company Size is required\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"HP_d1tQYX\",max:100,min:0,name:\"company_size\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Solo\",\"2-5\",\"5+\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(196, 196, 196, 0.5)\",prefill:true,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(133, 133, 133)\",colorOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",dotSize:8,fillOff:\"rgb(80, 80, 80)\",fillOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"Love Story Films\",type:\"radio\",urlPlaceholder:\"https://yourwebsite.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vs5t0j\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Type of Media \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-iuubhg\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hiv5g4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uERZWOMsb\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},border:{color:\"rgb(34, 34, 34)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},checkboxStyle:{border:{colorOff:\"rgb(133, 133, 133)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(80, 80, 80)\",fillOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"uERZWOMsb\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(176, 23, 23)\",gap:8,invalidMessage:\"Invalid value.\",requiredMessage:\"Type of Media is required\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"uERZWOMsb\",max:100,min:0,name:\"industry\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Weddings & Life-Events\",\"Theatre Performances & Dance Recitals\",\"Commercial Projects\",\"Real Estate\",\"Educational Videos & Courses\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(196, 196, 196, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(133, 133, 133)\",colorOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",dotSize:8,fillOff:\"rgb(80, 80, 80)\",fillOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"Love Story Films\",type:\"multiSelect\",urlPlaceholder:\"https://yourwebsite.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kbxj4t\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Do you also offer Photography? \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-18q3cug\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tgbte4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DD43uezSy\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"DD43uezSy\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(176, 23, 23)\",gap:8,invalidMessage:\"Invalid value.\",requiredMessage:\"Please select an option\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"DD43uezSy\",max:100,min:0,name:\"hybrid\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Video only\",\"Video + Photo (Hybrid)\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(133, 133, 133)\",colorOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",dotSize:8,fillOff:\"rgb(80, 80, 80)\",fillOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"Type...\",type:\"radio\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uvy6w7\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Number of Client Projects per year \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-5bhaww\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wyyqjh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"J1ly9gM3I\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"J1ly9gM3I\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(176, 23, 23)\",gap:8,invalidMessage:\"Invalid value.\",requiredMessage:\"Number of projects is required\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"J1ly9gM3I\",max:100,min:0,name:\"project_volume\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"1-10\",\"11-50\",\"50+\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(133, 133, 133)\",colorOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",dotSize:8,fillOff:\"rgb(80, 80, 80)\",fillOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"Type...\",type:\"radio\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lpyk7n\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Average Size of each project (GB) \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-qpi7wu\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-id04g3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h95MM8XTd\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"h95MM8XTd\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(176, 23, 23)\",gap:8,invalidMessage:\"Invalid value.\",requiredMessage:\"Project Size is required.\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"h95MM8XTd\",max:100,min:0,name:\"project_size\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Less than 10GB\",\"10-25GB\",\"25-50GB\",\"50GB+\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(133, 133, 133)\",colorOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",dotSize:8,fillOff:\"rgb(80, 80, 80)\",fillOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"Type...\",type:\"radio\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18z3aoq\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"How do you currently deliver your videos? \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-m7uezp\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bw8gxk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kX_j6J8Zs\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(133, 133, 133)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(80, 80, 80)\",fillOn:\"var(--token-b1402d76-9012-4e52-8388-405cad993987, rgb(185, 156, 107))\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"kX_j6J8Zs\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(176, 23, 23)\",gap:8,invalidMessage:\"Invalid value.\",requiredMessage:\"Current Delivery Method is required.\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"kX_j6J8Zs\",max:100,min:0,name:\"current_solution\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"USB\",\"DVD/Blu-ray\",\"Vimeo\",\"Dropbox or Google Drive\",\"WeTransfer\",\"Mediazilla\",\"Eazyflicks\",\"Pixieset\",\"Other\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"rgb(0, 117, 255)\",dotSize:8,fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(237, 237, 237)\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"Type...\",type:\"multiSelect\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pj8uqx\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"How did you hear about us? \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(185, 156, 107)\"},children:\"*\"})]})}),className:\"framer-iqstxz\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vq3qpq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZxlohmqQR\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"Terms & Conditions\",consentSuffixText:\".\",consentText:\"I agree to the \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{color:\"rgb(171, 171, 171)\",gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",fill:{color:\"rgb(34, 34, 34)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(255, 255, 255)\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"ZxlohmqQR\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},errorMessage:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(176, 23, 23)\",gap:8,invalidMessage:\"Invalid value.\",requiredMessage:\"Referral Source is required\"},fill:{color:\"rgb(46, 27, 27)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"ZxlohmqQR\",max:100,min:0,name:\"referral\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Other\",\"Google Search\",\"Instagram or Facebook\",\"Referred by a colleague/friend\",\"How to Film Weddings (Podcast/Community)\",\"Emma K Films (WFW)\",\"Runaway Vows\",\"Justin Porter Media\",\"Russell Kent Nicholls\",\"That Wedding Videographer Podcast (TWVP)\",\"Roo Stain (Coda)\",\"Wayward North\",\"Make Better Wedding Films (Ben Journ\\xe9e)\",\"FIRE & ICE\",\"Nova Film Co.\",\"BeyondWED Podcast\",\"Northbound Video Conference\",\"UK Wedding Videographers - FB community\",\"This is Us Films (Limitless Workshop)\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(196, 196, 196, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"rgb(0, 117, 255)\",dotSize:8,fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(237, 237, 237)\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:\"Type...\",type:\"dropdown\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n7w0o0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"G5DPPFUQr\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(URLDataCollector,{height:\"100%\",id:\"G5DPPFUQr\",layoutId:\"G5DPPFUQr\",name:\"Data\",style:{width:\"100%\"},type:\"utmTags\",urlParameter:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-km977\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"c4mG5tdz8\"},implicitPathVariables:undefined},{href:{webPageId:\"c4mG5tdz8\"},implicitPathVariables:undefined},{href:{webPageId:\"c4mG5tdz8\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7s8g77-container\",\"data-framer-name\":\"Submit Button\",isAuthoredByUser:true,isModuleExternal:true,name:\"Submit Button\",nodeId:\"Iwf6xQa0H\",scopeId:\"kM24On6Gt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qkr_Uvmn9:{redirectOnSuccess:resolvedLinks[1]},sSjIZNoEI:{redirectOnSuccess:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(FramerForms20SubmitButton,{basinUrl:\"\",clickAction:\"submitForm\",fill:{color:\"rgb(185, 156, 107)\",colorA:\"rgb(112, 179, 255)\",colorB:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(255, 255, 255)\",formBackendUrl:\"\",formBoldUrl:\"\",formcarryUrl:\"\",formId:0,formsparkFormId:\"\",formspreeEndpoint:\"\",getformUrl:\"\",height:\"100%\",id:\"Iwf6xQa0H\",layoutId:\"Iwf6xQa0H\",loopsUrl:\"\",loopsUserGroup:\"\",mailchimpUrl:\"\",mailerLiteUrl:\"\",makeWebhookUrl:\"\",n8nWebhookUrl:\"\",name:\"Submit Button\",newTab:false,padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,redirectOnSuccess:resolvedLinks[0],responseInfo:{url:false,urlName:\"url\",utmParams:true},scrollToInvalidField:{offset:-24},shadows:\"\",style:{width:\"100%\"},submitDataType:\"application/json\",submitPlatform:\"url\",submitUrl:\"https://webhooks.vidflow.co/dtith86znplu7t\",text:\"Get Access\",transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},web3formsAccessKey:\"\",width:\"100%\",zapierWebhookUrl:\"\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3i4kd9\"})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iUHjh.framer-1216awd, .framer-iUHjh .framer-1216awd { display: block; }\",\".framer-iUHjh.framer-xujv1m { align-content: center; align-items: center; background-color: #111111; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-iUHjh .framer-rnxxup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iUHjh .framer-f80c6s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; padding: 0px; position: relative; width: 53%; }\",\".framer-iUHjh .framer-13bufqe { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(104, 92, 80, 0.4) 0%, rgb(41, 38, 36) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 227px; justify-content: flex-start; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-iUHjh .framer-7jymqd { 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 30px 0px 30px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-iUHjh .framer-1k0o6fl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iUHjh .framer-19tk7ma { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.75; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iUHjh .framer-199fsqd-container { flex: none; height: 47%; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-iUHjh .framer-1jq43fv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 91px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: min-content; }\",\".framer-iUHjh .framer-146zqwd, .framer-iUHjh .framer-1btiycp, .framer-iUHjh .framer-1owy9rp, .framer-iUHjh .framer-1nbm2da, .framer-iUHjh .framer-q407cq { 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-iUHjh .framer-18xqhys { flex: none; height: 59px; overflow: hidden; position: relative; width: 78px; }\",\".framer-iUHjh .framer-uj3bxu { flex: none; height: 64px; overflow: hidden; position: relative; width: 98px; }\",\".framer-iUHjh .framer-1x35nzz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-iUHjh .framer-txdu7 { flex: none; height: 66px; overflow: hidden; position: relative; width: 108px; }\",\".framer-iUHjh .framer-19h6rsm { flex: none; height: 64px; overflow: hidden; position: relative; width: 112px; }\",\".framer-iUHjh .framer-9w1pgd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 112px; }\",\".framer-iUHjh .framer-ycz75a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 112px; }\",\".framer-iUHjh .framer-5a1ar7 { align-content: center; align-items: center; background-color: #111111; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-iUHjh .framer-1aobi0f-container { flex: none; height: 80px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-iUHjh .framer-1y6nllx-container { flex: none; height: auto; position: absolute; right: 5px; top: 24px; width: auto; z-index: 3; }\",\".framer-iUHjh .framer-stf1qi-container { flex: none; height: auto; position: absolute; right: 20px; top: 20px; width: auto; z-index: 3; }\",\".framer-iUHjh .framer-1ekm82o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 1px; justify-content: flex-start; max-width: 100%; overflow: auto; padding: 80px 40px 20px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-iUHjh .framer-r898df-container { flex: none; height: 73px; position: relative; width: 100%; }\",\".framer-iUHjh .framer-1x0vmvc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 420px; }\",\".framer-iUHjh .framer-1dgb10d { flex: none; height: 90px; position: relative; white-space: pre; width: auto; }\",\".framer-iUHjh .framer-1h7fnrq { align-content: center; align-items: center; 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: 420px; }\",\".framer-iUHjh .framer-1yf3som, .framer-iUHjh .framer-1tl4hql, .framer-iUHjh .framer-17z73pt, .framer-iUHjh .framer-1k6plhx, .framer-iUHjh .framer-vej01o, .framer-iUHjh .framer-iuubhg, .framer-iUHjh .framer-18q3cug, .framer-iUHjh .framer-5bhaww, .framer-iUHjh .framer-qpi7wu, .framer-iUHjh .framer-m7uezp, .framer-iUHjh .framer-iqstxz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-iUHjh .framer-1qhuepg-container, .framer-iUHjh .framer-1uotm2y-container, .framer-iUHjh .framer-1b279lk-container, .framer-iUHjh .framer-njufq5-container, .framer-iUHjh .framer-nk41iq-container, .framer-iUHjh .framer-hiv5g4-container, .framer-iUHjh .framer-tgbte4-container, .framer-iUHjh .framer-wyyqjh-container, .framer-iUHjh .framer-id04g3-container, .framer-iUHjh .framer-1bw8gxk-container, .framer-iUHjh .framer-vq3qpq-container, .framer-iUHjh .framer-7s8g77-container { flex: none; height: auto; position: relative; width: 420px; }\",\".framer-iUHjh .framer-1wpqja0, .framer-iUHjh .framer-1dw9cst, .framer-iUHjh .framer-ii1a46, .framer-iUHjh .framer-1jyo54c, .framer-iUHjh .framer-vs5t0j, .framer-iUHjh .framer-kbxj4t, .framer-iUHjh .framer-1uvy6w7, .framer-iUHjh .framer-1lpyk7n, .framer-iUHjh .framer-18z3aoq, .framer-iUHjh .framer-1pj8uqx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 420px; }\",\".framer-iUHjh .framer-cchn0w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 420px; }\",\".framer-iUHjh .framer-1n24oxb { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-iUHjh .framer-n7w0o0-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-iUHjh .framer-km977 { flex: none; height: 37px; overflow: hidden; position: relative; width: 409px; }\",\".framer-iUHjh .framer-3i4kd9 { flex: none; height: 100px; overflow: hidden; position: relative; width: 409px; }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-iUHjh.framer-xujv1m { width: 810px; } .framer-iUHjh .framer-1aobi0f-container, .framer-iUHjh .framer-1h7fnrq { order: 2; } .framer-iUHjh .framer-stf1qi-container, .framer-iUHjh .framer-1x0vmvc { order: 0; } .framer-iUHjh .framer-1ekm82o { order: 3; padding: 50px 40px 20px 40px; } .framer-iUHjh .framer-r898df-container { order: 1; } .framer-iUHjh .framer-1dgb10d { flex: 1 0 0px; height: 67px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-iUHjh .framer-1qhuepg-container { order: 3; } .framer-iUHjh .framer-1wpqja0 { order: 4; } .framer-iUHjh .framer-1uotm2y-container { order: 5; } .framer-iUHjh .framer-1dw9cst { order: 6; } .framer-iUHjh .framer-1b279lk-container { order: 7; } .framer-iUHjh .framer-ii1a46 { order: 8; } .framer-iUHjh .framer-njufq5-container { order: 9; } .framer-iUHjh .framer-cchn0w { order: 10; } .framer-iUHjh .framer-1jyo54c { order: 11; } .framer-iUHjh .framer-nk41iq-container { order: 12; } .framer-iUHjh .framer-vs5t0j { order: 13; } .framer-iUHjh .framer-hiv5g4-container { order: 14; } .framer-iUHjh .framer-kbxj4t { order: 15; } .framer-iUHjh .framer-tgbte4-container { order: 16; } .framer-iUHjh .framer-1uvy6w7 { order: 17; } .framer-iUHjh .framer-wyyqjh-container { order: 18; } .framer-iUHjh .framer-1lpyk7n { order: 19; } .framer-iUHjh .framer-id04g3-container { order: 20; } .framer-iUHjh .framer-18z3aoq { order: 21; } .framer-iUHjh .framer-1bw8gxk-container { order: 22; } .framer-iUHjh .framer-1pj8uqx { order: 23; } .framer-iUHjh .framer-vq3qpq-container { order: 24; } .framer-iUHjh .framer-n7w0o0-container { order: 25; } .framer-iUHjh .framer-km977 { order: 26; } .framer-iUHjh .framer-7s8g77-container { order: 27; } .framer-iUHjh .framer-3i4kd9 { order: 28; }}\",\"@media (max-width: 809px) { .framer-iUHjh.framer-xujv1m { width: 390px; } .framer-iUHjh .framer-rnxxup { flex-direction: column; } .framer-iUHjh .framer-5a1ar7 { height: 1px; width: 100%; } .framer-iUHjh .framer-1aobi0f-container { order: 2; } .framer-iUHjh .framer-1y6nllx-container, .framer-iUHjh .framer-r898df-container { order: 1; } .framer-iUHjh .framer-1ekm82o { max-width: unset; order: 3; padding: 50px 20px 20px 20px; } .framer-iUHjh .framer-1x0vmvc { order: 0; width: 100%; } .framer-iUHjh .framer-1dgb10d { flex: 1 0 0px; height: auto; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-iUHjh .framer-1h7fnrq { order: 2; width: 100%; } .framer-iUHjh .framer-1qhuepg-container { order: 3; width: 100%; } .framer-iUHjh .framer-1wpqja0 { order: 4; width: 100%; } .framer-iUHjh .framer-1uotm2y-container { order: 5; width: 100%; } .framer-iUHjh .framer-1dw9cst { order: 6; width: 100%; } .framer-iUHjh .framer-1b279lk-container { order: 7; width: 100%; } .framer-iUHjh .framer-ii1a46 { order: 8; width: 100%; } .framer-iUHjh .framer-njufq5-container { order: 9; width: 100%; } .framer-iUHjh .framer-cchn0w { order: 10; width: 100%; } .framer-iUHjh .framer-1jyo54c { order: 11; width: 100%; } .framer-iUHjh .framer-nk41iq-container { order: 12; width: 100%; } .framer-iUHjh .framer-vs5t0j { order: 13; width: 100%; } .framer-iUHjh .framer-hiv5g4-container { order: 14; width: 100%; } .framer-iUHjh .framer-kbxj4t { order: 15; width: 100%; } .framer-iUHjh .framer-tgbte4-container { order: 16; width: 100%; } .framer-iUHjh .framer-1uvy6w7 { order: 17; width: 100%; } .framer-iUHjh .framer-wyyqjh-container { order: 18; width: 100%; } .framer-iUHjh .framer-1lpyk7n { order: 19; width: 100%; } .framer-iUHjh .framer-id04g3-container { order: 20; width: 100%; } .framer-iUHjh .framer-18z3aoq { order: 21; width: 100%; } .framer-iUHjh .framer-1bw8gxk-container { order: 22; width: 100%; } .framer-iUHjh .framer-1pj8uqx { order: 23; width: 100%; } .framer-iUHjh .framer-vq3qpq-container { order: 24; width: 100%; } .framer-iUHjh .framer-n7w0o0-container { order: 25; } .framer-iUHjh .framer-km977 { order: 26; width: 100%; } .framer-iUHjh .framer-7s8g77-container { order: 27; width: 100%; } .framer-iUHjh .framer-3i4kd9 { order: 28; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qkr_Uvmn9\":{\"layout\":[\"fixed\",\"auto\"]},\"sSjIZNoEI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerkM24On6Gt=withCSS(Component,css,\"framer-iUHjh\");export default FramerkM24On6Gt;FramerkM24On6Gt.displayName=\"Home\";FramerkM24On6Gt.defaultProps={height:800,width:1200};addFonts(FramerkM24On6Gt,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...TickerFonts,...NavbarLogoOnlyFonts,...WebsiteExploreLinkFonts,...Ticker1Fonts,...FramerForms20FormFieldFonts,...URLDataCollectorFonts,...FramerForms20SubmitButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkM24On6Gt\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qkr_Uvmn9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sSjIZNoEI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"800\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "useMultiStepFormStore", "createStore", "HIDDEN_CLASS_NAME", "CANVAS_HIDDEN_CLASS_NAME", "useInstanceId", "ae", "HideElementComponent", "Y", "ref", "p", "HIDDEN_CLASS_NAME", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "useInstanceId", "u", "CANVAS_HIDDEN_CLASS_NAME", "Border", "Icon", "image", "color", "size", "style", "defaultImage", "p", "Border", "width", "transition", "borderColor", "opacity", "motion", "DataInput", "props", "type", "isCanvas", "RenderTarget", "value", "setValue", "ye", "text", "ue", "window", "utms", "key", "_get", "p", "HiddenComponentLabel", "addPropertyControls", "ControlType", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "TickerFonts", "getFonts", "Ticker", "ContainerWithOptimizedAppearEffect", "Container", "ImageWithFX", "withFX", "Image2", "NavbarLogoOnlyFonts", "gmoEt3eSI_default", "WebsiteExploreLinkFonts", "Qx9b4GFb1_default", "Ticker1Fonts", "FramerForms20FormFieldFonts", "FormField", "URLDataCollectorFonts", "DataInput", "FramerForms20SubmitButtonFonts", "SubmitButton", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "animation6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "getLoadingLazyAtYPosition", "RichText2", "x", "ComponentViewportProvider", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "css", "FramerkM24On6Gt", "withCSS", "kM24On6Gt_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
