{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/yQpXI8vY51YVdg7RRc9a/5cFdFkdMtXuZS5JC7B0W/X3zbTqzWV.js", "ssg:https://framerusercontent.com/modules/i4IMN8dxp0a6PRxwQoSu/9Xrtn7oAPxBARq3o5pdB/bOyqMnvvZ.js", "ssg:https://framer.com/m/iconoir-icons/Home.js@0.0.11", "ssg:https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js", "ssg:https://framerusercontent.com/modules/LZN9HRO6CxGVPecXhoQ1/JFf00vbgVV88UDJNnoFJ/J9C1SHGAl.js", "ssg:https://framerusercontent.com/modules/95KJK8YwoD54hZNaUIdl/ufzxZv17ii6ef7dt0Tp4/Ou4sTExcE.js", "ssg:https://framerusercontent.com/modules/o4J58ghUbb1UZgT8THsa/4m8UJXarVVoYH873FELz/nHukcgkI5.js", "ssg:https://framerusercontent.com/modules/8xSjlve0FVX7PNm85Wvx/MHb5nMV4Uou2aY6lSIfk/GixWwvN2e.js", "ssg:https://framerusercontent.com/modules/jFvCcfYKkWgxqKuFtiRS/udOIifdlYpf9WY1q7sXY/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"Inter-SemiBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[];export const css=['.framer-X3mbs .framer-styles-preset-1vgciuk:not(.rich-text-wrapper), .framer-X3mbs .framer-styles-preset-1vgciuk.rich-text-wrapper p { --framer-font-family: \"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-SemiBoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-5a6a7d77-3d7f-4cac-a6d6-7ea13b9dcea9, #000000); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-X3mbs\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0f2619)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/yQpXI8vY51YVdg7RRc9a/5cFdFkdMtXuZS5JC7B0W/X3zbTqzWV.js\";const enabledGestures={iAhVoFY7T:{hover:true,pressed:true}};const cycleOrder=[\"iAhVoFY7T\"];const serializationHash=\"framer-2XmfN\";const variantClassNames={iAhVoFY7T:\"framer-v-1tmomvp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({broadcaststudio,height,id,link,width,...props})=>{var _ref;return{...props,DPfwB4LAI:(_ref=broadcaststudio!==null&&broadcaststudio!==void 0?broadcaststudio:props.DPfwB4LAI)!==null&&_ref!==void 0?_ref:\"Instagram\",INBoFL_Nt:link!==null&&link!==void 0?link:props.INBoFL_Nt};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,INBoFL_Nt,DPfwB4LAI,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"iAhVoFY7T\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:INBoFL_Nt,children:/*#__PURE__*/_jsx(motion.a,{...restProps,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1tmomvp\",className,classNames)} framer-1wecic2`,\"data-border\":true,\"data-framer-name\":\"Tag\",initial:variant,layoutDependency:layoutDependency,layoutId:\"iAhVoFY7T\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-241c2d0d-bfba-4826-812f-634148f38487, rgb(40, 40, 40))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"iAhVoFY7T-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-241c2d0d-bfba-4826-812f-634148f38487, rgb(40, 40, 40))\"}},...addPropertyOverrides({\"iAhVoFY7T-hover\":{\"data-framer-name\":undefined},\"iAhVoFY7T-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vgciuk\",\"data-styles-preset\":\"X3zbTqzWV\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-241c2d0d-bfba-4826-812f-634148f38487, rgb(40, 40, 40)))\"},children:\"Dribbble\"})}),className:\"framer-1hzpa1p\",\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"SmCM1dI6F\",style:{\"--extracted-r6o4lv\":\"var(--token-241c2d0d-bfba-4826-812f-634148f38487, rgb(40, 40, 40))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DPfwB4LAI,variants:{\"iAhVoFY7T-hover\":{\"--extracted-r6o4lv\":\"var(--token-0b8a334f-8203-4a0c-93ad-cecd0ccc4492, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"iAhVoFY7T-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vgciuk\",\"data-styles-preset\":\"X3zbTqzWV\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0b8a334f-8203-4a0c-93ad-cecd0ccc4492, rgb(255, 255, 255)))\"},children:\"Dribbble\"})})}},baseVariant,gestureVariant)})})})})});});const css=['.framer-2XmfN[data-border=\"true\"]::after, .framer-2XmfN [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2XmfN.framer-1wecic2, .framer-2XmfN .framer-1wecic2 { display: block; }\",\".framer-2XmfN.framer-1tmomvp { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 2px 10px 2px 10px; position: relative; text-decoration: none; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-2XmfN .framer-1hzpa1p { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2XmfN.framer-1tmomvp { gap: 0px; } .framer-2XmfN.framer-1tmomvp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2XmfN.framer-1tmomvp > :first-child { margin-left: 0px; } .framer-2XmfN.framer-1tmomvp > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 78.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"m8jeY9wMk\":{\"layout\":[\"auto\",\"auto\"]},\"dTXn4xdna\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"INBoFL_Nt\":\"link\",\"DPfwB4LAI\":\"broadcaststudio\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerbOyqMnvvZ=withCSS(Component,css,\"framer-2XmfN\");export default FramerbOyqMnvvZ;FramerbOyqMnvvZ.displayName=\"Social Link\";FramerbOyqMnvvZ.defaultProps={height:28,width:78.5};addPropertyControls(FramerbOyqMnvvZ,{INBoFL_Nt:{title:\"Link\",type:ControlType.Link},DPfwB4LAI:{defaultValue:\"Instagram\",displayTextArea:false,title:\"@_broadcaststudio\",type:ControlType.String}});addFonts(FramerbOyqMnvvZ,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbOyqMnvvZ\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"INBoFL_Nt\\\":\\\"link\\\",\\\"DPfwB4LAI\\\":\\\"broadcaststudio\\\"}\",\"framerIntrinsicWidth\":\"78.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"m8jeY9wMk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dTXn4xdna\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"28\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bOyqMnvvZ.map", "let e;var f=r=>{if(!e){let o=function(t,n){return r.createElement(\"svg\",{width:\"100%\",height:\"1.5em\",strokeWidth:1.5,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",color:\"currentColor\",ref:n,...t},r.createElement(\"path\",{d:\"M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))};e=r.forwardRef(o)}return e};export{f as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/iconoir-icons/Home.js@0.0.11\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"Accessibility\",\"AccessibilitySign\",\"AccessibilityTech\",\"Activity\",\"AddCircledOutline\",\"AddDatabaseScript\",\"AddFolder\",\"AddFrame\",\"AddHexagon\",\"AddKeyframe\",\"AddKeyframeAlt\",\"AddKeyframes\",\"AddLens\",\"AddPage\",\"AddPinAlt\",\"AddSelection\",\"AddSquare\",\"AddToCart\",\"AddUser\",\"Airplane\",\"AirplaneHelix\",\"AirplaneHelix45Deg\",\"AirplaneOff\",\"AirplaneRotation\",\"Airplay\",\"Alarm\",\"Album\",\"AlbumCarousel\",\"AlbumList\",\"AlbumOpen\",\"AlignBottomBox\",\"AlignCenter\",\"AlignJustify\",\"AlignLeft\",\"AlignLeftBox\",\"AlignRight\",\"AlignRightBox\",\"AlignTopBox\",\"Antenna\",\"AntennaOff\",\"AntennaSignal\",\"AppNotification\",\"Apple\",\"AppleHalf\",\"AppleHalfAlt\",\"AppleImac2021\",\"AppleImac2021Side\",\"AppleSwift\",\"ArSymbol\",\"Archery\",\"Archive\",\"AreaSearch\",\"ArrowArchery\",\"ArrowDown\",\"ArrowDownCircled\",\"ArrowLeft\",\"ArrowLeftCircled\",\"ArrowRight\",\"ArrowRightCircled\",\"ArrowSeparate\",\"ArrowUnion\",\"ArrowUnionVertical\",\"ArrowUp\",\"ArrowUpCircled\",\"Asana\",\"Attachment\",\"AutoFlash\",\"Bag\",\"BasketBall\",\"BasketBallAlt\",\"BasketballField\",\"Battery25\",\"Battery50\",\"Battery75\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryIndicator\",\"BatteryWarning\",\"BeachBag\",\"BeachBagBig\",\"Bell\",\"BellNotification\",\"BellOff\",\"Bicycle\",\"Bin\",\"BinAdd\",\"BinFull\",\"BinHalf\",\"BinMinus\",\"Bluetooth\",\"Bold\",\"BoldSquareOutline\",\"BookmarkCircled\",\"BookmarkEmpty\",\"BorderBl\",\"BorderBottom\",\"BorderBr\",\"BorderInner\",\"BorderLeft\",\"BorderOut\",\"BorderRight\",\"BorderTl\",\"BorderTop\",\"BorderTr\",\"BounceLeft\",\"BounceRight\",\"BowlingBall\",\"Box\",\"BoxIso\",\"BoxingGlove\",\"BubbleDownload\",\"BubbleError\",\"BubbleIncome\",\"BubbleOutcome\",\"BubbleSearch\",\"BubbleStar\",\"BubbleUpload\",\"BubbleWarning\",\"Building\",\"BusOutline\",\"BusStop\",\"Calculator\",\"Calendar\",\"Camera\",\"Cancel\",\"CarOutline\",\"Cart\",\"CartAlt\",\"Cash\",\"Cell4X4\",\"CenterAlign\",\"ChatAdd\",\"ChatBubble\",\"ChatBubbleCheck\",\"ChatBubbleCheck1\",\"ChatBubbleEmpty\",\"ChatBubbleError\",\"ChatBubbleQuestion\",\"ChatBubbleTranslate\",\"ChatBubbleWarning\",\"ChatLines\",\"ChatRemove\",\"Check\",\"CheckCircledOutline\",\"Chocolate\",\"Chromecast\",\"ChromecastActive\",\"Church\",\"ChurchAlt\",\"CinemaOld\",\"Circle\",\"City\",\"ClockOutline\",\"Closet\",\"Cloud\",\"CloudBookAlt\",\"CloudCheck\",\"CloudDesync\",\"CloudDownload\",\"CloudError\",\"CloudSunny\",\"CloudSync\",\"CloudUpload\",\"Code\",\"Codepen\",\"Coin\",\"CollageFrame\",\"Collapse\",\"ColorFilter\",\"ColorPicker\",\"ColorPickerEmpty\",\"Combine\",\"CompactDisc\",\"Compress\",\"CompressLines\",\"Computer\",\"ControlSlider\",\"Copy\",\"Copyright\",\"CornerBottomLeft\",\"CornerBottomRight\",\"CornerTopLeft\",\"CornerTopRight\",\"Cpu\",\"CpuWarning\",\"CrackedEgg\",\"CreativeCommons\",\"CreditCard\",\"CreditCard2\",\"Crop\",\"CropRotateBl\",\"CropRotateBr\",\"CropRotateTl\",\"CropRotateTr\",\"Css3\",\"CursorPointer\",\"Cut\",\"CutAlt\",\"Cycling\",\"DashFlag\",\"Dashboard\",\"DashboardDots\",\"DashboardSpeed\",\"DataTransferBoth\",\"DataTransferCheck\",\"DataTransferDown\",\"DataTransferUp\",\"DataTransferWarning\",\"DatabaseBackup\",\"DatabaseExport\",\"DatabaseMonitor\",\"DatabaseRestore\",\"DatabaseScript\",\"DatabaseSettings\",\"DatabaseStar\",\"DatabaseStats\",\"Db\",\"DbCheck\",\"DbError\",\"DbSearch\",\"DbStar\",\"DbWarning\",\"DeCompress\",\"DeleteCircledOutline\",\"DesignPencil\",\"Dialpad\",\"Display4K\",\"DivideSelection1\",\"DivideSelection2\",\"DocSearch\",\"DocSearchAlt\",\"DocStar\",\"DocStarAlt\",\"Dollar\",\"DomoticIssue\",\"Donate\",\"DoubleCheck\",\"DownRoundArrow\",\"Download\",\"DragHandGesture\",\"Drawer\",\"Dribbble\",\"Droplet\",\"DropletHalf\",\"EaseIn\",\"EaseInControlPoint\",\"EaseInOut\",\"EaseOut\",\"EaseOutControlPoint\",\"Edit\",\"EditPencil\",\"Egg\",\"Eject\",\"ElectronicsChip\",\"Emoji\",\"EmojiBall\",\"EmojiBlinkLeft\",\"EmojiBlinkRight\",\"EmojiLookBottom\",\"EmojiLookLeft\",\"EmojiLookRight\",\"EmojiLookTop\",\"EmojiQuite\",\"EmojiReally\",\"EmojiSad\",\"EmojiSatisfied\",\"EmojiSingLeft\",\"EmojiSingLeftNote\",\"EmojiSingRight\",\"EmojiSingRightNote\",\"EmojiSurprise\",\"EmojiSurpriseAlt\",\"EmojiTalkingAngry\",\"EmojiTalkingHappy\",\"EmojiThinkLeft\",\"EmojiThinkRight\",\"EmptyPage\",\"Enlarge\",\"EnlargeRoundArrow\",\"Euro\",\"EuroSquare\",\"EvCharge\",\"EvChargeAlt\",\"EvPlug\",\"EvPlugCharging\",\"EvPlugError\",\"EvStation\",\"Exclude\",\"Expand\",\"ExpandLines\",\"EyeAlt\",\"EyeClose\",\"EyeEmpty\",\"EyeOff\",\"FaceId\",\"Facebook\",\"FacebookSquared\",\"Farm\",\"FastArrowDown\",\"FastArrowDownBox\",\"FastArrowLeft\",\"FastArrowLeftBox\",\"FastArrowRight\",\"FastArrowRightBox\",\"FastArrowTop\",\"FastArrowUpBox\",\"FastBottomCircle\",\"FastLeftCircle\",\"FastRightCircle\",\"FastTopCircle\",\"Female\",\"Figma\",\"FileNotFound\",\"Filter\",\"FilterAlt\",\"Finder\",\"Fingerprint\",\"FingerprintCircled\",\"FingerprintCircledOk\",\"FingerprintPhone\",\"FingerprintScan\",\"FingerprintSquared\",\"Fishing\",\"Flare\",\"Flash\",\"FlashOff\",\"Flip\",\"FlipReverse\",\"Flower\",\"Fog\",\"Folder\",\"FolderAlert\",\"FontSize\",\"Football\",\"FootballBall\",\"ForwardOutline\",\"Frame\",\"FrameAlt\",\"FrameAltEmpty\",\"FrameSelect\",\"FrameSimple\",\"FrameTool\",\"Fridge\",\"Fx\",\"Garage\",\"Gas\",\"GasTank\",\"GasTankDrop\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitHub\",\"GitHubOutline\",\"GitLabFull\",\"GitMerge\",\"GlassEmpty\",\"GlassHalf\",\"GlassHalfAlt\",\"Glasses\",\"Golf\",\"Google\",\"GoogleCircled\",\"GoogleDocs\",\"GoogleDrive\",\"GoogleDriveCheck\",\"GoogleDriveSync\",\"GoogleDriveWarning\",\"GoogleHome\",\"GoogleOne\",\"Gps\",\"GraphDown\",\"GraphUp\",\"GridAdd\",\"GridMinus\",\"GridRemove\",\"Group\",\"Gym\",\"HalfMoon\",\"HandBrake\",\"Handbag\",\"HardDrive\",\"Hat\",\"Hd\",\"Hdr\",\"Headset\",\"HeadsetCharge\",\"HeadsetHelp\",\"HeadsetIssue\",\"HealthShield\",\"Healthcare\",\"Heart\",\"HeavyRain\",\"Heptagon\",\"HerSlips\",\"HesaWarningOutline\",\"Hexagon\",\"HexagonAlt\",\"HighPriority\",\"HistoricShield\",\"HistoricShieldAlt\",\"Home\",\"HomeAlt\",\"HomeAltSlim\",\"HomeAltSlimHoriz\",\"HomeHospital\",\"HomeSimple\",\"HomeSimpleDoor\",\"HomeUser\",\"Hospital\",\"HospitalSign\",\"Hourglass\",\"Html5\",\"Iconoir\",\"Import\",\"Industry\",\"InfoEmpty\",\"InputField\",\"InputSearch\",\"Instagram\",\"Intersect\",\"IntersectAlt\",\"IosSettings\",\"IrisScan\",\"Italic\",\"ItalicSquareOutline\",\"Journal\",\"JournalPage\",\"KeyAlt\",\"KeyAltBack\",\"KeyAltMinus\",\"KeyAltPlus\",\"KeyAltRemove\",\"Keyframe\",\"KeyframeAlignCenter\",\"KeyframePosition\",\"Keyframes\",\"KeyframesCouple\",\"LabelOutline\",\"Lamp\",\"Language\",\"Laptop\",\"LaptopCharging\",\"LaptopFix\",\"LaptopIssue\",\"LargeSuitcase\",\"LayoutLeft\",\"LayoutRight\",\"Leaderboard\",\"LeaderboardStar\",\"LeftRoundArrow\",\"Lens\",\"Lifebelt\",\"LightBulb\",\"LightBulbOff\",\"LightBulbOn\",\"LineSpace\",\"Linear\",\"Link\",\"LinkedIn\",\"List\",\"LoadActionFloppy\",\"Lock\",\"LockKey\",\"LogDenied\",\"LogIn\",\"LogOut\",\"LongArrowDownLeft\",\"LongArrowDownRight\",\"LongArrowLeftDown\",\"LongArrowLeftUp\",\"LongArrowRightDown\",\"LongArrowRightUp\",\"LongArrowRightUp1\",\"LongArrowUpLeft\",\"LongArrowUpRight\",\"LotOfCash\",\"MacControlKey\",\"MacDock\",\"MacOptionKey\",\"MacOsWindow\",\"Mail\",\"MailOpened\",\"Male\",\"Map\",\"MapIssue\",\"MapsArrow\",\"MapsArrowDiagonal\",\"MapsArrowIssue\",\"MapsGoStraight\",\"MapsTurnBack\",\"MapsTurnLeft\",\"MapsTurnRight\",\"MaskSquare\",\"Maximize\",\"Medal\",\"Medal1St\",\"Medium\",\"Megaphone\",\"Menu\",\"MenuScale\",\"Message\",\"MessageAlert\",\"MessageText\",\"Metro\",\"Mic\",\"MicAdd\",\"MicCheck\",\"MicMute\",\"MicRemove\",\"MicSpeaking\",\"MicWarning\",\"Minus\",\"Minus1\",\"MinusHexagon\",\"MinusPinAlt\",\"MinusSquare\",\"MissingFont\",\"ModernTv\",\"ModernTv4K\",\"MoneySquare\",\"MoonSat\",\"MoreHoriz\",\"MoreVert\",\"MouseButtonLeft\",\"MouseButtonRight\",\"MouseScrollWheel\",\"MoveDown\",\"MoveLeft\",\"MoveRight\",\"MoveRuler\",\"MoveUp\",\"Movie\",\"MultiBubble\",\"MultiMacOsWindow\",\"MultiWindow\",\"MultiplePages\",\"MultiplePagesAdd\",\"MultiplePagesDelete\",\"MultiplePagesEmpty\",\"MultiplePagesRemove\",\"Music1\",\"Music1Add\",\"Music2\",\"Music2Add\",\"NavArrowDown\",\"NavArrowLeft\",\"NavArrowRight\",\"NavArrowUp\",\"Navigator\",\"NavigatorAlt\",\"Network\",\"NetworkAlt\",\"NetworkLeft\",\"NetworkRight\",\"NoBattery\",\"NoCoin\",\"NoCreditCard\",\"NoLock\",\"NoSmoking\",\"Notes\",\"Octagon\",\"OilIndustry\",\"OpenInBrowser\",\"OpenInWindow\",\"OpenVpn\",\"OrangeHalf\",\"OrangeSlice\",\"OrangeSliceAlt\",\"Page\",\"PageFlip\",\"PageSearch\",\"PageStar\",\"Palette\",\"PanoramaEnlarge\",\"PanoramaReduce\",\"Pants\",\"PantsAlt\",\"PasswordCursor\",\"PasswordError\",\"PasswordPass\",\"PauseOutline\",\"PcMouse\",\"PenConnectBluetooth\",\"PenConnectWifi\",\"PenTablet\",\"PenTabletConnectUsb\",\"PenTabletConnectWifi\",\"Pentagon\",\"Percentage\",\"PercentageRound\",\"PercentageSquare\",\"PharmacyCircledCross\",\"PharmacySquaredCross\",\"Phone\",\"PhoneAdd\",\"PhoneDelete\",\"PhoneDisabled\",\"PhoneIncome\",\"PhoneOutcome\",\"PhonePaused\",\"PhoneRemove\",\"Pin\",\"PinAlt\",\"PizzaSlice\",\"Planet\",\"PlanetAlt\",\"PlanetSat\",\"PlayOutline\",\"Playlist\",\"PlaylistAdd\",\"PlaylistPlay\",\"PlugTypeA\",\"PlugTypeC\",\"PlugTypeG\",\"PlugTypeL\",\"Plus\",\"Pocket\",\"Position\",\"PositionAlign\",\"Pound\",\"PrecisionTool\",\"Printer\",\"PrinterAlt\",\"PrintingPage\",\"PriorityDown\",\"PriorityUp\",\"ProfileCircled\",\"Prohibition\",\"QuestionMark\",\"QuestionMarkCircle\",\"Rain\",\"ReceiveDollars\",\"ReceiveEuros\",\"ReceivePounds\",\"ReceiveYens\",\"Redo\",\"RedoAction\",\"RedoCircle\",\"Reduce\",\"ReduceRoundArrow\",\"Refresh\",\"RefreshCircular\",\"RefreshDouble\",\"ReminderHandGesture\",\"RemoveDatabaseScript\",\"RemoveEmpty\",\"RemoveFolder\",\"RemoveFrame\",\"RemoveFromCart\",\"RemoveKeyframe\",\"RemoveKeyframeAlt\",\"RemoveKeyframes\",\"RemovePage\",\"RemovePinAlt\",\"RemoveSelection\",\"RemoveSquare\",\"RemoveUser\",\"Repeat\",\"RepeatOnce\",\"ReportColumns\",\"Reports\",\"RewindOutline\",\"Rhombus\",\"RightRoundArrow\",\"Rings\",\"RotateCameraLeft\",\"RotateCameraRight\",\"RssFeed\",\"RssFeedSquared\",\"Ruler\",\"RulerAdd\",\"RulerCombine\",\"RulerRemove\",\"Running\",\"Sandals\",\"SaveActionFloppy\",\"SaveFloppyDisk\",\"ScaleFrameEnlarge\",\"ScaleFrameReduce\",\"Scanning\",\"Scarf\",\"Scissor\",\"ScissorAlt\",\"SeaAndSun\",\"SeaWaves\",\"Search\",\"SearchFont\",\"SecurityPass\",\"Selection\",\"SelectiveTool\",\"SendDollars\",\"SendEuros\",\"SendPounds\",\"SendYens\",\"Server\",\"ServerConnection\",\"Settings\",\"SettingsCloud\",\"SettingsProfiles\",\"ShareAndroid\",\"ShareIos\",\"Shield\",\"ShieldAdd\",\"ShieldAlert\",\"ShieldAlt\",\"ShieldBroken\",\"ShieldCheck\",\"ShieldCross\",\"ShieldDownload\",\"ShieldEye\",\"ShieldLoading\",\"ShieldMinus\",\"ShieldQuestion\",\"ShieldSearch\",\"ShieldUpload\",\"Shop\",\"ShopAlt\",\"ShoppingBag\",\"ShoppingBagAdd\",\"ShoppingBagAlt\",\"ShoppingBagArrowDown\",\"ShoppingBagArrowUp\",\"ShoppingBagCheck\",\"ShoppingBagIssue\",\"ShoppingBagRemove\",\"ShoppingCode\",\"ShoppingCodeCheck\",\"ShoppingCodeError\",\"ShortPants\",\"ShortPantsAlt\",\"Shuffle\",\"SimpleCart\",\"SingleTapGesture\",\"Skateboard\",\"Skateboarding\",\"SkipNextOutline\",\"SkipPrevOutline\",\"SmallShop\",\"SmallShopAlt\",\"SmartphoneDevice\",\"Smoking\",\"Snow\",\"SnowFlake\",\"Soap\",\"SoccerBall\",\"SortDown\",\"SortUp\",\"SoundHigh\",\"SoundLow\",\"SoundMin\",\"SoundOff\",\"SpockHandGesture\",\"Square\",\"StarDashed\",\"StarHalfDashed\",\"StarOutline\",\"StatDown\",\"StatUp\",\"StatsReport\",\"StatsSquareDown\",\"StatsSquareUp\",\"Stretching\",\"StyleBorder\",\"Substract\",\"Suggestion\",\"SunLight\",\"Swimming\",\"SwipeDownGesture\",\"SwipeLeftGesture\",\"SwipeRightGesture\",\"SwipeUpGesture\",\"SwitchOffOutline\",\"SwitchOnOutline\",\"SystemRestart\",\"SystemShut\",\"Table\",\"Table2Columns\",\"TableRows\",\"Telegram\",\"TelegramCircled\",\"TennisBall\",\"TennisBallAlt\",\"TerminalOutline\",\"TerminalSimple\",\"Text\",\"TextAlt\",\"TextSize\",\"ThreeStars\",\"Thunderstorm\",\"TikTok\",\"Timer\",\"TimerOff\",\"Tower\",\"TowerCheck\",\"TowerNoAccess\",\"TowerWarning\",\"Trademark\",\"TrainOutline\",\"Tram\",\"TransitionBottom\",\"TransitionLeft\",\"TransitionRight\",\"TransitionTop\",\"Translate\",\"Trash\",\"Treadmill\",\"Trekking\",\"Trello\",\"Triangle\",\"TriangleFlag\",\"TriangleFlagCircle\",\"TriangleFlagFull\",\"Trophy\",\"Tunnel\",\"Tv\",\"TvFix\",\"TvIssue\",\"Twitter\",\"TwitterVerifiedBadge\",\"Type\",\"UmbrellaFull\",\"Underline\",\"Undo\",\"UndoAction\",\"UndoCircle\",\"Union\",\"UnionAlt\",\"UnionHorizAlt\",\"Unity\",\"Unity5\",\"UpRoundArrow\",\"Upload\",\"UploadSquareOutline\",\"Usb\",\"User\",\"UserBag\",\"UserCart\",\"UserCircleAlt\",\"UserScan\",\"UserSquareAlt\",\"VerifiedBadge\",\"VerifiedUser\",\"VideoCamera\",\"VideoCameraOff\",\"ViewColumns2\",\"ViewColumns3\",\"ViewGrid\",\"ViewStructureDown\",\"ViewStructureUp\",\"Voice\",\"VoiceCircled\",\"VoiceCircledLock\",\"VoiceError\",\"VoiceOk\",\"VoicePhone\",\"VoiceScan\",\"VoiceSquared\",\"VrSymbol\",\"Waist\",\"Walking\",\"WarningSquareOutline\",\"WebWindow\",\"WebWindowClose\",\"Weight\",\"WeightAlt\",\"WhiteFlag\",\"Wifi\",\"WifiIssue\",\"WifiOff\",\"WifiSignalNone\",\"Wind\",\"WrapText\",\"Wristwatch\",\"Yen\",\"YenSquare\",\"Yoga\",\"YouTube\",\"ZoomIn\",\"ZoomOut\",];const moduleBaseUrl=\"https://framer.com/m/iconoir-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * ICONOIR\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.11`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{size:\"100$%\",style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Iconoir\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Iconoir site](https://iconoir.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Iconoir.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"Inter-SemiBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[];export const css=['.framer-x6R4w .framer-styles-preset-f5cs0p:not(.rich-text-wrapper), .framer-x6R4w .framer-styles-preset-f5cs0p.rich-text-wrapper h6 { --framer-font-family: \"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-SemiBoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.6px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-5a6a7d77-3d7f-4cac-a6d6-7ea13b9dcea9, #000000); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-x6R4w\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"Inter-SemiBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[];export const css=['.framer-pie7l .framer-styles-preset-17kx2cj:not(.rich-text-wrapper), .framer-pie7l .framer-styles-preset-17kx2cj.rich-text-wrapper h6 { --framer-font-family: \"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-SemiBoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 28px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-5a6a7d77-3d7f-4cac-a6d6-7ea13b9dcea9, #000000); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-pie7l\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (89324c0)\nimport{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addFonts as a,addPropertyControls as t,ControlType as i,cx as s,getFonts as n,Image as o,RichText as l,useActiveVariantCallback as m,useLocaleInfo as f,useVariantState as d,withCSS as c}from\"framer\";import{LayoutGroup as p,motion as u,MotionConfigContext as v}from\"framer-motion\";import*as g from\"react\";import{Icon as x}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as h from\"https://framerusercontent.com/modules/LZN9HRO6CxGVPecXhoQ1/JFf00vbgVV88UDJNnoFJ/J9C1SHGAl.js\";import*as b from\"https://framerusercontent.com/modules/3cOXVy9FsUG0ZXnj1Au1/0CxlswrjbJCqZp0dETie/k9W6D8Bbx.js\";import*as y from\"https://framerusercontent.com/modules/95KJK8YwoD54hZNaUIdl/ufzxZv17ii6ef7dt0Tp4/Ou4sTExcE.js\";let w=n(x),k={ImsYpMdIT:{hover:!0},VCQ62HJgt:{hover:!0}},q=[\"VCQ62HJgt\",\"NTavysPO2\",\"ImsYpMdIT\",\"pqd2r4r7q\"],R=\"framer-RZ1f1\",Z={ImsYpMdIT:\"framer-v-1v44s0k\",NTavysPO2:\"framer-v-jfio1j\",pqd2r4r7q:\"framer-v-1n7sxj0\",VCQ62HJgt:\"framer-v-ei3l8e\"};function T(e,...r){let a={};return null==r||r.forEach(r=>r&&Object.assign(a,e[r])),a;}let I={default:{damping:40,delay:0,mass:1,stiffness:300,type:\"spring\"}},j=e=>\"object\"==typeof e&&null!==e&&\"string\"==typeof e.src?e:\"string\"==typeof e?{src:e}:void 0,N=({value:r,children:a})=>{let t=g.useContext(v),i=null!=r?r:t.transition,s=g.useMemo(()=>({...t,transition:i}),[JSON.stringify(i)]);return /*#__PURE__*/e(v.Provider,{value:s,children:a});},Q={\"FAQ-Large/Closed\":\"VCQ62HJgt\",\"FAQ-Large/Open\":\"NTavysPO2\",\"FAQ-Small/Closed\":\"ImsYpMdIT\",\"FAQ-Small/Open\":\"pqd2r4r7q\"},C=({description:e,height:r,id:a,image:t,title:i,width:s,...n})=>{var o,l,m,f,d;return{...n,huAkQBo3B:null!==(o=null!=t?t:n.huAkQBo3B)&&void 0!==o?o:{src:\"https://framerusercontent.com/images/QmUyqMzksTMIZz4zVU65F9A8a8.svg\"},T8rQFvSBR:null!==(l=null!=e?e:n.T8rQFvSBR)&&void 0!==l?l:\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est fuga.\",variant:null!==(f=null!==(m=Q[n.variant])&&void 0!==m?m:n.variant)&&void 0!==f?f:\"VCQ62HJgt\",W88zB8mIG:null!==(d=null!=i?i:n.W88zB8mIG)&&void 0!==d?d:\"Title\"};},A=(e,r)=>r.join(\"-\")+e.layoutDependency,O=/*#__PURE__*/g.forwardRef(function(a,t){let{activeLocale:i}=f(),{style:n,className:c,layoutId:v,variant:w,W88zB8mIG:R,T8rQFvSBR:Q,huAkQBo3B:O,...H}=C(a),{baseVariant:F,classNames:P,gestureVariant:S,setGestureState:B,setVariant:M,transition:V,variants:z}=d({cycleOrder:q,defaultVariant:\"VCQ62HJgt\",enabledGestures:k,transitions:I,variant:w,variantClassNames:Z}),J=A(a,z),{activeVariantCallback:D,delay:L}=m(F),W=D(async(...e)=>{M(\"NTavysPO2\");}),E=D(async(...e)=>{M(\"pqd2r4r7q\");}),Y=D(async(...e)=>{M(\"ImsYpMdIT\");}),_=D(async(...e)=>{M(\"VCQ62HJgt\");}),G=g.useRef(null),U=g.useId(),K=[h.className,y.className,b.className];return /*#__PURE__*/e(p,{id:null!=v?v:U,children:/*#__PURE__*/e(u.div,{initial:w,animate:z,onHoverStart:()=>B({isHovered:!0}),onHoverEnd:()=>B({isHovered:!1}),onTapStart:()=>B({isPressed:!0}),onTap:()=>B({isPressed:!1}),onTapCancel:()=>B({isPressed:!1}),className:s(\"framer-RZ1f1\",...K,P),style:{display:\"contents\"},children:/*#__PURE__*/e(N,{value:V,children:/*#__PURE__*/r(u.div,{...H,className:s(\"framer-ei3l8e\",c),\"data-border\":!0,\"data-framer-name\":\"FAQ-Large/Closed\",\"data-highlight\":!0,layoutDependency:J,layoutId:\"VCQ62HJgt\",onTap:W,ref:null!=t?t:G,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-0b8a334f-8203-4a0c-93ad-cecd0ccc4492, rgb(255, 255, 255))\",...n},...T({\"ImsYpMdIT-hover\":{\"data-framer-name\":void 0},\"VCQ62HJgt-hover\":{\"data-framer-name\":void 0},ImsYpMdIT:{\"data-framer-name\":\"FAQ-Small/Closed\",onTap:E},NTavysPO2:{\"data-framer-name\":\"FAQ-Large/Open\"},pqd2r4r7q:{\"data-framer-name\":\"FAQ-Small/Open\",onTap:Y}},F,S),children:[/*#__PURE__*/r(u.div,{className:\"framer-1wva5sm\",\"data-framer-name\":\"Title\",layoutDependency:J,layoutId:\"ll8MfT7fv\",...T({NTavysPO2:{\"data-highlight\":!0,onTap:_}},F,S),children:[/*#__PURE__*/e(o,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:34,intrinsicWidth:34,pixelHeight:34,pixelWidth:34,sizes:\"34px\",...j(O)},className:\"framer-1l2rv3y\",\"data-framer-name\":\"Icon\",layoutDependency:J,layoutId:\"sL_wGl2Gf\",style:{rotate:0},variants:{\"ImsYpMdIT-hover\":{rotate:360},\"VCQ62HJgt-hover\":{rotate:360},NTavysPO2:{rotate:360}},...T({ImsYpMdIT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:34,intrinsicWidth:34,pixelHeight:34,pixelWidth:34,sizes:\"30px\",...j(O)}},pqd2r4r7q:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:34,intrinsicWidth:34,pixelHeight:34,pixelWidth:34,sizes:\"30px\",...j(O)}}},F,S)}),/*#__PURE__*/e(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(u.h6,{className:\"framer-styles-preset-f5cs0p\",\"data-styles-preset\":\"J9C1SHGAl\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-241c2d0d-bfba-4826-812f-634148f38487, rgb(40, 40, 40)))\"},children:\"Title\"})}),className:\"framer-ytaohm\",layoutDependency:J,layoutId:\"Cy2kPcDJo\",style:{\"--extracted-1w1cjl5\":\"var(--token-241c2d0d-bfba-4826-812f-634148f38487, rgb(40, 40, 40))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:R,verticalAlignment:\"top\",withExternalLayout:!0,...T({ImsYpMdIT:{children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(u.h6,{className:\"framer-styles-preset-17kx2cj\",\"data-styles-preset\":\"Ou4sTExcE\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-241c2d0d-bfba-4826-812f-634148f38487, rgb(40, 40, 40)))\"},children:\"Title\"})})},pqd2r4r7q:{children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(u.h6,{className:\"framer-styles-preset-17kx2cj\",\"data-styles-preset\":\"Ou4sTExcE\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-241c2d0d-bfba-4826-812f-634148f38487, rgb(40, 40, 40)))\"},children:\"Title\"})})}},F,S)}),/*#__PURE__*/e(u.div,{className:\"framer-15itut6-container\",layoutDependency:J,layoutId:\"d0OO_vPIs-container\",children:/*#__PURE__*/e(x,{color:'var(--token-241c2d0d-bfba-4826-812f-634148f38487, rgb(40, 40, 40)) /* {\"name\":\"Light Black\"} */',height:\"100%\",iconSearch:\"Home\",iconSelection:\"Plus\",id:\"d0OO_vPIs\",layoutId:\"d0OO_vPIs\",mirrored:!1,selectByList:!0,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...T({\"VCQ62HJgt-hover\":{color:'var(--token-f6846a69-b41f-4201-b06f-340ec06518f0, rgb(95, 105, 128)) /* {\"name\":\"Blue Black\"} */'},NTavysPO2:{iconSelection:\"Minus\"},pqd2r4r7q:{iconSelection:\"Minus\"}},F,S)})})]}),!![\"NTavysPO2\",\"pqd2r4r7q\"].includes(F)&&/*#__PURE__*/e(u.div,{className:\"framer-1cwi3at\",\"data-framer-name\":\"Description\",layoutDependency:J,layoutId:\"vjBse74LX\",children:/*#__PURE__*/e(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(u.p,{className:\"framer-styles-preset-o3i0dl\",\"data-styles-preset\":\"k9W6D8Bbx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(75, 75, 75))\"},children:\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est fuga.\"})}),className:\"framer-rsbw81\",layoutDependency:J,layoutId:\"Vy_y4qKN0\",style:{\"--extracted-r6o4lv\":\"rgb(75, 75, 75)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:Q,variants:{NTavysPO2:{\"--extracted-r6o4lv\":\"var(--token-f6846a69-b41f-4201-b06f-340ec06518f0, rgb(95, 105, 128))\",opacity:1},pqd2r4r7q:{\"--extracted-r6o4lv\":\"var(--token-f6846a69-b41f-4201-b06f-340ec06518f0, rgb(95, 105, 128))\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:!0,...T({NTavysPO2:{children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(u.p,{className:\"framer-styles-preset-o3i0dl\",\"data-styles-preset\":\"k9W6D8Bbx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f6846a69-b41f-4201-b06f-340ec06518f0, rgb(95, 105, 128)))\"},children:\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est fuga.\"})})},pqd2r4r7q:{children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(u.p,{className:\"framer-styles-preset-o3i0dl\",\"data-styles-preset\":\"k9W6D8Bbx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f6846a69-b41f-4201-b06f-340ec06518f0, rgb(95, 105, 128)))\"},children:\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est fuga.\"})})}},F,S)})})]})})})});}),H=['.framer-RZ1f1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RZ1f1 .framer-hmnh0z { display: block; }\",\".framer-RZ1f1 .framer-ei3l8e { align-content: start; align-items: start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 600px; }\",\".framer-RZ1f1 .framer-1wva5sm { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-RZ1f1 .framer-1l2rv3y { flex: none; height: 34px; position: relative; width: 34px; }\",\".framer-RZ1f1 .framer-ytaohm { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-RZ1f1 .framer-15itut6-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-RZ1f1 .framer-1cwi3at { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 0px; position: relative; width: 100%; }\",\".framer-RZ1f1 .framer-rsbw81 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RZ1f1 .framer-ei3l8e, .framer-RZ1f1 .framer-1wva5sm, .framer-RZ1f1 .framer-1cwi3at { gap: 0px; } .framer-RZ1f1 .framer-ei3l8e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-RZ1f1 .framer-ei3l8e > :first-child, .framer-RZ1f1 .framer-1cwi3at > :first-child { margin-top: 0px; } .framer-RZ1f1 .framer-ei3l8e > :last-child, .framer-RZ1f1 .framer-1cwi3at > :last-child { margin-bottom: 0px; } .framer-RZ1f1 .framer-1wva5sm > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-RZ1f1 .framer-1wva5sm > :first-child { margin-left: 0px; } .framer-RZ1f1 .framer-1wva5sm > :last-child { margin-right: 0px; } .framer-RZ1f1 .framer-1cwi3at > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-RZ1f1.framer-v-jfio1j .framer-ei3l8e { gap: 24px; }\",\".framer-RZ1f1.framer-v-jfio1j .framer-1wva5sm { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RZ1f1.framer-v-jfio1j .framer-ei3l8e { gap: 0px; } .framer-RZ1f1.framer-v-jfio1j .framer-ei3l8e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-RZ1f1.framer-v-jfio1j .framer-ei3l8e > :first-child { margin-top: 0px; } .framer-RZ1f1.framer-v-jfio1j .framer-ei3l8e > :last-child { margin-bottom: 0px; } }\",\".framer-RZ1f1.framer-v-1v44s0k .framer-1wva5sm, .framer-RZ1f1.framer-v-1n7sxj0 .framer-1wva5sm { gap: 12px; }\",\".framer-RZ1f1.framer-v-1v44s0k .framer-1l2rv3y, .framer-RZ1f1.framer-v-1n7sxj0 .framer-1l2rv3y { height: 30px; width: 30px; }\",\".framer-RZ1f1.framer-v-1v44s0k .framer-15itut6-container, .framer-RZ1f1.framer-v-1n7sxj0 .framer-15itut6-container { height: 24px; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RZ1f1.framer-v-1v44s0k .framer-1wva5sm { gap: 0px; } .framer-RZ1f1.framer-v-1v44s0k .framer-1wva5sm > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-RZ1f1.framer-v-1v44s0k .framer-1wva5sm > :first-child { margin-left: 0px; } .framer-RZ1f1.framer-v-1v44s0k .framer-1wva5sm > :last-child { margin-right: 0px; } }\",\".framer-RZ1f1.framer-v-1n7sxj0 .framer-ei3l8e { gap: 16px; }\",\".framer-RZ1f1.framer-v-1n7sxj0 .framer-1cwi3at { padding: 0px 0px 20px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RZ1f1.framer-v-1n7sxj0 .framer-ei3l8e, .framer-RZ1f1.framer-v-1n7sxj0 .framer-1wva5sm { gap: 0px; } .framer-RZ1f1.framer-v-1n7sxj0 .framer-ei3l8e > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-RZ1f1.framer-v-1n7sxj0 .framer-ei3l8e > :first-child { margin-top: 0px; } .framer-RZ1f1.framer-v-1n7sxj0 .framer-ei3l8e > :last-child { margin-bottom: 0px; } .framer-RZ1f1.framer-v-1n7sxj0 .framer-1wva5sm > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-RZ1f1.framer-v-1n7sxj0 .framer-1wva5sm > :first-child { margin-left: 0px; } .framer-RZ1f1.framer-v-1n7sxj0 .framer-1wva5sm > :last-child { margin-right: 0px; } }\",...h.css,...y.css,...b.css],F=c(O,H,\"framer-RZ1f1\");export default F;F.displayName=\"Services Tab\",F.defaultProps={height:72,width:600},t(F,{variant:{options:[\"VCQ62HJgt\",\"NTavysPO2\",\"ImsYpMdIT\",\"pqd2r4r7q\"],optionTitles:[\"FAQ-Large/Closed\",\"FAQ-Large/Open\",\"FAQ-Small/Closed\",\"FAQ-Small/Open\"],title:\"Variant\",type:i.Enum},W88zB8mIG:{defaultValue:\"Title\",displayTextArea:!0,title:\"Title\",type:i.String},T8rQFvSBR:{defaultValue:\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est fuga.\",displayTextArea:!0,title:\"Description\",type:i.String},huAkQBo3B:{__defaultAssetReference:\"data:framer/asset-reference,QmUyqMzksTMIZz4zVU65F9A8a8.svg?originalFilename=Menu+Icons.svg&preferredSize=auto\",title:\"Image\",type:i.ResponsiveImage}}),a(F,[...w,...h.fonts,...y.fonts,...b.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernHukcgkI5\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NTavysPO2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ImsYpMdIT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pqd2r4r7q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DeYml6wlm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xNcwgQFVO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"72\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"title\\\",\\\"T8rQFvSBR\\\":\\\"description\\\",\\\"huAkQBo3B\\\":\\\"image\\\"}\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0f2619)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ServicesTab from\"https://framerusercontent.com/modules/o4J58ghUbb1UZgT8THsa/4m8UJXarVVoYH873FELz/nHukcgkI5.js\";const ServicesTabFonts=getFonts(ServicesTab);const cycleOrder=[\"F4NvsxRWQ\",\"GMvARLZmB\"];const serializationHash=\"framer-HdYW0\";const variantClassNames={F4NvsxRWQ:\"framer-v-philpb\",GMvARLZmB:\"framer-v-oas9tj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Desktop:\"F4NvsxRWQ\",Phone:\"GMvARLZmB\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"F4NvsxRWQ\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"F4NvsxRWQ\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-philpb\",className,classNames),\"data-framer-name\":\"Desktop\",initial:variant,layoutDependency:layoutDependency,layoutId:\"F4NvsxRWQ\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-0b8a334f-8203-4a0c-93ad-cecd0ccc4492, rgb(255, 255, 255))\",...style},...addPropertyOverrides({GMvARLZmB:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19zz23d-container\",layoutDependency:layoutDependency,layoutId:\"UIh7xXC2r-container\",children:/*#__PURE__*/_jsx(ServicesTab,{height:\"100%\",id:\"UIh7xXC2r\",layoutId:\"UIh7xXC2r\",style:{width:\"100%\"},T8rQFvSBR:\"Step into Broadcast Studio: Oxford, the epicenter of podcasting in the spirited Oxford, MS, where the essence of the South comes alive. Are you eager to elevate your voice, share your distinct stories, ideas, and passions? Our professional podcast recording and production services are tailor-made for visionaries like you. We provide the perfect setting to craft, connect, and engage your audience with unparalleled quality. Join us at Broadcast Studio: Oxford, and let's transform your vision into captivating audio experiences that resonate far and wide.\",variant:\"VCQ62HJgt\",W88zB8mIG:\"Podcasts\",width:\"100%\",...addPropertyOverrides({GMvARLZmB:{variant:\"ImsYpMdIT\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ozij78-container\",layoutDependency:layoutDependency,layoutId:\"Hvp66td5Y-container\",children:/*#__PURE__*/_jsx(ServicesTab,{height:\"100%\",huAkQBo3B:addImageAlt({src:\"https://framerusercontent.com/images/e3NmqNjhjODj3TUXSM3pBIxlSgY.svg\"},\"\"),id:\"Hvp66td5Y\",layoutId:\"Hvp66td5Y\",style:{width:\"100%\"},T8rQFvSBR:\"Our recording studio is a state-of-the-art audio facility, a place where unparalleled experience meets the pinnacle of expertise in mixing and mastering. We are steadfast in our commitment to delivering audio of unmatched quality, blending the artistry of seasoned and skilled engineering to ensure your sound is nothing short of extraordinary. Our studio transcends the conventional\u2014it's an evolving landscape designed to foster creativity, nurture community connections, and empower thought leaders, academics, businesses, and brilliant minds to elevate their influence through superior sound. Step into the future with us, where your vision is transformed with meticulous precision and the powerful dynamics of audio.\",variant:\"VCQ62HJgt\",W88zB8mIG:\"Mixing & Mastering\",width:\"100%\",...addPropertyOverrides({GMvARLZmB:{variant:\"ImsYpMdIT\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bt3ibg-container\",layoutDependency:layoutDependency,layoutId:\"Hal8SqLFN-container\",children:/*#__PURE__*/_jsx(ServicesTab,{height:\"100%\",huAkQBo3B:addImageAlt({src:\"https://framerusercontent.com/images/Lz8bmhKl0dhQXbOW0PsiWVcWPFg.svg\"},\"\"),id:\"Hal8SqLFN\",layoutId:\"Hal8SqLFN\",style:{width:\"100%\"},T8rQFvSBR:\"At our studio, we understand that your brand is your story, a unique symphony of ideas, values, and visions. That's why our recording services are more than just about sound; they're about creating an identity that resonates with your audience. With state-of-the-art technology and a team of creative experts, we specialize in sculpting sonic signatures and audio branding that set you apart. Whether it's a striking jingle, an engaging podcast theme, or immersive soundscapes for your digital content, we tailor each note to the narrative of your brand. Let's harmonize your brand's message and craft a sonic identity that echoes in the hearts and minds of your audience, making your brand not just heard, but felt and remembered.\",variant:\"VCQ62HJgt\",W88zB8mIG:\"Branding\",width:\"100%\",...addPropertyOverrides({GMvARLZmB:{variant:\"ImsYpMdIT\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yl3z85-container\",layoutDependency:layoutDependency,layoutId:\"YclrE20iH-container\",children:/*#__PURE__*/_jsx(ServicesTab,{height:\"100%\",huAkQBo3B:addImageAlt({src:\"https://framerusercontent.com/images/VcfLQ257LpqcV0QnPjokLdXU00.svg\"},\"\"),id:\"YclrE20iH\",layoutId:\"YclrE20iH\",style:{width:\"100%\"},T8rQFvSBR:\"Step into the realm of boundless musical creativity at our studio, where your vision meets our expertise in music production and composition. Whether you need an enchanting score for your podcast, captivating intro music, or a unique composition to stand out, we are equipped to deliver. Our studio is a confluence of artistic flair and state-of-the-art technology, providing a comprehensive suite for crafting not just songs, but complete auditory experiences. With an arsenal of top-tier equipment, connected community of impressive musicians and a team of adept producers, composers, and sound engineers, we specialize in transforming concepts into sonic realities. From emerging talents to seasoned artists, and from podcasters to corporate brands, our studio is the crucible where your auditory needs are shaped into resonant, memorable, and impactful sound creations. Partner with us, and let's compose the soundtrack that amplifies your story and resonates with your audience.\",variant:\"VCQ62HJgt\",W88zB8mIG:\"Music Production\",width:\"100%\",...addPropertyOverrides({GMvARLZmB:{variant:\"ImsYpMdIT\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mkt8n7-container\",layoutDependency:layoutDependency,layoutId:\"IrWNsOewG-container\",children:/*#__PURE__*/_jsx(ServicesTab,{height:\"100%\",huAkQBo3B:addImageAlt({src:\"https://framerusercontent.com/images/v86mRBvt2EqyqRRcngROJT1co.svg\"},\"\"),id:\"IrWNsOewG\",layoutId:\"IrWNsOewG\",style:{width:\"100%\"},T8rQFvSBR:\"Discover the perfect venue for bringing your educational content to life at our studio. We offer a specialized, acoustically-optimized environment ideal for recording online classes, workshops, and lectures. Our facility is designed to ensure that every word and nuance is captured with crystal-clear clarity, making your educational material not just heard, but truly absorbed by your audience. Equipped with the latest recording technology and supported by a team of technical experts, we provide a seamless experience from setup to post-production. Whether you're an educator aiming to reach students globally, a professional conducting training sessions, or a thought leader sharing insights through workshops, our studio serves as a bridge connecting your knowledge with learners everywhere. Partner with us to create educational content that is engaging, professional, and impactful.\",variant:\"VCQ62HJgt\",W88zB8mIG:\"Online Lectures & Classes\",width:\"100%\",...addPropertyOverrides({GMvARLZmB:{variant:\"ImsYpMdIT\"}},baseVariant,gestureVariant)})})]})})});});const css=['.framer-HdYW0[data-border=\"true\"]::after, .framer-HdYW0 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HdYW0.framer-1yquhee, .framer-HdYW0 .framer-1yquhee { display: block; }\",\".framer-HdYW0.framer-philpb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 700px; }\",\".framer-HdYW0 .framer-19zz23d-container, .framer-HdYW0 .framer-1ozij78-container, .framer-HdYW0 .framer-1bt3ibg-container, .framer-HdYW0 .framer-1yl3z85-container, .framer-HdYW0 .framer-mkt8n7-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HdYW0.framer-philpb { gap: 0px; } .framer-HdYW0.framer-philpb > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-HdYW0.framer-philpb > :first-child { margin-top: 0px; } .framer-HdYW0.framer-philpb > :last-child { margin-bottom: 0px; } }\",\".framer-HdYW0.framer-v-oas9tj.framer-philpb { gap: 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HdYW0.framer-v-oas9tj.framer-philpb { gap: 0px; } .framer-HdYW0.framer-v-oas9tj.framer-philpb > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-HdYW0.framer-v-oas9tj.framer-philpb > :first-child { margin-top: 0px; } .framer-HdYW0.framer-v-oas9tj.framer-philpb > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 408\n * @framerIntrinsicWidth 700\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GMvARLZmB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerGixWwvN2e=withCSS(Component,css,\"framer-HdYW0\");export default FramerGixWwvN2e;FramerGixWwvN2e.displayName=\"Accordion List\";FramerGixWwvN2e.defaultProps={height:408,width:700};addPropertyControls(FramerGixWwvN2e,{variant:{options:[\"F4NvsxRWQ\",\"GMvARLZmB\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerGixWwvN2e,[...ServicesTabFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGixWwvN2e\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"408\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"700\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GMvARLZmB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GixWwvN2e.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import PortfolioCard from\"#framer/local/canvasComponent/AwWFbJXbz/AwWFbJXbz.js\";import SocialLink from\"#framer/local/canvasComponent/bOyqMnvvZ/bOyqMnvvZ.js\";import CTA from\"#framer/local/canvasComponent/EbybOYNqe/EbybOYNqe.js\";import BlogCard from\"#framer/local/canvasComponent/elgjyv6ra/elgjyv6ra.js\";import SectionTitle from\"#framer/local/canvasComponent/GGj0iZO62/GGj0iZO62.js\";import AccordionList from\"#framer/local/canvasComponent/GixWwvN2e/GixWwvN2e.js\";import NavBar from\"#framer/local/canvasComponent/gMcQQXeLQ/gMcQQXeLQ.js\";import Button from\"#framer/local/canvasComponent/ilbT8XFyY/ilbT8XFyY.js\";import Blog from\"#framer/local/collection/epQb11ikm/epQb11ikm.js\";import*as sharedStyle1 from\"#framer/local/css/J9C1SHGAl/J9C1SHGAl.js\";import*as sharedStyle from\"#framer/local/css/Y3AX36T03/Y3AX36T03.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavBarFonts=getFonts(NavBar);const SocialLinkFonts=getFonts(SocialLink);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const VideoFonts=getFonts(Video);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const SectionTitleFonts=getFonts(SectionTitle);const AccordionListFonts=getFonts(AccordionList);const ContainerWithFX=withFX(Container);const PortfolioCardFonts=getFonts(PortfolioCard);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const BlogCardFonts=getFonts(BlogCard);const CTAFonts=getFonts(CTA);const breakpoints={IB9OqFbtf:\"(min-width: 1200px) and (max-width: 1439px)\",IMLdpT4zo:\"(max-width: 809px)\",ix64y6jWY:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-jur3n\";const variantClassNames={IB9OqFbtf:\"framer-v-1xhbey9\",IMLdpT4zo:\"framer-v-1ofunuc\",ix64y6jWY:\"framer-v-1pcqg5p\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:40,delay:0,mass:1,stiffness:250,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};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 transition3={damping:40,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition4={damping:60,delay:0,mass:1,stiffness:250,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large\":\"WQLkyLRf1\",\"Desktop Small\":\"IB9OqFbtf\",Phone:\"IMLdpT4zo\",Tablet:\"ix64y6jWY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,RLdEzVRHaARoERWxcX,oKwXGMMRSARoERWxcX,pF732cumdARoERWxcX,nTcDK03KbARoERWxcX,idARoERWxcX,...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(baseVariant===\"IMLdpT4zo\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"IMLdpT4zo\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"IB9OqFbtf\",\"ix64y6jWY\",\"IMLdpT4zo\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"IB9OqFbtf\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"ix64y6jWY\")return true;return false;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IMLdpT4zo:{y:undefined},ix64y6jWY:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11udos7-container\",nodeId:\"DL1N3KgWh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{variant:\"TUKV6MBLs\"},IMLdpT4zo:{variant:\"Ukeujf1uq\"},ix64y6jWY:{variant:\"TUKV6MBLs\"}},children:/*#__PURE__*/_jsx(NavBar,{EZrfVNFNx:\"var(--token-241c2d0d-bfba-4826-812f-634148f38487, rgb(40, 40, 40))\",height:\"100%\",id:\"DL1N3KgWh\",layoutId:\"DL1N3KgWh\",style:{width:\"100%\"},variant:\"WwfNurY7B\",width:\"100%\",xtsxA35uB:\"var(--token-0b8a334f-8203-4a0c-93ad-cecd0ccc4492, rgb(255, 255, 255))\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pooxu7\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1myukjw\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-32216o\",\"data-framer-appear-id\":\"32216o\",\"data-framer-name\":\"Header\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-133e4d2\",\"data-styles-preset\":\"Y3AX36T03\",style:{\"--framer-text-color\":\"var(--token-5a6a7d77-3d7f-4cac-a6d6-7ea13b9dcea9, rgb(0, 0, 0))\"},children:[\"Broadcast Studio. \",/*#__PURE__*/_jsx(\"br\",{}),\"A studio: of recording sorts. \"]})}),className:\"framer-26lc2n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jac5pg\",\"data-framer-name\":\"info\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ix64y6jWY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-f5cs0p\",\"data-styles-preset\":\"J9C1SHGAl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5a6a7d77-3d7f-4cac-a6d6-7ea13b9dcea9, rgb(0, 0, 0))\"},children:\"Podcasting, Mixing + Mastering, Music Production, V/O, Audiobooks, etc. We like when creativity, oral histories, thought-leadership, and growth of small business + community is encouraged #record\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-f5cs0p\",\"data-styles-preset\":\"J9C1SHGAl\",style:{\"--framer-text-color\":\"var(--token-5a6a7d77-3d7f-4cac-a6d6-7ea13b9dcea9, rgb(0, 0, 0))\"},children:\"Podcasting, Mixing + Mastering, Music Production, V/O, Audiobooks, etc. We like when creativity, oral histories, thought-leadership, and growth of small business + community is encouraged #record\"})}),className:\"framer-17qu4gl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w164fd\",\"data-framer-name\":\"Social Links\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-184cmqc-container\",nodeId:\"pNRDAVGmU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SocialLink,{DPfwB4LAI:\"Instagram\",height:\"100%\",id:\"pNRDAVGmU\",INBoFL_Nt:\"https://www.instagram.com/_broadcaststudio/\",layoutId:\"pNRDAVGmU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6p32ul-container\",nodeId:\"mroy6FjLH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SocialLink,{DPfwB4LAI:\"Facebook\",height:\"100%\",id:\"mroy6FjLH\",INBoFL_Nt:\"https://www.facebook.com/BroadcastOxfordMS\",layoutId:\"mroy6FjLH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t5jrg-container\",nodeId:\"F8x_nXRuh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SocialLink,{DPfwB4LAI:\"LinkedIn\",height:\"100%\",id:\"F8x_nXRuh\",INBoFL_Nt:\"https://www.linkedin.com/company/broadcast-studio-llc/about\",layoutId:\"F8x_nXRuh\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1duomw4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IMLdpT4zo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2560,pixelHeight:280,pixelWidth:2560,sizes:\"1280px\",src:\"https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png\",srcSet:\"https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png 2560w\"}},ix64y6jWY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2560,pixelHeight:280,pixelWidth:2560,sizes:\"1280px\",src:\"https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png\",srcSet:\"https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png 2560w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+167+0+0),pixelHeight:280,pixelWidth:2560,sizes:\"1280px\",src:\"https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png\",srcSet:\"https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Fk6RlgtqXHopQpMemxEHY24eI8.png 2560w\"},className:\"framer-otjz8\",\"data-framer-appear-id\":\"otjz8\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pw6pp4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-47mcq5-container\",\"data-framer-appear-id\":\"47mcq5\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mADoVW1rt\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IMLdpT4zo:{borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,topLeftRadius:24,topRightRadius:24}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:40,bottomLeftRadius:40,bottomRightRadius:40,controls:false,height:\"100%\",id:\"mADoVW1rt\",isMixedBorderRadius:false,layoutId:\"mADoVW1rt\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/a7oLlvkswlykX0srOqFY3gx1s.mp4\",srcType:\"Upload\",srcUrl:\"https://clonify.io/videos/Framer/small/fram-01.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:40,topRightRadius:40,volume:25,width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+167+0+164+0),pixelHeight:280,pixelWidth:2560,sizes:`max(${componentViewport?.width||\"100vw\"} - 264px, 1px)`,src:\"https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png\",srcSet:\"https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=512 512w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png 2560w\"}},ix64y6jWY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2560,pixelHeight:280,pixelWidth:2560,sizes:`max(${componentViewport?.width||\"100vw\"} - 230px, 1px)`,src:\"https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png\",srcSet:\"https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=512 512w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png 2560w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+167+0+164+0),pixelHeight:280,pixelWidth:2560,sizes:\"1096px\",src:\"https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png\",srcSet:\"https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=512 512w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png 2560w\"},className:\"framer-1xz11bc hidden-1ofunuc\",\"data-framer-appear-id\":\"1xz11bc\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-y1gavo-container hidden-72rtr7 hidden-1xhbey9 hidden-1pcqg5p\",\"data-framer-appear-id\":\"y1gavo\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aiTgOPQyV\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"aiTgOPQyV\",isMixedBorderRadius:false,layoutId:\"aiTgOPQyV\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/osLQ3YAqip4JrPae0yvw7tYoM.mp4\",srcType:\"Upload\",srcUrl:\"https://clonify.io/videos/Framer/small/fram-01.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IMLdpT4zo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2560,pixelHeight:280,pixelWidth:2560,sizes:`max(${componentViewport?.width||\"100vw\"} - 208px, 1px)`,src:\"https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png\",srcSet:\"https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=512 512w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png 2560w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2560,pixelHeight:280,pixelWidth:2560,src:\"https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png\",srcSet:\"https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=512 512w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TJNTTWGjUItiBrVQwBNfxZzxNE.png 2560w\"},className:\"framer-wnwpy hidden-72rtr7 hidden-1xhbey9 hidden-1pcqg5p\",\"data-framer-appear-id\":\"wnwpy\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true,style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oc96tg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+167+0+328+0),pixelHeight:454,pixelWidth:840,positionX:\"49.9%\",positionY:\"67.6%\",sizes:`max(${componentViewport?.width||\"100vw\"} - 572px, 1px)`,src:\"https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png\",srcSet:\"https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png 840w\"}},IMLdpT4zo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,pixelHeight:454,pixelWidth:840,positionX:\"49.9%\",positionY:\"67.6%\",sizes:`max(${componentViewport?.width||\"100vw\"} - 259px, 1px)`,src:\"https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png\",srcSet:\"https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png 840w\"}},ix64y6jWY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,pixelHeight:454,pixelWidth:840,positionX:\"49.9%\",positionY:\"67.6%\",sizes:`max(${componentViewport?.width||\"100vw\"} - 564px, 1px)`,src:\"https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png\",srcSet:\"https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png 840w\"}}},children:/*#__PURE__*/_jsxs(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+167+0+328+0),pixelHeight:454,pixelWidth:840,positionX:\"49.9%\",positionY:\"67.6%\",sizes:\"788px\",src:\"https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png\",srcSet:\"https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/VDbTEN9tmiAN3AyMKIl08NmqoPc.png 840w\"},className:\"framer-7c4dcp\",\"data-framer-appear-id\":\"7c4dcp\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[isDisplayed2()&&/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+167+0+328+0+0),pixelHeight:280,pixelWidth:2204,sizes:\"788px\",src:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png\",srcSet:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png 2204w\"},className:\"framer-4qt8xp hidden-1xhbey9 hidden-1pcqg5p hidden-1ofunuc\",\"data-framer-appear-id\":\"4qt8xp\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true,style:{transformPerspective:1200}}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+167+0+328+0+-.5),pixelHeight:280,pixelWidth:2204,sizes:\"628px\",src:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png\",srcSet:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png 2204w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,pixelHeight:280,pixelWidth:2204,src:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png\",srcSet:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png 2204w\"},className:\"framer-7fwhqm hidden-72rtr7 hidden-1pcqg5p hidden-1ofunuc\",\"data-framer-appear-id\":\"7fwhqm\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ix64y6jWY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,pixelHeight:280,pixelWidth:2204,sizes:\"249px\",src:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png\",srcSet:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png 2204w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,pixelHeight:280,pixelWidth:2204,src:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png\",srcSet:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png 2204w\"},className:\"framer-1wdx65n hidden-72rtr7 hidden-1xhbey9 hidden-1ofunuc\",\"data-framer-appear-id\":\"1wdx65n\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IMLdpT4zo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,pixelHeight:280,pixelWidth:2204,sizes:`max(${componentViewport?.width||\"100vw\"} - 259px, 1px)`,src:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png\",srcSet:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png 2204w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:2204,pixelHeight:280,pixelWidth:2204,src:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png\",srcSet:\"https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aZ7rJFO62w29QFKecSIazsAsa5I.png 2204w\"},className:\"framer-1xj13cs hidden-72rtr7 hidden-1xhbey9 hidden-1pcqg5p\",\"data-framer-appear-id\":\"1xj13cs\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true,style:{transformPerspective:1200}})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1e1cxvb-container\",\"data-framer-appear-id\":\"1e1cxvb\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JZs9DnoZ1\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IMLdpT4zo:{borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,topLeftRadius:24,topRightRadius:24}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:40,bottomLeftRadius:40,bottomRightRadius:40,controls:false,height:\"100%\",id:\"JZs9DnoZ1\",isMixedBorderRadius:false,layoutId:\"JZs9DnoZ1\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/GBwyoZQ9MSVvWK3MBfzqg5v8NMM.mp4\",srcType:\"Upload\",srcUrl:\"https://clonify.io/videos/Framer/small/fram-01.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:40,topRightRadius:40,volume:25,width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oe46o2\",\"data-framer-name\":\"Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g361fg\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1da01li\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12uwl4y-container\",nodeId:\"EAkWDhGBj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionTitle,{height:\"100%\",id:\"EAkWDhGBj\",layoutId:\"EAkWDhGBj\",style:{width:\"100%\"},width:\"100%\",xh1Qt9538:\"S E R V I C E S\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bclict-container\",nodeId:\"j8mKcPCi2\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IMLdpT4zo:{variant:\"GMvARLZmB\"}},children:/*#__PURE__*/_jsx(AccordionList,{height:\"100%\",id:\"j8mKcPCi2\",layoutId:\"j8mKcPCi2\",style:{width:\"100%\"},variant:\"F4NvsxRWQ\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aftkm5\",\"data-framer-name\":\"Portfolio\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vswgmv\",\"data-framer-name\":\"Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i0w0rq-container\",nodeId:\"pa0C11Ub1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionTitle,{height:\"100%\",id:\"pa0C11Ub1\",layoutId:\"pa0C11Ub1\",style:{width:\"100%\"},width:\"100%\",xh1Qt9538:\"F E A T U R E D\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7azwb\",\"data-framer-name\":\"Portfolio\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11cwvp8\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rnclrz\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f2sszc-container\",nodeId:\"qLOhY2cUG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{aOYptUFzT:resolvedLinks[1]},IMLdpT4zo:{aOYptUFzT:resolvedLinks[3],variant:\"pFPpgKI8h\"},ix64y6jWY:{aOYptUFzT:resolvedLinks[2],variant:\"GKrmxsLLf\"}},children:/*#__PURE__*/_jsx(PortfolioCard,{aOYptUFzT:resolvedLinks[0],BpWrNJo2U:true,ELhltFpGv:\"Motion\",gWWxDlypk:\"SFA Gravy Podcast\",height:\"100%\",id:\"qLOhY2cUG\",layoutId:\"qLOhY2cUG\",mvhg_lifN:\"Branding\",sevQ_olsn:addImageAlt({src:\"https://framerusercontent.com/images/bl3eLJz5RiuOV0PjSB90SYqwqk.png\",srcSet:\"https://framerusercontent.com/images/bl3eLJz5RiuOV0PjSB90SYqwqk.png 602w\"},\"\"),style:{width:\"100%\"},TabjiYT_2:\"SFA Gravy Podcast\",v80z1cZUJ:true,variant:\"I2465:308514;2413:284946\",width:\"100%\",yFY6vIjvc:true})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3di5y8-container\",nodeId:\"lQt1GkGek\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{aOYptUFzT:resolvedLinks1[1]},IMLdpT4zo:{aOYptUFzT:resolvedLinks1[3],variant:\"pFPpgKI8h\"},ix64y6jWY:{aOYptUFzT:resolvedLinks1[2],variant:\"GKrmxsLLf\"}},children:/*#__PURE__*/_jsx(PortfolioCard,{aOYptUFzT:resolvedLinks1[0],BpWrNJo2U:true,ELhltFpGv:\"Documentary\",gWWxDlypk:\"Expert Audio Engineering\",height:\"100%\",id:\"lQt1GkGek\",layoutId:\"lQt1GkGek\",mvhg_lifN:\"Mixing & Mastering\",sevQ_olsn:addImageAlt({src:\"https://framerusercontent.com/images/Q3jOwEkm3YPmUT8fcYHEm3kdxfo.jpg\",srcSet:\"https://framerusercontent.com/images/Q3jOwEkm3YPmUT8fcYHEm3kdxfo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Q3jOwEkm3YPmUT8fcYHEm3kdxfo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q3jOwEkm3YPmUT8fcYHEm3kdxfo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Q3jOwEkm3YPmUT8fcYHEm3kdxfo.jpg 4031w\"},\"\"),style:{width:\"100%\"},TabjiYT_2:\"Podcasting\",v80z1cZUJ:true,variant:\"I2465:308514;2413:284946\",width:\"100%\",yFY6vIjvc:true})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s2ffo8\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h4ap00-container\",nodeId:\"dLFtQoVWv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{aOYptUFzT:resolvedLinks2[1]},IMLdpT4zo:{aOYptUFzT:resolvedLinks2[3],variant:\"pFPpgKI8h\"},ix64y6jWY:{aOYptUFzT:resolvedLinks2[2],variant:\"GKrmxsLLf\"}},children:/*#__PURE__*/_jsx(PortfolioCard,{aOYptUFzT:resolvedLinks2[0],BpWrNJo2U:true,ELhltFpGv:\"Documentary\",gWWxDlypk:\"Double Decker Festival and Artist Series\",height:\"100%\",id:\"dLFtQoVWv\",layoutId:\"dLFtQoVWv\",mvhg_lifN:\"Mixing & Mastering\",sevQ_olsn:addImageAlt({src:\"https://framerusercontent.com/images/qHQF3Htp04KPHLn4tRzv1081xz4.png\",srcSet:\"https://framerusercontent.com/images/qHQF3Htp04KPHLn4tRzv1081xz4.png?scale-down-to=512 512w,https://framerusercontent.com/images/qHQF3Htp04KPHLn4tRzv1081xz4.png 966w\"},\"\"),style:{width:\"100%\"},TabjiYT_2:\"Podcasting\",v80z1cZUJ:true,variant:\"I2465:308514;2413:284946\",width:\"100%\",yFY6vIjvc:true})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nctoza-container\",nodeId:\"OOLGYq9KK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{aOYptUFzT:resolvedLinks3[1]},IMLdpT4zo:{aOYptUFzT:resolvedLinks3[3],variant:\"pFPpgKI8h\"},ix64y6jWY:{aOYptUFzT:resolvedLinks3[2],variant:\"GKrmxsLLf\"}},children:/*#__PURE__*/_jsx(PortfolioCard,{aOYptUFzT:resolvedLinks3[0],BpWrNJo2U:true,ELhltFpGv:\"Documentary\",gWWxDlypk:\"One Night Stand Artists Interview Series\",height:\"100%\",id:\"OOLGYq9KK\",layoutId:\"OOLGYq9KK\",mvhg_lifN:\"Mixing & Mastering\",sevQ_olsn:addImageAlt({src:\"https://framerusercontent.com/images/E8Rn0Rot3KdCLVd8eki5g8Q3Y.jpeg\",srcSet:\"https://framerusercontent.com/images/E8Rn0Rot3KdCLVd8eki5g8Q3Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/E8Rn0Rot3KdCLVd8eki5g8Q3Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/E8Rn0Rot3KdCLVd8eki5g8Q3Y.jpeg 1290w\"},\"\"),style:{width:\"100%\"},TabjiYT_2:\"Podcasting\",v80z1cZUJ:true,variant:\"I2465:308514;2413:284946\",width:\"100%\",yFY6vIjvc:true})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sy4ymt\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fewhj5-container\",nodeId:\"BBvPZ96WB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{aOYptUFzT:resolvedLinks4[1]},IMLdpT4zo:{aOYptUFzT:resolvedLinks4[3],variant:\"pFPpgKI8h\"},ix64y6jWY:{aOYptUFzT:resolvedLinks4[2],variant:\"GKrmxsLLf\"}},children:/*#__PURE__*/_jsx(PortfolioCard,{aOYptUFzT:resolvedLinks4[0],BpWrNJo2U:true,ELhltFpGv:\"Documentary\",gWWxDlypk:\"New Website Launch\",height:\"100%\",id:\"BBvPZ96WB\",layoutId:\"BBvPZ96WB\",mvhg_lifN:\"Mixing & Mastering\",sevQ_olsn:addImageAlt({src:\"https://framerusercontent.com/images/QD861oHzsOTCtxeOj7TQmS6Zr28.png\",srcSet:\"https://framerusercontent.com/images/QD861oHzsOTCtxeOj7TQmS6Zr28.png?scale-down-to=512 512w,https://framerusercontent.com/images/QD861oHzsOTCtxeOj7TQmS6Zr28.png 1000w\"},\"\"),style:{width:\"100%\"},TabjiYT_2:\"Podcasting\",v80z1cZUJ:true,variant:\"I2465:308514;2413:284946\",width:\"100%\",yFY6vIjvc:true})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined},{href:{webPageId:\"ig16EzU0C\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-of94j7-container\",nodeId:\"TLrAsBfiO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{aOYptUFzT:resolvedLinks5[1]},IMLdpT4zo:{aOYptUFzT:resolvedLinks5[3],variant:\"pFPpgKI8h\"},ix64y6jWY:{aOYptUFzT:resolvedLinks5[2],variant:\"GKrmxsLLf\"}},children:/*#__PURE__*/_jsx(PortfolioCard,{aOYptUFzT:resolvedLinks5[0],BpWrNJo2U:true,ELhltFpGv:\"Documentary\",gWWxDlypk:\"Meeting IMC Students\",height:\"100%\",id:\"TLrAsBfiO\",layoutId:\"TLrAsBfiO\",mvhg_lifN:\"Mixing & Mastering\",sevQ_olsn:addImageAlt({src:\"https://framerusercontent.com/images/HFK6ZlWzD7qZylC19xUxPLLETY.jpeg\",srcSet:\"https://framerusercontent.com/images/HFK6ZlWzD7qZylC19xUxPLLETY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/HFK6ZlWzD7qZylC19xUxPLLETY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HFK6ZlWzD7qZylC19xUxPLLETY.jpeg 1290w\"},\"\"),style:{width:\"100%\"},TabjiYT_2:\"Podcasting\",v80z1cZUJ:true,variant:\"I2465:308514;2413:284946\",width:\"100%\",yFY6vIjvc:true})})})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"od1TZpJiQ\"},implicitPathVariables:undefined},{href:{webPageId:\"od1TZpJiQ\"},implicitPathVariables:undefined},{href:{webPageId:\"od1TZpJiQ\"},implicitPathVariables:undefined},{href:{webPageId:\"od1TZpJiQ\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gvirbb-container\",nodeId:\"VZpoXvXzk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{HVSpUwDuy:resolvedLinks6[1]},IMLdpT4zo:{HVSpUwDuy:resolvedLinks6[3]},ix64y6jWY:{HVSpUwDuy:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(Button,{DqLVEttdC:\"All case studies\",height:\"100%\",HVSpUwDuy:resolvedLinks6[0],id:\"VZpoXvXzk\",jnh9ukK47:\"arrow-right\",layoutId:\"VZpoXvXzk\",o8RK5tbAC:true,SdtzyOrT_:false,style:{width:\"100%\"},T7qCbgTW2:\"arrow-right\",variant:\"VK3jMCU_C\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z2505u\",\"data-framer-name\":\"Blog Posts\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18w2k9x-container\",nodeId:\"C4ekswSh3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionTitle,{height:\"100%\",id:\"C4ekswSh3\",layoutId:\"C4ekswSh3\",style:{width:\"100%\"},width:\"100%\",xh1Qt9538:\"J O U R N A L\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zs13km\",\"data-framer-name\":\"Blog Posts\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ARoERWxcX\",data:Blog,type:\"Collection\"},select:[{collection:\"ARoERWxcX\",name:\"RLdEzVRHa\",type:\"Identifier\"},{collection:\"ARoERWxcX\",name:\"oKwXGMMRS\",type:\"Identifier\"},{collection:\"ARoERWxcX\",name:\"pF732cumd\",type:\"Identifier\"},{collection:\"ARoERWxcX\",name:\"nTcDK03Kb\",type:\"Identifier\"},{collection:\"ARoERWxcX\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ARoERWxcX\",name:\"OHopOnqa_\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:true},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idARoERWxcX,nTcDK03Kb:nTcDK03KbARoERWxcX,oKwXGMMRS:oKwXGMMRSARoERWxcX,pF732cumd:pF732cumdARoERWxcX,RLdEzVRHa:RLdEzVRHaARoERWxcX},index)=>{RLdEzVRHaARoERWxcX??=\"\";pF732cumdARoERWxcX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ARoERWxcX-${idARoERWxcX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{RLdEzVRHa:RLdEzVRHaARoERWxcX},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{RLdEzVRHa:RLdEzVRHaARoERWxcX},webPageId:\"BfiZ6uRSI\"},implicitPathVariables:undefined},{href:{pathVariables:{RLdEzVRHa:RLdEzVRHaARoERWxcX},webPageId:\"BfiZ6uRSI\"},implicitPathVariables:undefined},{href:{pathVariables:{RLdEzVRHa:RLdEzVRHaARoERWxcX},webPageId:\"BfiZ6uRSI\"},implicitPathVariables:undefined},{href:{pathVariables:{RLdEzVRHa:RLdEzVRHaARoERWxcX},webPageId:\"BfiZ6uRSI\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+3683+40+66+0},IMLdpT4zo:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:undefined},ix64y6jWY:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:431,width:\"1280px\",y:(componentViewport?.y||0)+0+3683+80+66+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebfdt9-container\",nodeId:\"XeYopR0MD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{etMrf5Nb5:resolvedLinks7[1]},IMLdpT4zo:{etMrf5Nb5:resolvedLinks7[3]},ix64y6jWY:{etMrf5Nb5:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(BlogCard,{aN_VeDcT4:nTcDK03KbARoERWxcX,etMrf5Nb5:resolvedLinks7[0],height:\"100%\",id:\"XeYopR0MD\",KD3gvLfrM:toResponsiveImage(oKwXGMMRSARoERWxcX),layoutId:\"XeYopR0MD\",lt6_BYc99:pF732cumdARoERWxcX,style:{width:\"100%\"},width:\"100%\"})})})})})})})},idARoERWxcX);})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gfx2a7\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IB9OqFbtf:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+4260+80},IMLdpT4zo:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:undefined},ix64y6jWY:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:653,width:\"1280px\",y:(componentViewport?.y||0)+0+4340+80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-92jeiz-container\",nodeId:\"BzvRufAzj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IMLdpT4zo:{variant:\"HeeAT7GQq\"},ix64y6jWY:{variant:\"YVGoQXN55\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"BzvRufAzj\",layoutId:\"BzvRufAzj\",style:{width:\"100%\"},variant:\"zGyJMyLGo\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jur3n.framer-lux5qc, .framer-jur3n .framer-lux5qc { display: block; }\",\".framer-jur3n.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-jur3n .framer-11udos7-container { flex: none; height: auto; position: relative; width: 100%; z-index: 5; }\",\".framer-jur3n .framer-1pooxu7 { align-content: center; align-items: center; background-color: var(--token-0b8a334f-8203-4a0c-93ad-cecd0ccc4492, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-jur3n .framer-1myukjw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-jur3n .framer-32216o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 8px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-26lc2n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 58%; word-break: break-word; word-wrap: break-word; }\",\".framer-jur3n .framer-1jac5pg { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jur3n .framer-17qu4gl { --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-jur3n .framer-w164fd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-jur3n .framer-184cmqc-container, .framer-jur3n .framer-6p32ul-container, .framer-jur3n .framer-1t5jrg-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jur3n .framer-1duomw4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jur3n .framer-otjz8 { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 140px; position: relative; width: 1280px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-pw6pp4, .framer-jur3n .framer-oc96tg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 140px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jur3n .framer-47mcq5-container { flex: none; height: 100%; position: relative; width: 160px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-1xz11bc { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: 1 0 0px; height: 140px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-y1gavo-container { flex: none; height: 80px; position: relative; width: 80px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-wnwpy, .framer-jur3n .framer-1xj13cs { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 80px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-7c4dcp { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 140px; justify-content: center; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-4qt8xp { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 140px; position: relative; width: 788px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-7fwhqm { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 141px; position: relative; width: 628px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-1wdx65n { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 131px; position: relative; width: 249px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-1e1cxvb-container { flex: none; height: 140px; position: relative; width: 468px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jur3n .framer-1oe46o2, .framer-jur3n .framer-aftkm5 { align-content: center; align-items: center; background-color: var(--token-0b8a334f-8203-4a0c-93ad-cecd0ccc4492, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-jur3n .framer-g361fg, .framer-jur3n .framer-1vswgmv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-jur3n .framer-1da01li { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jur3n .framer-12uwl4y-container, .framer-jur3n .framer-1i0w0rq-container, .framer-jur3n .framer-1gvirbb-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-jur3n .framer-bclict-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-jur3n .framer-1x7azwb, .framer-jur3n .framer-11cwvp8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jur3n .framer-rnclrz, .framer-jur3n .framer-s2ffo8, .framer-jur3n .framer-1sy4ymt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jur3n .framer-1f2sszc-container, .framer-jur3n .framer-3di5y8-container, .framer-jur3n .framer-1h4ap00-container, .framer-jur3n .framer-nctoza-container, .framer-jur3n .framer-fewhj5-container, .framer-jur3n .framer-of94j7-container, .framer-jur3n .framer-ebfdt9-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-jur3n .framer-z2505u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-jur3n .framer-18w2k9x-container, .framer-jur3n .framer-92jeiz-container { flex: none; height: auto; position: relative; width: 1280px; }\",\".framer-jur3n .framer-zs13km { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1280px; }\",\".framer-jur3n .framer-1gfx2a7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jur3n.framer-72rtr7, .framer-jur3n .framer-1pooxu7, .framer-jur3n .framer-1myukjw, .framer-jur3n .framer-32216o, .framer-jur3n .framer-1jac5pg, .framer-jur3n .framer-w164fd, .framer-jur3n .framer-1duomw4, .framer-jur3n .framer-pw6pp4, .framer-jur3n .framer-oc96tg, .framer-jur3n .framer-7c4dcp, .framer-jur3n .framer-1oe46o2, .framer-jur3n .framer-g361fg, .framer-jur3n .framer-1da01li, .framer-jur3n .framer-aftkm5, .framer-jur3n .framer-1vswgmv, .framer-jur3n .framer-1x7azwb, .framer-jur3n .framer-11cwvp8, .framer-jur3n .framer-rnclrz, .framer-jur3n .framer-s2ffo8, .framer-jur3n .framer-1sy4ymt, .framer-jur3n .framer-z2505u, .framer-jur3n .framer-zs13km, .framer-jur3n .framer-1gfx2a7 { gap: 0px; } .framer-jur3n.framer-72rtr7 > *, .framer-jur3n .framer-1oe46o2 > *, .framer-jur3n .framer-aftkm5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jur3n.framer-72rtr7 > :first-child, .framer-jur3n .framer-1pooxu7 > :first-child, .framer-jur3n .framer-1myukjw > :first-child, .framer-jur3n .framer-1jac5pg > :first-child, .framer-jur3n .framer-1duomw4 > :first-child, .framer-jur3n .framer-1oe46o2 > :first-child, .framer-jur3n .framer-g361fg > :first-child, .framer-jur3n .framer-1da01li > :first-child, .framer-jur3n .framer-aftkm5 > :first-child, .framer-jur3n .framer-1vswgmv > :first-child, .framer-jur3n .framer-1x7azwb > :first-child, .framer-jur3n .framer-11cwvp8 > :first-child, .framer-jur3n .framer-z2505u > :first-child { margin-top: 0px; } .framer-jur3n.framer-72rtr7 > :last-child, .framer-jur3n .framer-1pooxu7 > :last-child, .framer-jur3n .framer-1myukjw > :last-child, .framer-jur3n .framer-1jac5pg > :last-child, .framer-jur3n .framer-1duomw4 > :last-child, .framer-jur3n .framer-1oe46o2 > :last-child, .framer-jur3n .framer-g361fg > :last-child, .framer-jur3n .framer-1da01li > :last-child, .framer-jur3n .framer-aftkm5 > :last-child, .framer-jur3n .framer-1vswgmv > :last-child, .framer-jur3n .framer-1x7azwb > :last-child, .framer-jur3n .framer-11cwvp8 > :last-child, .framer-jur3n .framer-z2505u > :last-child { margin-bottom: 0px; } .framer-jur3n .framer-1pooxu7 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-jur3n .framer-1myukjw > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-jur3n .framer-32216o > *, .framer-jur3n .framer-rnclrz > *, .framer-jur3n .framer-s2ffo8 > *, .framer-jur3n .framer-1sy4ymt > *, .framer-jur3n .framer-zs13km > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-jur3n .framer-32216o > :first-child, .framer-jur3n .framer-w164fd > :first-child, .framer-jur3n .framer-pw6pp4 > :first-child, .framer-jur3n .framer-oc96tg > :first-child, .framer-jur3n .framer-7c4dcp > :first-child, .framer-jur3n .framer-rnclrz > :first-child, .framer-jur3n .framer-s2ffo8 > :first-child, .framer-jur3n .framer-1sy4ymt > :first-child, .framer-jur3n .framer-zs13km > :first-child, .framer-jur3n .framer-1gfx2a7 > :first-child { margin-left: 0px; } .framer-jur3n .framer-32216o > :last-child, .framer-jur3n .framer-w164fd > :last-child, .framer-jur3n .framer-pw6pp4 > :last-child, .framer-jur3n .framer-oc96tg > :last-child, .framer-jur3n .framer-7c4dcp > :last-child, .framer-jur3n .framer-rnclrz > :last-child, .framer-jur3n .framer-s2ffo8 > :last-child, .framer-jur3n .framer-1sy4ymt > :last-child, .framer-jur3n .framer-zs13km > :last-child, .framer-jur3n .framer-1gfx2a7 > :last-child { margin-right: 0px; } .framer-jur3n .framer-1jac5pg > *, .framer-jur3n .framer-1da01li > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jur3n .framer-w164fd > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-jur3n .framer-1duomw4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-jur3n .framer-pw6pp4 > *, .framer-jur3n .framer-oc96tg > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-jur3n .framer-7c4dcp > *, .framer-jur3n .framer-1gfx2a7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jur3n .framer-g361fg > *, .framer-jur3n .framer-1vswgmv > *, .framer-jur3n .framer-z2505u > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-jur3n .framer-1x7azwb > *, .framer-jur3n .framer-11cwvp8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-jur3n.framer-72rtr7 { width: 1200px; } .framer-jur3n .framer-1pooxu7 { padding: 80px 40px 80px 40px; } .framer-jur3n .framer-1myukjw, .framer-jur3n .framer-g361fg, .framer-jur3n .framer-1vswgmv, .framer-jur3n .framer-18w2k9x-container, .framer-jur3n .framer-zs13km { width: 100%; } .framer-jur3n .framer-26lc2n { width: 55%; } .framer-jur3n .framer-7fwhqm { order: 0; } .framer-jur3n .framer-1oe46o2, .framer-jur3n .framer-aftkm5 { padding: 40px 40px 80px 40px; } .framer-jur3n .framer-z2505u { padding: 40px; } .framer-jur3n .framer-1gfx2a7 { padding: 80px 40px 40px 40px; } .framer-jur3n .framer-92jeiz-container { flex: 1 0 0px; width: 1px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-jur3n.framer-72rtr7 { width: 810px; } .framer-jur3n .framer-1pooxu7 { padding: 56px 40px 80px 40px; } .framer-jur3n .framer-1myukjw, .framer-jur3n .framer-18w2k9x-container { width: 100%; } .framer-jur3n .framer-32216o { flex-direction: column; gap: 24px; padding: 0px; } .framer-jur3n .framer-26lc2n { width: 70%; } .framer-jur3n .framer-1jac5pg { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-jur3n .framer-w164fd { max-width: 100%; } .framer-jur3n .framer-1duomw4 { gap: 16px; } .framer-jur3n .framer-pw6pp4, .framer-jur3n .framer-oc96tg { gap: 16px; height: 120px; } .framer-jur3n .framer-47mcq5-container { width: 134px; } .framer-jur3n .framer-1xz11bc, .framer-jur3n .framer-7c4dcp { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; height: 120px; } .framer-jur3n .framer-1e1cxvb-container { height: 120px; } .framer-jur3n .framer-1oe46o2 { padding: 40px 40px 80px 40px; } .framer-jur3n .framer-g361fg { gap: 51px; width: 100%; } .framer-jur3n .framer-aftkm5, .framer-jur3n .framer-1gfx2a7 { padding: 40px; } .framer-jur3n .framer-1vswgmv { gap: 32px; width: 100%; } .framer-jur3n .framer-rnclrz, .framer-jur3n .framer-s2ffo8, .framer-jur3n .framer-1sy4ymt { flex-direction: column; } .framer-jur3n .framer-1f2sszc-container, .framer-jur3n .framer-3di5y8-container, .framer-jur3n .framer-1h4ap00-container, .framer-jur3n .framer-nctoza-container, .framer-jur3n .framer-fewhj5-container, .framer-jur3n .framer-of94j7-container, .framer-jur3n .framer-ebfdt9-container { flex: none; width: 100%; } .framer-jur3n .framer-z2505u { gap: 32px; padding: 40px; } .framer-jur3n .framer-zs13km { flex-direction: column; width: 100%; } .framer-jur3n .framer-92jeiz-container { flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jur3n .framer-32216o, .framer-jur3n .framer-1duomw4, .framer-jur3n .framer-pw6pp4, .framer-jur3n .framer-oc96tg, .framer-jur3n .framer-g361fg, .framer-jur3n .framer-1vswgmv, .framer-jur3n .framer-rnclrz, .framer-jur3n .framer-s2ffo8, .framer-jur3n .framer-1sy4ymt, .framer-jur3n .framer-z2505u, .framer-jur3n .framer-zs13km { gap: 0px; } .framer-jur3n .framer-32216o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-jur3n .framer-32216o > :first-child, .framer-jur3n .framer-1duomw4 > :first-child, .framer-jur3n .framer-g361fg > :first-child, .framer-jur3n .framer-1vswgmv > :first-child, .framer-jur3n .framer-rnclrz > :first-child, .framer-jur3n .framer-s2ffo8 > :first-child, .framer-jur3n .framer-1sy4ymt > :first-child, .framer-jur3n .framer-z2505u > :first-child, .framer-jur3n .framer-zs13km > :first-child { margin-top: 0px; } .framer-jur3n .framer-32216o > :last-child, .framer-jur3n .framer-1duomw4 > :last-child, .framer-jur3n .framer-g361fg > :last-child, .framer-jur3n .framer-1vswgmv > :last-child, .framer-jur3n .framer-rnclrz > :last-child, .framer-jur3n .framer-s2ffo8 > :last-child, .framer-jur3n .framer-1sy4ymt > :last-child, .framer-jur3n .framer-z2505u > :last-child, .framer-jur3n .framer-zs13km > :last-child { margin-bottom: 0px; } .framer-jur3n .framer-1duomw4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jur3n .framer-pw6pp4 > *, .framer-jur3n .framer-oc96tg > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-jur3n .framer-pw6pp4 > :first-child, .framer-jur3n .framer-oc96tg > :first-child { margin-left: 0px; } .framer-jur3n .framer-pw6pp4 > :last-child, .framer-jur3n .framer-oc96tg > :last-child { margin-right: 0px; } .framer-jur3n .framer-g361fg > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } .framer-jur3n .framer-1vswgmv > *, .framer-jur3n .framer-rnclrz > *, .framer-jur3n .framer-s2ffo8 > *, .framer-jur3n .framer-1sy4ymt > *, .framer-jur3n .framer-z2505u > *, .framer-jur3n .framer-zs13km > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (max-width: 809px) { .framer-jur3n.framer-72rtr7 { width: 390px; } .framer-jur3n .framer-1pooxu7 { gap: 0px; padding: 40px 16px 40px 16px; } .framer-jur3n .framer-1myukjw { gap: 40px; width: 100%; } .framer-jur3n .framer-32216o { flex-direction: column; gap: 24px; padding: 0px; } .framer-jur3n .framer-26lc2n, .framer-jur3n .framer-18w2k9x-container { width: 100%; } .framer-jur3n .framer-1jac5pg { align-self: unset; flex: none; gap: 24px; height: min-content; width: 100%; } .framer-jur3n .framer-w164fd { max-width: 100%; } .framer-jur3n .framer-184cmqc-container, .framer-jur3n .framer-otjz8 { order: 0; } .framer-jur3n .framer-6p32ul-container { order: 1; } .framer-jur3n .framer-1t5jrg-container { order: 2; } .framer-jur3n .framer-1duomw4 { gap: 8px; } .framer-jur3n .framer-pw6pp4 { gap: 8px; height: 80px; order: 1; } .framer-jur3n .framer-47mcq5-container { height: 80px; width: 80px; } .framer-jur3n .framer-oc96tg { gap: 8px; height: 80px; order: 2; } .framer-jur3n .framer-7c4dcp { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 80px; } .framer-jur3n .framer-1e1cxvb-container { height: 80px; width: 219px; } .framer-jur3n .framer-1oe46o2, .framer-jur3n .framer-aftkm5 { padding: 50px 16px 50px 16px; } .framer-jur3n .framer-g361fg, .framer-jur3n .framer-1vswgmv { gap: 32px; width: 100%; } .framer-jur3n .framer-rnclrz, .framer-jur3n .framer-s2ffo8, .framer-jur3n .framer-1sy4ymt { flex-direction: column; } .framer-jur3n .framer-1f2sszc-container, .framer-jur3n .framer-3di5y8-container, .framer-jur3n .framer-1h4ap00-container, .framer-jur3n .framer-nctoza-container, .framer-jur3n .framer-fewhj5-container, .framer-jur3n .framer-of94j7-container, .framer-jur3n .framer-ebfdt9-container { flex: none; width: 100%; } .framer-jur3n .framer-z2505u { gap: 32px; padding: 40px 16px 40px 16px; } .framer-jur3n .framer-zs13km { flex-direction: column; width: 100%; } .framer-jur3n .framer-1gfx2a7 { padding: 40px 16px 16px 16px; } .framer-jur3n .framer-92jeiz-container { flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jur3n .framer-1pooxu7, .framer-jur3n .framer-1myukjw, .framer-jur3n .framer-32216o, .framer-jur3n .framer-1jac5pg, .framer-jur3n .framer-1duomw4, .framer-jur3n .framer-pw6pp4, .framer-jur3n .framer-oc96tg, .framer-jur3n .framer-g361fg, .framer-jur3n .framer-1vswgmv, .framer-jur3n .framer-rnclrz, .framer-jur3n .framer-s2ffo8, .framer-jur3n .framer-1sy4ymt, .framer-jur3n .framer-z2505u, .framer-jur3n .framer-zs13km { gap: 0px; } .framer-jur3n .framer-1pooxu7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jur3n .framer-1pooxu7 > :first-child, .framer-jur3n .framer-1myukjw > :first-child, .framer-jur3n .framer-32216o > :first-child, .framer-jur3n .framer-1jac5pg > :first-child, .framer-jur3n .framer-1duomw4 > :first-child, .framer-jur3n .framer-g361fg > :first-child, .framer-jur3n .framer-1vswgmv > :first-child, .framer-jur3n .framer-rnclrz > :first-child, .framer-jur3n .framer-s2ffo8 > :first-child, .framer-jur3n .framer-1sy4ymt > :first-child, .framer-jur3n .framer-z2505u > :first-child, .framer-jur3n .framer-zs13km > :first-child { margin-top: 0px; } .framer-jur3n .framer-1pooxu7 > :last-child, .framer-jur3n .framer-1myukjw > :last-child, .framer-jur3n .framer-32216o > :last-child, .framer-jur3n .framer-1jac5pg > :last-child, .framer-jur3n .framer-1duomw4 > :last-child, .framer-jur3n .framer-g361fg > :last-child, .framer-jur3n .framer-1vswgmv > :last-child, .framer-jur3n .framer-rnclrz > :last-child, .framer-jur3n .framer-s2ffo8 > :last-child, .framer-jur3n .framer-1sy4ymt > :last-child, .framer-jur3n .framer-z2505u > :last-child, .framer-jur3n .framer-zs13km > :last-child { margin-bottom: 0px; } .framer-jur3n .framer-1myukjw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-jur3n .framer-32216o > *, .framer-jur3n .framer-1jac5pg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-jur3n .framer-1duomw4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-jur3n .framer-pw6pp4 > *, .framer-jur3n .framer-oc96tg > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-jur3n .framer-pw6pp4 > :first-child, .framer-jur3n .framer-oc96tg > :first-child { margin-left: 0px; } .framer-jur3n .framer-pw6pp4 > :last-child, .framer-jur3n .framer-oc96tg > :last-child { margin-right: 0px; } .framer-jur3n .framer-g361fg > *, .framer-jur3n .framer-1vswgmv > *, .framer-jur3n .framer-rnclrz > *, .framer-jur3n .framer-s2ffo8 > *, .framer-jur3n .framer-1sy4ymt > *, .framer-jur3n .framer-z2505u > *, .framer-jur3n .framer-zs13km > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5433\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IB9OqFbtf\":{\"layout\":[\"fixed\",\"auto\"]},\"ix64y6jWY\":{\"layout\":[\"fixed\",\"auto\"]},\"IMLdpT4zo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-jur3n\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5433,width:1440};addFonts(FrameraugiA20Il,[{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\"}]},...NavBarFonts,...SocialLinkFonts,...VideoFonts,...SectionTitleFonts,...AccordionListFonts,...PortfolioCardFonts,...ButtonFonts,...BlogCardFonts,...CTAFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IB9OqFbtf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ix64y6jWY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IMLdpT4zo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"5433\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "broadcaststudio", "height", "id", "link", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "INBoFL_Nt", "DPfwB4LAI", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "motion", "cx", "RichText2", "x", "css", "FramerbOyqMnvvZ", "withCSS", "bOyqMnvvZ_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "e", "f", "o", "t", "n", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "f", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "w", "getFonts", "Icon", "k", "q", "Z", "T", "e", "r", "a", "I", "j", "N", "t", "re", "MotionConfigContext", "i", "s", "se", "p", "Q", "C", "n", "o", "l", "f", "d", "A", "O", "Y", "useLocaleInfo", "c", "v", "w", "R", "H", "F", "P", "S", "B", "M", "V", "z", "useVariantState", "q", "k", "J", "D", "L", "useActiveVariantCallback", "W", "E", "_", "G", "pe", "U", "ae", "K", "className", "LayoutGroup", "motion", "cx", "u", "Image2", "RichText2", "x", "Icon", "css", "withCSS", "nHukcgkI5_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "ServicesTabFonts", "getFonts", "nHukcgkI5_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "css", "FramerGixWwvN2e", "withCSS", "GixWwvN2e_default", "addPropertyControls", "ControlType", "addFonts", "NavBarFonts", "getFonts", "gMcQQXeLQ_default", "SocialLinkFonts", "bOyqMnvvZ_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ImageWithOptimizedAppearEffect", "Image2", "VideoFonts", "Video", "ContainerWithOptimizedAppearEffect", "Container", "SectionTitleFonts", "GGj0iZO62_default", "AccordionListFonts", "GixWwvN2e_default", "ContainerWithFX", "withFX", "PortfolioCardFonts", "AwWFbJXbz_default", "ButtonFonts", "ilbT8XFyY_default", "MotionDivWithFX", "BlogCardFonts", "elgjyv6ra_default", "CTAFonts", "EbybOYNqe_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "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", "RLdEzVRHaARoERWxcX", "oKwXGMMRSARoERWxcX", "pF732cumdARoERWxcX", "nTcDK03KbARoERWxcX", "idARoERWxcX", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "RichText2", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "ChildrenCanSuspend", "epQb11ikm_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks7", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
