{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xAqQJJMKulaAU8gK10ZA/Phosphor.js", "ssg:https://framerusercontent.com/modules/iiRJbsID1cJAfzrsT5UD/blmhnnJczGWvRzxvogfi/ie3BnjY7k.js", "ssg:https://framerusercontent.com/modules/K27oCg4qCbtq3JZ67OUx/PuTvr0ZFBya7OjZm7H8g/GANJP4UGw.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "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{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{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(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",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 [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xAqQJJMKulaAU8gK10ZA/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const Phosphor1Controls=getPropertyControls(Phosphor1);const serializationHash=\"framer-VTIgQ\";const variantClassNames={ybxsfYqOv:\"framer-v-s0vwrn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({heading,height,id,name1,subheading,width,...props})=>{return{...props,apqac6aVy:name1??props.apqac6aVy??\"TreeEvergreen\",dH9XCYGIU:subheading??props.dH9XCYGIU??\"Founded in 2021\",uGBnf2C4v:heading??props.uGBnf2C4v??\"26 years and counting\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,apqac6aVy,uGBnf2C4v,dH9XCYGIU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ybxsfYqOv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-s0vwrn\",className,classNames),\"data-framer-name\":\"a stat\",layoutDependency:layoutDependency,layoutId:\"ybxsfYqOv\",ref:refBinding,style:{backgroundColor:\"var(--token-d2149080-5a22-443c-a13e-3b0aff07868e, rgb(32, 66, 144))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x3soh9\",\"data-framer-name\":\"inner_wrap\",layoutDependency:layoutDependency,layoutId:\"BGQZruZGr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y2b3v8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rGBurUJiA-container\",nodeId:\"rGBurUJiA\",rendersWithMotion:true,scopeId:\"ie3BnjY7k\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"tree\",iconSelection:apqac6aVy,id:\"rGBurUJiA\",layoutId:\"rGBurUJiA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m7e59b\",\"data-framer-name\":\"info\",layoutDependency:layoutDependency,layoutId:\"CAUyE07gz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-31b4a2da-7cbc-4e4b-9a70-7da8ae695e40, rgb(238, 249, 228)))\"},children:\"2 years and counting\"})}),className:\"framer-iq9ly0\",\"data-framer-name\":\"5 years and counting\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"kv9xHbDAX\",style:{\"--extracted-r6o4lv\":\"var(--token-31b4a2da-7cbc-4e4b-9a70-7da8ae695e40, rgb(238, 249, 228))\"},text:uGBnf2C4v,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-838c3146-b5a5-4a6b-aa88-97b7b928d90b, rgba(238, 249, 228, 0.7)))\"},children:\"Founded in 2021\"})}),className:\"framer-1fk9ne1\",\"data-framer-name\":\"Founded in 2019\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UNL3ufwcv\",style:{\"--extracted-r6o4lv\":\"var(--token-838c3146-b5a5-4a6b-aa88-97b7b928d90b, rgba(238, 249, 228, 0.7))\"},text:dH9XCYGIU,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VTIgQ.framer-1f8tfdx, .framer-VTIgQ .framer-1f8tfdx { display: block; }\",\".framer-VTIgQ.framer-s0vwrn { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 5px 16px 10px; position: relative; width: 280px; }\",\".framer-VTIgQ .framer-1x3soh9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VTIgQ .framer-1y2b3v8-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-VTIgQ .framer-m7e59b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VTIgQ .framer-iq9ly0, .framer-VTIgQ .framer-1fk9ne1 { flex: none; height: auto; position: relative; 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-VTIgQ.framer-s0vwrn, .framer-VTIgQ .framer-1x3soh9, .framer-VTIgQ .framer-m7e59b { gap: 0px; } .framer-VTIgQ.framer-s0vwrn > *, .framer-VTIgQ .framer-1x3soh9 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-VTIgQ.framer-s0vwrn > :first-child, .framer-VTIgQ .framer-1x3soh9 > :first-child { margin-left: 0px; } .framer-VTIgQ.framer-s0vwrn > :last-child, .framer-VTIgQ .framer-1x3soh9 > :last-child { margin-right: 0px; } .framer-VTIgQ .framer-m7e59b > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-VTIgQ .framer-m7e59b > :first-child { margin-top: 0px; } .framer-VTIgQ .framer-m7e59b > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"apqac6aVy\":\"name1\",\"uGBnf2C4v\":\"heading\",\"dH9XCYGIU\":\"subheading\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerie3BnjY7k=withCSS(Component,css,\"framer-VTIgQ\");export default Framerie3BnjY7k;Framerie3BnjY7k.displayName=\"stats\";Framerie3BnjY7k.defaultProps={height:74,width:280};addPropertyControls(Framerie3BnjY7k,{apqac6aVy:Phosphor1Controls?.[\"iconSelection\"]&&{...Phosphor1Controls[\"iconSelection\"],defaultValue:\"TreeEvergreen\",description:undefined,hidden:undefined,title:\"Name\"},uGBnf2C4v:{defaultValue:\"26 years and counting\",displayTextArea:false,title:\"Heading\",type:ControlType.String},dH9XCYGIU:{defaultValue:\"Founded in 2021\",displayTextArea:false,title:\"Subheading\",type:ControlType.String}});addFonts(Framerie3BnjY7k,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"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\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerie3BnjY7k\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"74\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"apqac6aVy\\\":\\\"name1\\\",\\\"uGBnf2C4v\\\":\\\"heading\\\",\\\"dH9XCYGIU\\\":\\\"subheading\\\"}\",\"framerIntrinsicWidth\":\"280\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ie3BnjY7k.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import ElementsTooltip from\"#framer/local/canvasComponent/heY_NFnAI/heY_NFnAI.js\";import Stats from\"#framer/local/canvasComponent/ie3BnjY7k/ie3BnjY7k.js\";import ApplyAndStart from\"#framer/local/canvasComponent/j8t0J284E/j8t0J284E.js\";import SMCFooter from\"#framer/local/canvasComponent/koAn38_au/koAn38_au.js\";import FeatureCard from\"#framer/local/canvasComponent/Kym4ifyAB/Kym4ifyAB.js\";import Topbar from\"#framer/local/canvasComponent/lWUcIJP0H/lWUcIJP0H.js\";import SMCPartnerLogos from\"#framer/local/canvasComponent/Z3RhAsmhx/Z3RhAsmhx.js\";import*as sharedStyle4 from\"#framer/local/css/C1DoGnPNz/C1DoGnPNz.js\";import*as sharedStyle6 from\"#framer/local/css/cGTNsvVOM/cGTNsvVOM.js\";import*as sharedStyle7 from\"#framer/local/css/Hq8ZPdkeq/Hq8ZPdkeq.js\";import*as sharedStyle3 from\"#framer/local/css/pbkah0okA/pbkah0okA.js\";import*as sharedStyle2 from\"#framer/local/css/puB8kY46u/puB8kY46u.js\";import*as sharedStyle from\"#framer/local/css/pzgAh97sX/pzgAh97sX.js\";import*as sharedStyle5 from\"#framer/local/css/u9aYWmp5g/u9aYWmp5g.js\";import*as sharedStyle8 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle1 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/GANJP4UGw/GANJP4UGw.js\";const TopbarFonts=getFonts(Topbar);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const StatsFonts=getFonts(Stats);const EmbedFonts=getFonts(Embed);const MotionDivWithFX=withFX(motion.div);const FeatureCardFonts=getFonts(FeatureCard);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ElementsTooltipFonts=getFonts(ElementsTooltip);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const SMCPartnerLogosFonts=getFonts(SMCPartnerLogos);const ApplyAndStartFonts=getFonts(ApplyAndStart);const SMCFooterFonts=getFonts(SMCFooter);const breakpoints={J_fSiMzoV:\"(min-width: 1200px)\",qRh5kB9jr:\"(min-width: 810px) and (max-width: 1199px)\",yF4DRXb0y:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Fk5wT\";const variantClassNames={J_fSiMzoV:\"framer-v-1ulslbe\",qRh5kB9jr:\"framer-v-1ugwor2\",yF4DRXb0y:\"framer-v-nqa39b\"};const transition1={damping:80,delay:.1,mass:1,stiffness:400,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:100};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1126,transition:transition1,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1126,x:0,y:100};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transition3={damping:60,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:3027,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:3027,x:0,y:32};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:100};const transition4={damping:80,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:100};const transition5={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:-180,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"J_fSiMzoV\",Phone:\"yF4DRXb0y\",Tablet:\"qRh5kB9jr\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"J_fSiMzoV\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"yF4DRXb0y\")return false;return true;};const elementId=useRouteElementId(\"OgHZrUObO\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"fksynd2Gy\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"zX8usa8b9\");const router=useRouter();const ref3=React.useRef(null);const elementId3=useRouteElementId(\"B3r7rBH0F\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"PSuHFwnzb\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"J_fSiMzoV\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1ulslbe\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cgd26d-container\",layoutScroll:true,nodeId:\"oUO5QQTFR\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{variant:\"ZQwaB4_p3\"},yF4DRXb0y:{variant:\"ZQwaB4_p3\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"oUO5QQTFR\",layoutId:\"oUO5QQTFR\",style:{width:\"100%\"},variant:\"jRXICbciv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-41yf7m\",\"data-framer-name\":\"Header scroll\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m3uzuv\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yF4DRXb0y:{animate:animation2,initial:animation3,style:{transformPerspective:1126}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-10xcfnw\",\"data-framer-appear-id\":\"10xcfnw\",\"data-framer-name\":\"Where Rows\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--token-e76e1640-3c3a-4d59-9e3a-b5282e12619a, rgb(17, 146, 209))\"},children:\"YOUR PARTNER FOR ADVENTURE & OPPORTUNITY\"})}),className:\"framer-x03fgg hidden-nqa39b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2149080-5a22-443c-a13e-3b0aff07868e, rgb(32, 66, 144))\"},children:\"Travel Nursing in Canada\"})})},yF4DRXb0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d2149080-5a22-443c-a13e-3b0aff07868e, rgb(32, 66, 144))\"},children:\"Travel Nursing in Canada\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Travel Nursing in Canada\"})}),className:\"framer-4le9sl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yF4DRXb0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Select Medical Connections\"}),\" is a leading \",/*#__PURE__*/_jsx(\"strong\",{children:\"registered Travel Nurse Agency\"}),\" connecting healthcare professionals to exciting, flexible, and rewarding \",/*#__PURE__*/_jsx(\"strong\",{children:\"travel nursing\"}),\" opportunities across Canada. Whether you\u2019re seeking a short-term contract in a bustling city hospital or a remote community clinic, we\u2019re here to find the perfect match \u2014on your terms.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Select Medical Connections\"}),\" is a leading \",/*#__PURE__*/_jsx(\"strong\",{children:\"registered Travel Nurse Agency\"}),\" connecting healthcare professionals to exciting, flexible, and rewarding \",/*#__PURE__*/_jsx(\"strong\",{children:\"travel nursing\"}),\" opportunities across Canada. Whether you\u2019re seeking a short-term contract in a bustling city hospital or a remote community clinic, we\u2019re here to find the perfect match \u2014on your terms.\"]})}),className:\"framer-1ab4a7e\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u0g6c2\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o4PInkFdL\"},motionChild:true,nodeId:\"pxIqVSAtM\",openInNewTab:false,scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8i6xfu framer-1q6yo1y\",\"data-framer-name\":\"Button\",whileHover:animation4,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Why Travel Nurse\"})}),className:\"framer-1ivm3ex\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ntVlr6IVU\"},motionChild:true,nodeId:\"bw28uFptf\",openInNewTab:false,scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-u1bf1q framer-1q6yo1y\",\"data-framer-name\":\"Button\",whileHover:animation4,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"How It Works\"})}),className:\"framer-19b3h47\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bdv9ns\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jw3euy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vMKMRnmGJ\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yF4DRXb0y:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"vMKMRnmGJ\",layoutId:\"vMKMRnmGJ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/uyMUtfGpV7dPfhOITmseUFEwU.jpg\"},className:\"framer-1q4dqa9\",\"data-framer-name\":\"$1b956894acd3_78661771_3592_42e9_a3b1_b9f6ff8a1864\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:200,pixelHeight:300,pixelWidth:400,src:\"https://framerusercontent.com/images/XNZZlbRTF8Tgm7xIHaF4btQqqGM.jpg\"},className:\"framer-acl9qt\",\"data-framer-name\":\"a34829e35c5e_img_8982\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/sksP38SGPSedMzqVMwSWGHC99U.jpg\"},className:\"framer-lkcjg4\",\"data-framer-name\":\"b2709e55e253_inbound2072217824381575633\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:200,pixelHeight:300,pixelWidth:400,src:\"https://framerusercontent.com/images/hbyWnIzeM5AgEllzs8J30h1GJes.jpg\"},className:\"framer-1m86lv0\",\"data-framer-name\":\"f415553202f6_img_5903\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:200,pixelHeight:300,pixelWidth:400,src:\"https://framerusercontent.com/images/A9edcsSRtb6Sr2DDyigA0w3ByHk.jpg\"},className:\"framer-1245nvm\",\"data-framer-name\":\"dfbcd79033ab_img_0294\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:250,pixelHeight:667,pixelWidth:500,sizes:\"299.8501px\",src:\"https://framerusercontent.com/images/k077UKNxBCTvp8GlTbjgusCvA.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/k077UKNxBCTvp8GlTbjgusCvA.jpg 500w\"},className:\"framer-m0esq8\",\"data-framer-name\":\"BC_Kelowna_David_Dunphy_Kaitlind_Costello_9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:250,pixelHeight:667,pixelWidth:500,sizes:\"299.8501px\",src:\"https://framerusercontent.com/images/fkvwoQWBZ8C5lvc2Xs6qvX1S0U.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fkvwoQWBZ8C5lvc2Xs6qvX1S0U.jpg 500w\"},className:\"framer-af4b55\",\"data-framer-name\":\"ON_Fort_Albany_Lindsay_Pentland_3\"})],speed:55,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1les908-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Zh_ovmPGq\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"Zh_ovmPGq\",layoutId:\"Zh_ovmPGq\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:200,pixelHeight:300,pixelWidth:400,src:\"https://framerusercontent.com/images/M0c1Srqxu62LwC2ulWQ5qZUo.jpg\"},className:\"framer-bk9g8o\",\"data-framer-name\":\"$3a855b7f6661_img_20231218_wa0001\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/P0wObQw9x69cZvWnEWT9cDlHqD0.jpg\"},className:\"framer-rkohnd\",\"data-framer-name\":\"$19052406ec1d_img_8124\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:266.5,intrinsicWidth:200,pixelHeight:533,pixelWidth:400,sizes:\"300.1876px\",src:\"https://framerusercontent.com/images/pBn4MbBkX4N0z2Mzi1tikLrw1sc.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pBn4MbBkX4N0z2Mzi1tikLrw1sc.jpg 400w\"},className:\"framer-12iuhbt\",\"data-framer-name\":\"Facetune_09_09_2023_23_02_06\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:266.5,intrinsicWidth:200,pixelHeight:533,pixelWidth:400,sizes:\"300.1876px\",src:\"https://framerusercontent.com/images/XSZgoyg4GK9jJEmgiQiVwrFrG2M.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XSZgoyg4GK9jJEmgiQiVwrFrG2M.jpg 400w\"},className:\"framer-1l8uyl4\",\"data-framer-name\":\"$372FF984_2BFD_4F91_8F9C_4B6F1508A733\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:250,pixelHeight:667,pixelWidth:500,sizes:\"299.8501px\",src:\"https://framerusercontent.com/images/kKYMVTQS4y4q5A1JVyR69ADRMiE.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kKYMVTQS4y4q5A1JVyR69ADRMiE.jpg 500w\"},className:\"framer-xw7ofz\",\"data-framer-name\":\"s_YK_Whitehorse_Ashley_Anne_Murray_6_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:187.5,intrinsicWidth:250,pixelHeight:375,pixelWidth:500,src:\"https://framerusercontent.com/images/Fv5hv4kTJS3rPzp5W6XxK1sx4ME.jpg\"},className:\"framer-1y0rbse\",\"data-framer-name\":\"s_IMG_7090_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:250,pixelHeight:667,pixelWidth:500,sizes:\"299.8501px\",src:\"https://framerusercontent.com/images/6Bl0472QTcZGBuYAI7jiclNzwD0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Bl0472QTcZGBuYAI7jiclNzwD0.jpg 500w\"},className:\"framer-4q8wgy\",\"data-framer-name\":\"s_IMG_4072_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:266.5,intrinsicWidth:200,pixelHeight:533,pixelWidth:400,sizes:\"300.1876px\",src:\"https://framerusercontent.com/images/qSc9siuMuEWdEEpr1Fy88ZCE83A.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qSc9siuMuEWdEEpr1Fy88ZCE83A.jpg 400w\"},className:\"framer-x095ve\",\"data-framer-name\":\"$02aaa8e28064_fullsizerender\"})],speed:45,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-yvoqrv\",\"data-framer-appear-id\":\"yvoqrv\",\"data-framer-name\":\"header proud\",id:elementId,initial:animation6,optimized:true,ref:ref1,style:{transformPerspective:3027},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-112nlrq\",\"data-framer-name\":\"top_a\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uofrsv\",\"data-framer-name\":\"img_holder\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:3084,pixelHeight:3024,pixelWidth:3084,sizes:`max(max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 200px), 1px)`,src:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg\",srcSet:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg 3084w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:3084,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+24+0+0+0+-79),pixelHeight:3024,pixelWidth:3084,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg\",srcSet:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg 3084w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:3084,pixelHeight:3024,pixelWidth:3084,sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 200px), 1px)`,src:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg\",srcSet:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg 3084w\"},className:\"framer-17clpsr\",\"data-framer-name\":\"hero image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yjhe9x\",\"data-framer-name\":\"hero text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17h0xfo\",\"data-framer-name\":\"inner_wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-95rg5e\",\"data-framer-name\":\"headings\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",children:\"Who We Are\"})})},yF4DRXb0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Who We Are\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"Who We Are\"})}),className:\"framer-syr69z\",\"data-framer-name\":\"We\u2019re changing how startups find talent. Join us.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yF4DRXb0y:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Select Medical Connections\"}),\" is a leading \",/*#__PURE__*/_jsx(\"strong\",{children:\"registered Travel Nurse Agency\"}),\" connecting healthcare professionals to exciting, flexible, and rewarding \",/*#__PURE__*/_jsx(\"strong\",{children:\"travel nursing\"}),\" opportunities across Canada. Whether you\u2019re seeking a short-term contract in a bustling city hospital or a remote community clinic, we\u2019re here to find the perfect match \u2014on your terms.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Personalized Matching\"}),\": We take time to understand your skills, preferences, and goals before suggesting contracts\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\".\"})]})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Ongoing Support\"}),\": From your initial a\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"pplication to contract completion, our recruiters and support staff are here to make the process smooth and worry-free.\"})]})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"National Reach\"}),\": Our extensive partnerships span across the country\u2014so you can find contracts from coast to coast.\"]})})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Select Medical Connections\"}),\" is a leading \",/*#__PURE__*/_jsx(\"strong\",{children:\"registered Travel Nurse Agency\"}),\" connecting healthcare professionals to exciting, flexible, and rewarding \",/*#__PURE__*/_jsx(\"strong\",{children:\"travel nursing\"}),\" opportunities across Canada. Whether you\u2019re seeking a short-term contract in a bustling city hospital or a remote community clinic, we\u2019re here to find the perfect match \u2014on your terms.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Personalized Matching\"}),\": We take time to understand your skills, preferences, and goals before suggesting contracts\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\".\"})]})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Ongoing Support\"}),\": From your initial a\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"pplication to contract completion, our recruiters and support staff are here to make the process smooth and worry-free.\"})]})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"National Reach\"}),\": Our extensive partnerships span across the country\u2014so you can find contracts from coast to coast.\"]})})})]}),className:\"framer-1h6nzav\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2q67h2 hidden-nqa39b\",\"data-framer-name\":\"mission and vision\"})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wyeolt\",\"data-framer-name\":\"top_b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cshhz3\",\"data-framer-name\":\"stats\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ly4ei3\",\"data-framer-name\":\"stats_a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{width:`max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px)`},yF4DRXb0y:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+1200+24+1561.8+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 1px) - 8px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c5flq0-container\",nodeId:\"PvT7KxLfX\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(Stats,{apqac6aVy:\"TreeEvergreen\",dH9XCYGIU:\"Founded in January 1999\",height:\"100%\",id:\"PvT7KxLfX\",layoutId:\"PvT7KxLfX\",style:{width:\"100%\"},uGBnf2C4v:\"26 Years and Counting\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{width:`max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px)`},yF4DRXb0y:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+1200+24+1561.8+0+0+0+0+0+82}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 1px) - 8px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bm6qj2-container\",nodeId:\"OHOysQfyA\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(Stats,{apqac6aVy:\"StarFour\",dH9XCYGIU:\"In 2023.\",height:\"100%\",id:\"OHOysQfyA\",layoutId:\"OHOysQfyA\",style:{width:\"100%\"},uGBnf2C4v:\"2,109 Nurses Placements\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ihx3h\",\"data-framer-name\":\"stats_b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{width:`max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px)`},yF4DRXb0y:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+1200+24+1561.8+0+0+0+164+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 1px) - 8px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-by6e0u-container\",nodeId:\"CLFFy8cE8\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(Stats,{apqac6aVy:\"MapPin\",dH9XCYGIU:\"In 2023.\",height:\"100%\",id:\"CLFFy8cE8\",layoutId:\"CLFFy8cE8\",style:{width:\"100%\"},uGBnf2C4v:\"857,709 Hours Of Care\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{width:`max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px)`},yF4DRXb0y:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+1200+24+1561.8+0+0+0+164+0+82}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 1px) - 8px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y4ltww-container\",nodeId:\"mOFGJjQRq\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(Stats,{apqac6aVy:\"Hand\",dH9XCYGIU:\"We're here to help you!\",height:\"100%\",id:\"mOFGJjQRq\",layoutId:\"mOFGJjQRq\",style:{width:\"100%\"},uGBnf2C4v:\"43 Support Staff\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hsb8eb\",\"data-framer-name\":\"bottom imgs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zief6d\",\"data-framer-name\":\"h_img_holder\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:902,intrinsicWidth:1200,pixelHeight:902,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px)`,src:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg\",srcSet:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg 1200w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:902,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+24+1561.8+0+336+0+0+0),pixelHeight:902,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg\",srcSet:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:902,intrinsicWidth:1200,pixelHeight:902,pixelWidth:1200,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 1px) - 16px) / 2, 1px)`,src:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg\",srcSet:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg 1200w\"},className:\"framer-1n6xsqe\",\"data-framer-name\":\"hero image 2\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kvr1eo\",\"data-framer-name\":\"h_img_holder\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:657,intrinsicWidth:1200,pixelHeight:657,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg\",srcSet:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg 1200w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:657,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+24+1561.8+0+336+0+168+0),pixelHeight:657,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg\",srcSet:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:657,intrinsicWidth:1200,pixelHeight:657,pixelWidth:1200,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 1px) - 16px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg\",srcSet:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg 1200w\"},className:\"framer-mg2vs5\",\"data-framer-name\":\"hero image 3\"})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,pixelHeight:1080,pixelWidth:1080,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.0111)`,src:\"https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png\",srcSet:\"https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png 1080w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3135),pixelHeight:1080,pixelWidth:1080,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9975)`,src:\"https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png\",srcSet:\"https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png 1080w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,pixelHeight:1080,pixelWidth:1080,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9975)`,src:\"https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png\",srcSet:\"https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v1E0Z6UTm2C2etNZxkycPqwxD8.png 1080w\"},className:\"framer-1ybyqbi\",\"data-framer-name\":\"Header Image\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to Explore Canada?\"})}),className:\"framer-1sml8gc\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Apply now or \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rTY_RGksB\"},motionChild:true,nodeId:\"RsdTAVIgM\",openInNewTab:false,scopeId:\"GANJP4UGw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11jfiyw\",\"data-styles-preset\":\"u9aYWmp5g\",children:\"contact us\"})}),\" to speak with a dedicated recruiter\"]})}),className:\"framer-x4ntcr\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9uxrk6\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jzosGHcij\"},motionChild:true,nodeId:\"tAakdDTUA\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1g2tmds framer-1q6yo1y\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Apply Now\"})}),className:\"framer-1mljaiy\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2begdz\",\"data-framer-name\":\"Overlay\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-32p8ht\",\"data-framer-name\":\"Testimonials 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j0ca5o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yF4DRXb0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:[\"What is Travel\",/*#__PURE__*/_jsx(\"br\",{}),\"Nursing in Canada?\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"What is Travel Nursing in Canada?\"})}),className:\"framer-7lbjf0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Travel nursing\"}),\" allows \",/*#__PURE__*/_jsx(\"strong\",{children:\"Registered Nurses\"}),\" (RNs), Licensed Practical Nurses (LPNs), Registered Psychiatric Nurses (RPNs), Nurse Practitioners (NPs), and other healthcare professionals to work temporary contracts in different locations\u2014often enjoying higher wages, flexible schedules, and unique life experiences. \"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Here\u2019s how it works:\"})]}),className:\"framer-922ea5\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m4c49s\",\"data-framer-name\":\"Templates\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4eary5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wddpuj\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sptdbz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Choose Your Destination\"})}),className:\"framer-gu8k1m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Prefer the scenic coasts of British Columbia, the vibrant cities of the east coast, or the rugged beauty of the Prairies? The choice is yours.\"})}),className:\"framer-2bgksq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kng972\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uw75c2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get Matched\"})}),className:\"framer-1lflljf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our team reviews your experience and goals, then pairs you with healthcare facilities that need your expertise.\"})}),className:\"framer-u47cfu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nv5m2x\",\"data-framer-name\":\"Templates\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b2bdby\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rn6q0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9bmy2g\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Enjoy Competitive Benefits\"})}),className:\"framer-14k4908\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"From extended benefits, travel and housing, to license reimbursement, per diem, and referral bonuses, many of our contracts offer generous perks.\"})}),className:\"framer-1dqn0yw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kecouf\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wtku1w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Grow Professionally\"})}),className:\"framer-1u92na8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Gain diverse clinical experience, learn new protocols, and expand your network.\"})}),className:\"framer-1xhhzqe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y0mhcy\",\"data-framer-name\":\"Testimonials 2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17nw9ib\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"em\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Did you know?\"}),\" Travel nursing is an ideal option for nurses wanting to broaden their skill set, experience different patient populations, and keep life exciting\u2014all while making a real impact.\"]})})}),className:\"framer-1udfwho\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-177zpsq\",\"data-framer-name\":\"Testimonials 2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-p9stxj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Our Process\",/*#__PURE__*/_jsx(\"br\",{}),\"(Simple & Streamlined)\"]})})},yF4DRXb0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Our Process\",/*#__PURE__*/_jsx(\"br\",{}),\"(Simple & Streamlined)\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"Our Process (Simple & Streamlined)\"})}),className:\"framer-vb0fxb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-384wbo\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-px1e2x\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-phg6eg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1440,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg 1440w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5833.8+0+0+0+0+0),pixelHeight:1080,pixelWidth:1440,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1440,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NVOudIAHmK50tjMK7LX1dmZLYzw.jpeg 1440w\"},className:\"framer-1oakzzw\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12dq2fq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Application & Credentials\"})}),className:\"framer-b2d2qm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:[\"Complete our quick \",/*#__PURE__*/_jsx(\"strong\",{children:\"online application\"}),\" with your nursing credentials, preferred locations, and availability. We\u2019ll verify your qualifications and reach out to finalize your profile.\"]})}),className:\"framer-2mgj2k\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zhtc36\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xnvepn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ms9yv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Personalized Matchmaking\"})}),className:\"framer-1nlp668\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:[\"Once we understand your goals\u2014be it exploring a new province or focusing on a specialty\u2014we source the best openings from our \",/*#__PURE__*/_jsx(\"strong\",{children:\"Canada-wide\"}),\" network of healthcare facilities.\"]})}),className:\"framer-xycjp9\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gq89om\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:4032,pixelWidth:3024,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg 3024w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5833.8+0+0+754.6+0+0),pixelHeight:4032,pixelWidth:3024,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:4032,pixelWidth:3024,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/0cf0xO1zeAf9JfFzVTVbu2aWuM.jpeg 3024w\"},className:\"framer-ui4zv2\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v9uyil\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg 4032w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5833.8+0+0+1509.2+0+0),pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YD6g66Qr9I6FDzmWiiM0I081uL0.jpeg 4032w\"},className:\"framer-hq7sph\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x9kns9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Interview & Offer\"})}),className:\"framer-h6h0bu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:\"We arrange interviews if required by the facility and get your file presented for a contract. Our recruiters advocate for you, ensuring transparency and fairness.\"})}),className:\"framer-83clls\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ox1n3b\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qipf89\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ff82mv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Travel & Start Date\"})}),className:\"framer-1ot8lwc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:[\"With contracts signed, our team helps coordinate travel, housing arrangements, and any licensing steps required. Then, it\u2019s time to launch your \",/*#__PURE__*/_jsx(\"strong\",{children:\"travel nursing\"}),\" adventure!\"]})}),className:\"framer-1c8jwnj\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mqs4t8\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg 4032w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5833.8+0+0+2263.8+0+0),pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/otpFDuq94ioZGXHkqb2GXkbhTGE.jpeg 4032w\"},className:\"framer-1hq8s5j\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-187agi8\",\"data-framer-name\":\"Testimonials 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1upyhaj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:[\"What Our Travel Nurses\",/*#__PURE__*/_jsx(\"br\",{}),\"Have to Say!\"]})})},yF4DRXb0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:[\"What Our Travel \",/*#__PURE__*/_jsx(\"br\",{}),\"Nurses Have to Say!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"What Our Travel Nurses Have to Say!\"})}),className:\"framer-ckvu6y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our nurses valuable feedback helps us continuously improve. We are sincerely grateful for their time and effort in sharing their thoughts.\"})}),className:\"framer-zb0eap\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13mt8ho-container\",isModuleExternal:true,nodeId:\"PvRxloSCa\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://static.elfsight.com/platform/platform.js\" data-use-service-core defer></script>\\n<div class=\"elfsight-app-b4c46350-ac5e-4e4c-b0dc-49eeab40181f\" data-elfsight-app-lazy></div>',id:\"PvRxloSCa\",layoutId:\"PvRxloSCa\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",pixelHeight:936,pixelWidth:1600,positionX:\"left\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg\",srcSet:\"https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg 1600w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9507),pixelHeight:1514,pixelWidth:800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/KFeEi0PLypAtO5GPDKCKKY5tZUM.jpg\",srcSet:\"https://framerusercontent.com/images/KFeEi0PLypAtO5GPDKCKKY5tZUM.jpg?scale-down-to=1024 541w,https://framerusercontent.com/images/KFeEi0PLypAtO5GPDKCKKY5tZUM.jpg 800w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",pixelHeight:936,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg\",srcSet:\"https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg 1600w\"},className:\"framer-1pjdioc\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"71.46039290476864px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"116.96432022529396px\"},children:\"SELECT \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"116.96432022529396px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"116.96432022529396px\"},children:\"SHOUTOUTS\"})]})}),viewBox:\"0 0 730 187\",viewBoxScale:.67},yF4DRXb0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"43px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\"},children:\"SELECT SHOUTOUTS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\"},children:\"SELECT SHOUTOUTS\"})}),className:\"framer-xg0z83\",fonts:[\"GF;Inter Tight-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:[\"For 25 years our success has \",/*#__PURE__*/_jsx(\"br\",{}),\"been built on the dedication and \",/*#__PURE__*/_jsx(\"br\",{}),\"expertise of extraordinary nurses. \"]})})},yF4DRXb0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1d0e3zq\",\"data-styles-preset\":\"Hq8ZPdkeq\",style:{\"--framer-text-alignment\":\"center\"},children:[\"For 25 years our success\",/*#__PURE__*/_jsx(\"br\",{}),\" has been built on the \",/*#__PURE__*/_jsx(\"br\",{}),\"dedication and \",/*#__PURE__*/_jsx(\"br\",{}),\"expertise of \",/*#__PURE__*/_jsx(\"br\",{}),\"extraordinary nurses. \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:\"For 25 years our success has been built on the dedication and expertise of extraordinary nurses. \"})}),className:\"framer-187ohw1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:[\" We're honoured to shine\",/*#__PURE__*/_jsx(\"br\",{}),\" a spotlight on some of these \",/*#__PURE__*/_jsx(\"br\",{}),\"healthcare heroes.\"]})})},yF4DRXb0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1d0e3zq\",\"data-styles-preset\":\"Hq8ZPdkeq\",style:{\"--framer-text-alignment\":\"right\"},children:\" We're honoured to shine a spotlight on some of these healthcare heroes.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:\" We're honoured to shine a spotlight on some of these healthcare heroes.\"})}),className:\"framer-1psb5y8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pjw4tf\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XqEy8ljt1\"},motionChild:true,nodeId:\"TdINmkKpr\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yF4DRXb0y:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-79ngtu framer-1q6yo1y\",\"data-framer-name\":\"Button\",whileHover:animation4,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"See The Shoutouts\"})}),className:\"framer-1wldcvw\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10107),pixelHeight:2e3,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg\",srcSet:\"https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg 2000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg\",srcSet:\"https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg 2000w\"},className:\"framer-1ygmm1t\",id:elementId1,onTap:onTap3bnx0g({overlay}),ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q0qp2a\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ewxuqj\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Travel  Nursing\"})}),className:\"framer-15f3dfh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"As a travel nurse in Canada, you can pursue your travel dreams while ensuring a stable income. These positions provide above-average wages and full coverage for travel and accommodation expenses, enabling you to freely explore and wander.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"With an extensive 25-year experience under our belt, rest assured that we will be dedicated to supporting you throughout the entire duration of your contract.\"})]}),className:\"framer-a5r5ie\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jzosGHcij\"},motionChild:true,nodeId:\"LfyVS5K_x\",openInNewTab:false,scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1tgnk23 hidden-nqa39b framer-1q6yo1y\",\"data-framer-name\":\"Button\",whileHover:animation4,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let's Get Started\"})}),className:\"framer-1yjhli2\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15obff1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-162olo0-container\",\"data-framer-appear-id\":\"162olo0\",id:elementId2,initial:animation11,nodeId:\"zX8usa8b9\",optimized:true,ref:ref3,rendersWithMotion:true,scopeId:\"GANJP4UGw\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{eZ5aNjZIy:resolvedLinks[1]},yF4DRXb0y:{eZ5aNjZIy:resolvedLinks[2],variant:\"KeWUWSw2t\"}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Explore pages\",eZ5aNjZIy:resolvedLinks[0],fsUmuS24I:\"Most contracts last 6-8 weeks, though some travel jobs may be longer. Many contracts are renewed if the traveler and the hospital are in agreement. Some travel nurses extend multiple times, when the job is a perfect fit!\",g56HeEMzh:\"How long are contracts?\",height:\"100%\",HQlsDHpqI:true,id:\"zX8usa8b9\",J2X4hmGjs:true,layoutId:\"zX8usa8b9\",qKOBsbAyJ:false,style:{width:\"100%\"},SXDgbTQKy:\"Calendar\",variant:\"hUO6W9Cv4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-1d4l3r8-container\",\"data-framer-appear-id\":\"1d4l3r8\",id:elementId3,initial:animation12,nodeId:\"B3r7rBH0F\",optimized:true,ref:ref4,rendersWithMotion:true,scopeId:\"GANJP4UGw\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{eZ5aNjZIy:resolvedLinks1[1],fsUmuS24I:\"Absolutely. You\u2019ll have comprehensive coverage throughout your contract. As part of our team, you\u2019re protected under our insurance policy, which includes general and professional liability, malpractice, workers\u2019 compensation for injury, illness, and bullying or harassment, as well as cyber security and auto incident protection. \"},yF4DRXb0y:{eZ5aNjZIy:resolvedLinks1[2],variant:\"tV1BuQ2YI\"}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Explore sections\",eZ5aNjZIy:resolvedLinks1[0],fsUmuS24I:\"Absolutely. You\u2019ll have comprehensive coverage throughout your contract. As part of our team, you\u2019re protected under our umbrella insurance policy, which includes general and professional liability, malpractice, workers\u2019 compensation for injury, illness, and bullying or harassment, as well as cyber security and auto incident protection. \",g56HeEMzh:\"Do you provide insurance?\",height:\"100%\",HQlsDHpqI:true,id:\"B3r7rBH0F\",J2X4hmGjs:true,layoutId:\"B3r7rBH0F\",qKOBsbAyJ:false,style:{width:\"100%\"},SXDgbTQKy:\"PawPrint\",variant:\"rnz703G5_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-1hddgxr-container\",\"data-framer-appear-id\":\"1hddgxr\",id:elementId4,initial:animation11,nodeId:\"PSuHFwnzb\",optimized:true,ref:ref5,rendersWithMotion:true,scopeId:\"GANJP4UGw\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{eZ5aNjZIy:resolvedLinks2[1]},yF4DRXb0y:{eZ5aNjZIy:resolvedLinks2[2],variant:\"KeWUWSw2t\"}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"See styleguide\",eZ5aNjZIy:resolvedLinks2[0],fsUmuS24I:\"Traditionally, seasoned travel nurses start looking 6 to 10 weeks before they want to start their next travel assignment. If you know you\u2019re ready to travel or will be soon, we recommend filling out an application so you\u2019re prepared to seize the right opportunity.\",g56HeEMzh:\"How long is the application process?\",height:\"100%\",HQlsDHpqI:true,id:\"PSuHFwnzb\",J2X4hmGjs:true,layoutId:\"PSuHFwnzb\",qKOBsbAyJ:false,style:{width:\"100%\"},SXDgbTQKy:\"Users\",variant:\"hUO6W9Cv4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"/faq\",motionChild:true,nodeId:\"H4RFn98P6\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation13,className:\"framer-1ctck2g framer-1q6yo1y\",\"data-framer-appear-id\":\"1ctck2g\",initial:animation14,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation13,className:\"framer-8px8yo-container\",\"data-framer-appear-id\":\"8px8yo\",initial:animation12,nodeId:\"nP64iIDCN\",optimized:true,rendersWithMotion:true,scopeId:\"GANJP4UGw\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsTooltip,{dvR17uw_x:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",height:\"100%\",hNHgX251k:\"   See all the FAQ's.  \",id:\"nP64iIDCN\",Jmoryo6og:\"var(--token-d76e7120-d27d-4da8-b15f-04234125e89d, rgb(255, 255, 255))\",layoutId:\"nP64iIDCN\",style:{height:\"100%\",width:\"100%\"},variant:\"YKo6d2cCo\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1obme13\"),\"data-framer-portal-id\":elementId1,exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"vgIl2dbSl\")}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-7heybx\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1573lnj\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s3vuwi\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qwp00v\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"We Have Contracts In:\"})}),className:\"framer-1j7eb5b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Yukon - British Columbia - Alberta -Saskatchewan - Manitoba - Ontario - Newfoundland and Labrador\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"New Brunswick - Nova Scotia\"})]}),className:\"framer-fcih47\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jzosGHcij\"},motionChild:true,nodeId:\"qn5rzeMFw\",openInNewTab:false,scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yF4DRXb0y:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wy4j90 framer-1q6yo1y\",\"data-framer-name\":\"Button\",whileHover:animation4,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let's Get Started\"})}),className:\"framer-1olr4a7\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:727,intrinsicWidth:1090,pixelHeight:727,pixelWidth:1090,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,src:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png\",srcSet:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png 1090w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:727,intrinsicWidth:1090,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11928.8+30+0+0+0+0+361.8),pixelHeight:727,pixelWidth:1090,positionX:\"center\",positionY:\"center\",sizes:\"1000px\",src:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png\",srcSet:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png 1090w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:727,intrinsicWidth:1090,pixelHeight:727,pixelWidth:1090,positionX:\"center\",positionY:\"center\",sizes:\"1000px\",src:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png\",srcSet:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png 1090w\"},className:\"framer-dpyfll\",\"data-framer-name\":\"Image\"})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mls9g-container\",nodeId:\"qouSWxLpa\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(SMCPartnerLogos,{BTZ3MZF93:\"We are trusted by Health Authorities and Health Care Companies nationwide.\",height:\"100%\",id:\"qouSWxLpa\",layoutId:\"qouSWxLpa\",style:{width:\"100%\"},variant:\"JJCFSJWys\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ulf1yu\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eywwvf\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ghz799\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2208,pixelWidth:1244,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg?scale-down-to=1024 576w,https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg?scale-down-to=2048 1153w,https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg 1244w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13349.6+60+0+0+0+0),pixelHeight:2208,pixelWidth:1244,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg?scale-down-to=1024 576w,https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg?scale-down-to=2048 1153w,https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg 1244w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2208,pixelWidth:1244,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg?scale-down-to=1024 576w,https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg?scale-down-to=2048 1153w,https://framerusercontent.com/images/EjphjWNmkb0SRSWQQ77rK30ntDo.jpeg 1244w\"},className:\"framer-knlrtq\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b94ftn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"Join Canada's Leading Travel Nurse Network\"})}),className:\"framer-1pjg6d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:\"At Select Medical Connections, we believe in forging lasting relationships with our nurses. Your successes are our successes, and we\u2019ll be there to celebrate every milestone\u2014whether it\u2019s your first contract or your tenth.\"})}),className:\"framer-15ypffn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oblsk2\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o4PInkFdL\"},motionChild:true,nodeId:\"HzQVB9kSz\",openInNewTab:false,scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vutryt framer-1q6yo1y\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"More Why You Should\"})}),className:\"framer-1jr3el\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gi7izw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g0yj62\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"Your Travel Nursing Adventure Awaits\"})}),className:\"framer-h4tc9b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:[\"Looking to make the most of your nursing career while exploring \",/*#__PURE__*/_jsx(\"strong\",{children:\"Canada\"}),\"\u2019s breathtaking regions? Join the countless \",/*#__PURE__*/_jsx(\"strong\",{children:\"travel nurses\"}),\" who\u2019ve trusted \",/*#__PURE__*/_jsx(\"strong\",{children:\"Select Medical Connections\"}),\" for guidance, support, and life-changing opportunities.\"]})}),className:\"framer-8281e2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qd3fft\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ntVlr6IVU\"},motionChild:true,nodeId:\"URZktCgdW\",openInNewTab:false,scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1m0ozns framer-1q6yo1y\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"More How We Help\"})}),className:\"framer-1m7szl5\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg 4032w\"}},yF4DRXb0y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13349.6+60+0+794.8+0+0),pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/71BFpnldeFtZs6tkzqOkLKA9jI.jpeg 4032w\"},className:\"framer-flxcch\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yF4DRXb0y:{y:(componentViewport?.y||0)+0+14999.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jy6r6n-container\",nodeId:\"FSRKqAylJ\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(ApplyAndStart,{height:\"100%\",id:\"FSRKqAylJ\",layoutId:\"FSRKqAylJ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q8qma0-container\",nodeId:\"B8cgDvBSp\",scopeId:\"GANJP4UGw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRh5kB9jr:{variant:\"Rkmbqbecp\"},yF4DRXb0y:{variant:\"Bccl45EPK\"}},children:/*#__PURE__*/_jsx(SMCFooter,{height:\"100%\",id:\"B8cgDvBSp\",layoutId:\"B8cgDvBSp\",style:{width:\"100%\"},variant:\"vA5geGlRR\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Fk5wT.framer-1q6yo1y, .framer-Fk5wT .framer-1q6yo1y { display: block; }\",\".framer-Fk5wT.framer-1ulslbe { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Fk5wT .framer-cgd26d-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-Fk5wT .framer-41yf7m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 140px; height: 800px; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-m3uzuv { --border-bottom-width: 25px; --border-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 1000px; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-10xcfnw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 450px; overflow: visible; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Fk5wT .framer-x03fgg, .framer-Fk5wT .framer-1jr3el, .framer-Fk5wT .framer-1m7szl5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Fk5wT .framer-4le9sl, .framer-Fk5wT .framer-1ab4a7e, .framer-Fk5wT .framer-1h6nzav, .framer-Fk5wT .framer-15f3dfh, .framer-Fk5wT .framer-a5r5ie { --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-Fk5wT .framer-u0g6c2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 447px; }\",\".framer-Fk5wT .framer-8i6xfu { align-content: center; align-items: center; background-color: var(--token-33722da1-56ef-4815-82ed-442105eb06b1, #000000); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 53px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 194px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Fk5wT .framer-1ivm3ex, .framer-Fk5wT .framer-19b3h47, .framer-Fk5wT .framer-1mljaiy, .framer-Fk5wT .framer-1wldcvw, .framer-Fk5wT .framer-1yjhli2, .framer-Fk5wT .framer-1olr4a7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Fk5wT .framer-u1bf1q { align-content: center; align-items: center; background-color: var(--token-33722da1-56ef-4815-82ed-442105eb06b1, #000000); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 101px; height: 53px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 194px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Fk5wT .framer-1bdv9ns { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 698px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-jw3euy-container, .framer-Fk5wT .framer-1les908-container { align-self: start; flex: none; grid-row: auto / span 2; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1q4dqa9, .framer-Fk5wT .framer-lkcjg4 { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 168px); overflow: visible; position: relative; width: 299px; }\",\".framer-Fk5wT .framer-acl9qt, .framer-Fk5wT .framer-1m86lv0 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 225px); overflow: visible; position: relative; width: 299px; }\",\".framer-Fk5wT .framer-1245nvm { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 224px); overflow: visible; position: relative; width: 299px; }\",\".framer-Fk5wT .framer-m0esq8, .framer-Fk5wT .framer-af4b55, .framer-Fk5wT .framer-xw7ofz, .framer-Fk5wT .framer-4q8wgy { aspect-ratio: 0.7496251874062968 / 1; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 300px; }\",\".framer-Fk5wT .framer-bk9g8o, .framer-Fk5wT .framer-1y0rbse { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 225px); overflow: visible; position: relative; width: 300px; }\",\".framer-Fk5wT .framer-rkohnd { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 169px); overflow: visible; position: relative; width: 300px; }\",\".framer-Fk5wT .framer-12iuhbt, .framer-Fk5wT .framer-1l8uyl4, .framer-Fk5wT .framer-x095ve { aspect-ratio: 0.7504690431519699 / 1; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 300px; }\",\".framer-Fk5wT .framer-yvoqrv { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff) 0%, rgb(255, 255, 255) 39.910613738738746%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 80px; position: relative; scroll-margin-top: 80px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Fk5wT .framer-112nlrq { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-uofrsv { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fk5wT .framer-17clpsr { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: 645px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-1yjhe9x { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 24px 32px 114px 32px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-17h0xfo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 521px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-95rg5e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-syr69z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-2q67h2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 77px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-wyeolt { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-cshhz3 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-1ly4ei3, .framer-Fk5wT .framer-ihx3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1c5flq0-container, .framer-Fk5wT .framer-1bm6qj2-container, .framer-Fk5wT .framer-by6e0u-container, .framer-Fk5wT .framer-1y4ltww-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-hsb8eb { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-zief6d, .framer-Fk5wT .framer-1kvr1eo { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fk5wT .framer-1n6xsqe, .framer-Fk5wT .framer-mg2vs5 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-1ybyqbi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 358px; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1sml8gc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Fk5wT .framer-x4ntcr { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 533px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Fk5wT .framer-9uxrk6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-Fk5wT .framer-1g2tmds { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 41px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Fk5wT .framer-2begdz { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-Fk5wT .framer-32p8ht, .framer-Fk5wT .framer-177zpsq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 55px 40px 27px 40px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-j0ca5o, .framer-Fk5wT .framer-17nw9ib, .framer-Fk5wT .framer-p9stxj, .framer-Fk5wT .framer-1upyhaj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-Fk5wT .framer-7lbjf0, .framer-Fk5wT .framer-vb0fxb, .framer-Fk5wT .framer-ckvu6y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Fk5wT .framer-922ea5, .framer-Fk5wT .framer-1udfwho, .framer-Fk5wT .framer-zb0eap { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-m4c49s { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 100px 8px 100px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-4eary5, .framer-Fk5wT .framer-b2bdby { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-wddpuj, .framer-Fk5wT .framer-1kng972, .framer-Fk5wT .framer-rn6q0, .framer-Fk5wT .framer-kecouf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-sptdbz, .framer-Fk5wT .framer-1uw75c2, .framer-Fk5wT .framer-9bmy2g, .framer-Fk5wT .framer-1wtku1w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-gu8k1m, .framer-Fk5wT .framer-1lflljf, .framer-Fk5wT .framer-14k4908, .framer-Fk5wT .framer-1u92na8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-2bgksq, .framer-Fk5wT .framer-u47cfu, .framer-Fk5wT .framer-1dqn0yw, .framer-Fk5wT .framer-1xhhzqe { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 470px; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-nv5m2x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 35px 100px 35px 100px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-y0mhcy { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 40px 27px 40px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-384wbo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 36px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-px1e2x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-phg6eg, .framer-Fk5wT .framer-v9uyil, .framer-Fk5wT .framer-1ghz799 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1oakzzw, .framer-Fk5wT .framer-hq7sph, .framer-Fk5wT .framer-1hq8s5j, .framer-Fk5wT .framer-knlrtq { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 384px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fk5wT .framer-12dq2fq, .framer-Fk5wT .framer-13ms9yv, .framer-Fk5wT .framer-1x9kns9, .framer-Fk5wT .framer-ff82mv, .framer-Fk5wT .framer-b94ftn, .framer-Fk5wT .framer-1g0yj62 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-b2d2qm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-2mgj2k, .framer-Fk5wT .framer-xycjp9, .framer-Fk5wT .framer-83clls, .framer-Fk5wT .framer-1c8jwnj { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-zhtc36, .framer-Fk5wT .framer-1gq89om, .framer-Fk5wT .framer-1ox1n3b, .framer-Fk5wT .framer-mqs4t8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 108px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Fk5wT .framer-xnvepn, .framer-Fk5wT .framer-1qipf89, .framer-Fk5wT .framer-gi7izw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1nlp668, .framer-Fk5wT .framer-h6h0bu, .framer-Fk5wT .framer-1ot8lwc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 459px; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-ui4zv2, .framer-Fk5wT .framer-flxcch { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 383px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fk5wT .framer-187agi8 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 37px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-13mt8ho-container, .framer-Fk5wT .framer-mls9g-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1pjdioc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-xg0z83 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: sticky; top: 0px; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Fk5wT .framer-187ohw1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: sticky; top: 0px; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Fk5wT .framer-1psb5y8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Fk5wT .framer-1pjw4tf, .framer-Fk5wT .framer-oblsk2, .framer-Fk5wT .framer-qd3fft { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Fk5wT .framer-79ngtu { align-content: center; align-items: center; background-color: #ff3c00; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Fk5wT .framer-1ygmm1t { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1q0qp2a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-1ewxuqj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 530px; overflow: visible; padding: 0px; position: sticky; top: 120px; width: 1px; z-index: 1; }\",\".framer-Fk5wT .framer-1tgnk23, .framer-Fk5wT .framer-1wy4j90 { align-content: center; align-items: center; background-color: var(--token-33722da1-56ef-4815-82ed-442105eb06b1, #000000); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 53px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 194px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Fk5wT .framer-15obff1 { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-162olo0-container, .framer-Fk5wT .framer-1d4l3r8-container, .framer-Fk5wT .framer-1hddgxr-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Fk5wT .framer-1ctck2g { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; justify-self: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Fk5wT .framer-8px8yo-container { flex: none; height: 45px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Fk5wT.framer-1obme13 { background-color: rgba(188, 41, 41, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-Fk5wT .framer-7heybx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1573lnj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1s3vuwi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-qwp00v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 7px 0px 7px 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1j7eb5b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-fcih47 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-dpyfll { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 634px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fk5wT .framer-1ulf1yu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 0px 70px 0px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1eywwvf { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Fk5wT .framer-1pjg6d, .framer-Fk5wT .framer-h4tc9b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-15ypffn, .framer-Fk5wT .framer-8281e2 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\",\".framer-Fk5wT .framer-1vutryt, .framer-Fk5wT .framer-1m0ozns { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Fk5wT .framer-jy6r6n-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-Fk5wT .framer-1q8qma0-container { flex: none; height: auto; position: relative; width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Fk5wT.framer-1ulslbe, .framer-Fk5wT .framer-41yf7m, .framer-Fk5wT .framer-m3uzuv, .framer-Fk5wT .framer-10xcfnw, .framer-Fk5wT .framer-u0g6c2, .framer-Fk5wT .framer-8i6xfu, .framer-Fk5wT .framer-u1bf1q, .framer-Fk5wT .framer-yvoqrv, .framer-Fk5wT .framer-uofrsv, .framer-Fk5wT .framer-1yjhe9x, .framer-Fk5wT .framer-95rg5e, .framer-Fk5wT .framer-2q67h2, .framer-Fk5wT .framer-wyeolt, .framer-Fk5wT .framer-cshhz3, .framer-Fk5wT .framer-1ly4ei3, .framer-Fk5wT .framer-ihx3h, .framer-Fk5wT .framer-hsb8eb, .framer-Fk5wT .framer-zief6d, .framer-Fk5wT .framer-1kvr1eo, .framer-Fk5wT .framer-1ybyqbi, .framer-Fk5wT .framer-9uxrk6, .framer-Fk5wT .framer-1g2tmds, .framer-Fk5wT .framer-32p8ht, .framer-Fk5wT .framer-j0ca5o, .framer-Fk5wT .framer-m4c49s, .framer-Fk5wT .framer-4eary5, .framer-Fk5wT .framer-wddpuj, .framer-Fk5wT .framer-sptdbz, .framer-Fk5wT .framer-1kng972, .framer-Fk5wT .framer-1uw75c2, .framer-Fk5wT .framer-nv5m2x, .framer-Fk5wT .framer-b2bdby, .framer-Fk5wT .framer-rn6q0, .framer-Fk5wT .framer-9bmy2g, .framer-Fk5wT .framer-kecouf, .framer-Fk5wT .framer-1wtku1w, .framer-Fk5wT .framer-y0mhcy, .framer-Fk5wT .framer-17nw9ib, .framer-Fk5wT .framer-177zpsq, .framer-Fk5wT .framer-p9stxj, .framer-Fk5wT .framer-384wbo, .framer-Fk5wT .framer-px1e2x, .framer-Fk5wT .framer-phg6eg, .framer-Fk5wT .framer-1oakzzw, .framer-Fk5wT .framer-12dq2fq, .framer-Fk5wT .framer-zhtc36, .framer-Fk5wT .framer-xnvepn, .framer-Fk5wT .framer-13ms9yv, .framer-Fk5wT .framer-1gq89om, .framer-Fk5wT .framer-ui4zv2, .framer-Fk5wT .framer-v9uyil, .framer-Fk5wT .framer-hq7sph, .framer-Fk5wT .framer-1x9kns9, .framer-Fk5wT .framer-1ox1n3b, .framer-Fk5wT .framer-1qipf89, .framer-Fk5wT .framer-ff82mv, .framer-Fk5wT .framer-mqs4t8, .framer-Fk5wT .framer-1hq8s5j, .framer-Fk5wT .framer-187agi8, .framer-Fk5wT .framer-1upyhaj, .framer-Fk5wT .framer-1pjdioc, .framer-Fk5wT .framer-1pjw4tf, .framer-Fk5wT .framer-79ngtu, .framer-Fk5wT .framer-1ygmm1t, .framer-Fk5wT .framer-1q0qp2a, .framer-Fk5wT .framer-1ewxuqj, .framer-Fk5wT .framer-1tgnk23, .framer-Fk5wT .framer-1ctck2g, .framer-Fk5wT .framer-7heybx, .framer-Fk5wT .framer-1573lnj, .framer-Fk5wT .framer-1s3vuwi, .framer-Fk5wT .framer-qwp00v, .framer-Fk5wT .framer-1wy4j90, .framer-Fk5wT .framer-dpyfll, .framer-Fk5wT .framer-1ulf1yu, .framer-Fk5wT .framer-1eywwvf, .framer-Fk5wT .framer-1ghz799, .framer-Fk5wT .framer-knlrtq, .framer-Fk5wT .framer-b94ftn, .framer-Fk5wT .framer-oblsk2, .framer-Fk5wT .framer-1vutryt, .framer-Fk5wT .framer-gi7izw, .framer-Fk5wT .framer-1g0yj62, .framer-Fk5wT .framer-qd3fft, .framer-Fk5wT .framer-1m0ozns, .framer-Fk5wT .framer-flxcch { gap: 0px; } .framer-Fk5wT.framer-1ulslbe > *, .framer-Fk5wT .framer-1yjhe9x > *, .framer-Fk5wT .framer-j0ca5o > *, .framer-Fk5wT .framer-17nw9ib > *, .framer-Fk5wT .framer-p9stxj > *, .framer-Fk5wT .framer-1upyhaj > *, .framer-Fk5wT .framer-1s3vuwi > *, .framer-Fk5wT .framer-dpyfll > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Fk5wT.framer-1ulslbe > :first-child, .framer-Fk5wT .framer-10xcfnw > :first-child, .framer-Fk5wT .framer-u1bf1q > :first-child, .framer-Fk5wT .framer-yvoqrv > :first-child, .framer-Fk5wT .framer-1yjhe9x > :first-child, .framer-Fk5wT .framer-95rg5e > :first-child, .framer-Fk5wT .framer-cshhz3 > :first-child, .framer-Fk5wT .framer-1ybyqbi > :first-child, .framer-Fk5wT .framer-32p8ht > :first-child, .framer-Fk5wT .framer-j0ca5o > :first-child, .framer-Fk5wT .framer-m4c49s > :first-child, .framer-Fk5wT .framer-wddpuj > :first-child, .framer-Fk5wT .framer-sptdbz > :first-child, .framer-Fk5wT .framer-1kng972 > :first-child, .framer-Fk5wT .framer-1uw75c2 > :first-child, .framer-Fk5wT .framer-nv5m2x > :first-child, .framer-Fk5wT .framer-rn6q0 > :first-child, .framer-Fk5wT .framer-9bmy2g > :first-child, .framer-Fk5wT .framer-kecouf > :first-child, .framer-Fk5wT .framer-1wtku1w > :first-child, .framer-Fk5wT .framer-y0mhcy > :first-child, .framer-Fk5wT .framer-17nw9ib > :first-child, .framer-Fk5wT .framer-177zpsq > :first-child, .framer-Fk5wT .framer-p9stxj > :first-child, .framer-Fk5wT .framer-px1e2x > :first-child, .framer-Fk5wT .framer-1oakzzw > :first-child, .framer-Fk5wT .framer-12dq2fq > :first-child, .framer-Fk5wT .framer-13ms9yv > :first-child, .framer-Fk5wT .framer-ui4zv2 > :first-child, .framer-Fk5wT .framer-hq7sph > :first-child, .framer-Fk5wT .framer-1x9kns9 > :first-child, .framer-Fk5wT .framer-ff82mv > :first-child, .framer-Fk5wT .framer-1hq8s5j > :first-child, .framer-Fk5wT .framer-187agi8 > :first-child, .framer-Fk5wT .framer-1upyhaj > :first-child, .framer-Fk5wT .framer-1pjdioc > :first-child, .framer-Fk5wT .framer-1ewxuqj > :first-child, .framer-Fk5wT .framer-1ctck2g > :first-child, .framer-Fk5wT .framer-7heybx > :first-child, .framer-Fk5wT .framer-1573lnj > :first-child, .framer-Fk5wT .framer-1s3vuwi > :first-child, .framer-Fk5wT .framer-qwp00v > :first-child, .framer-Fk5wT .framer-dpyfll > :first-child, .framer-Fk5wT .framer-1eywwvf > :first-child, .framer-Fk5wT .framer-knlrtq > :first-child, .framer-Fk5wT .framer-b94ftn > :first-child, .framer-Fk5wT .framer-1g0yj62 > :first-child, .framer-Fk5wT .framer-flxcch > :first-child { margin-top: 0px; } .framer-Fk5wT.framer-1ulslbe > :last-child, .framer-Fk5wT .framer-10xcfnw > :last-child, .framer-Fk5wT .framer-u1bf1q > :last-child, .framer-Fk5wT .framer-yvoqrv > :last-child, .framer-Fk5wT .framer-1yjhe9x > :last-child, .framer-Fk5wT .framer-95rg5e > :last-child, .framer-Fk5wT .framer-cshhz3 > :last-child, .framer-Fk5wT .framer-1ybyqbi > :last-child, .framer-Fk5wT .framer-32p8ht > :last-child, .framer-Fk5wT .framer-j0ca5o > :last-child, .framer-Fk5wT .framer-m4c49s > :last-child, .framer-Fk5wT .framer-wddpuj > :last-child, .framer-Fk5wT .framer-sptdbz > :last-child, .framer-Fk5wT .framer-1kng972 > :last-child, .framer-Fk5wT .framer-1uw75c2 > :last-child, .framer-Fk5wT .framer-nv5m2x > :last-child, .framer-Fk5wT .framer-rn6q0 > :last-child, .framer-Fk5wT .framer-9bmy2g > :last-child, .framer-Fk5wT .framer-kecouf > :last-child, .framer-Fk5wT .framer-1wtku1w > :last-child, .framer-Fk5wT .framer-y0mhcy > :last-child, .framer-Fk5wT .framer-17nw9ib > :last-child, .framer-Fk5wT .framer-177zpsq > :last-child, .framer-Fk5wT .framer-p9stxj > :last-child, .framer-Fk5wT .framer-px1e2x > :last-child, .framer-Fk5wT .framer-1oakzzw > :last-child, .framer-Fk5wT .framer-12dq2fq > :last-child, .framer-Fk5wT .framer-13ms9yv > :last-child, .framer-Fk5wT .framer-ui4zv2 > :last-child, .framer-Fk5wT .framer-hq7sph > :last-child, .framer-Fk5wT .framer-1x9kns9 > :last-child, .framer-Fk5wT .framer-ff82mv > :last-child, .framer-Fk5wT .framer-1hq8s5j > :last-child, .framer-Fk5wT .framer-187agi8 > :last-child, .framer-Fk5wT .framer-1upyhaj > :last-child, .framer-Fk5wT .framer-1pjdioc > :last-child, .framer-Fk5wT .framer-1ewxuqj > :last-child, .framer-Fk5wT .framer-1ctck2g > :last-child, .framer-Fk5wT .framer-7heybx > :last-child, .framer-Fk5wT .framer-1573lnj > :last-child, .framer-Fk5wT .framer-1s3vuwi > :last-child, .framer-Fk5wT .framer-qwp00v > :last-child, .framer-Fk5wT .framer-dpyfll > :last-child, .framer-Fk5wT .framer-1eywwvf > :last-child, .framer-Fk5wT .framer-knlrtq > :last-child, .framer-Fk5wT .framer-b94ftn > :last-child, .framer-Fk5wT .framer-1g0yj62 > :last-child, .framer-Fk5wT .framer-flxcch > :last-child { margin-bottom: 0px; } .framer-Fk5wT .framer-41yf7m > * { margin: 0px; margin-left: calc(140px / 2); margin-right: calc(140px / 2); } .framer-Fk5wT .framer-41yf7m > :first-child, .framer-Fk5wT .framer-m3uzuv > :first-child, .framer-Fk5wT .framer-u0g6c2 > :first-child, .framer-Fk5wT .framer-8i6xfu > :first-child, .framer-Fk5wT .framer-uofrsv > :first-child, .framer-Fk5wT .framer-2q67h2 > :first-child, .framer-Fk5wT .framer-wyeolt > :first-child, .framer-Fk5wT .framer-1ly4ei3 > :first-child, .framer-Fk5wT .framer-ihx3h > :first-child, .framer-Fk5wT .framer-hsb8eb > :first-child, .framer-Fk5wT .framer-zief6d > :first-child, .framer-Fk5wT .framer-1kvr1eo > :first-child, .framer-Fk5wT .framer-9uxrk6 > :first-child, .framer-Fk5wT .framer-1g2tmds > :first-child, .framer-Fk5wT .framer-4eary5 > :first-child, .framer-Fk5wT .framer-b2bdby > :first-child, .framer-Fk5wT .framer-384wbo > :first-child, .framer-Fk5wT .framer-phg6eg > :first-child, .framer-Fk5wT .framer-zhtc36 > :first-child, .framer-Fk5wT .framer-xnvepn > :first-child, .framer-Fk5wT .framer-1gq89om > :first-child, .framer-Fk5wT .framer-v9uyil > :first-child, .framer-Fk5wT .framer-1ox1n3b > :first-child, .framer-Fk5wT .framer-1qipf89 > :first-child, .framer-Fk5wT .framer-mqs4t8 > :first-child, .framer-Fk5wT .framer-1pjw4tf > :first-child, .framer-Fk5wT .framer-79ngtu > :first-child, .framer-Fk5wT .framer-1ygmm1t > :first-child, .framer-Fk5wT .framer-1q0qp2a > :first-child, .framer-Fk5wT .framer-1tgnk23 > :first-child, .framer-Fk5wT .framer-1wy4j90 > :first-child, .framer-Fk5wT .framer-1ulf1yu > :first-child, .framer-Fk5wT .framer-1ghz799 > :first-child, .framer-Fk5wT .framer-oblsk2 > :first-child, .framer-Fk5wT .framer-1vutryt > :first-child, .framer-Fk5wT .framer-gi7izw > :first-child, .framer-Fk5wT .framer-qd3fft > :first-child, .framer-Fk5wT .framer-1m0ozns > :first-child { margin-left: 0px; } .framer-Fk5wT .framer-41yf7m > :last-child, .framer-Fk5wT .framer-m3uzuv > :last-child, .framer-Fk5wT .framer-u0g6c2 > :last-child, .framer-Fk5wT .framer-8i6xfu > :last-child, .framer-Fk5wT .framer-uofrsv > :last-child, .framer-Fk5wT .framer-2q67h2 > :last-child, .framer-Fk5wT .framer-wyeolt > :last-child, .framer-Fk5wT .framer-1ly4ei3 > :last-child, .framer-Fk5wT .framer-ihx3h > :last-child, .framer-Fk5wT .framer-hsb8eb > :last-child, .framer-Fk5wT .framer-zief6d > :last-child, .framer-Fk5wT .framer-1kvr1eo > :last-child, .framer-Fk5wT .framer-9uxrk6 > :last-child, .framer-Fk5wT .framer-1g2tmds > :last-child, .framer-Fk5wT .framer-4eary5 > :last-child, .framer-Fk5wT .framer-b2bdby > :last-child, .framer-Fk5wT .framer-384wbo > :last-child, .framer-Fk5wT .framer-phg6eg > :last-child, .framer-Fk5wT .framer-zhtc36 > :last-child, .framer-Fk5wT .framer-xnvepn > :last-child, .framer-Fk5wT .framer-1gq89om > :last-child, .framer-Fk5wT .framer-v9uyil > :last-child, .framer-Fk5wT .framer-1ox1n3b > :last-child, .framer-Fk5wT .framer-1qipf89 > :last-child, .framer-Fk5wT .framer-mqs4t8 > :last-child, .framer-Fk5wT .framer-1pjw4tf > :last-child, .framer-Fk5wT .framer-79ngtu > :last-child, .framer-Fk5wT .framer-1ygmm1t > :last-child, .framer-Fk5wT .framer-1q0qp2a > :last-child, .framer-Fk5wT .framer-1tgnk23 > :last-child, .framer-Fk5wT .framer-1wy4j90 > :last-child, .framer-Fk5wT .framer-1ulf1yu > :last-child, .framer-Fk5wT .framer-1ghz799 > :last-child, .framer-Fk5wT .framer-oblsk2 > :last-child, .framer-Fk5wT .framer-1vutryt > :last-child, .framer-Fk5wT .framer-gi7izw > :last-child, .framer-Fk5wT .framer-qd3fft > :last-child, .framer-Fk5wT .framer-1m0ozns > :last-child { margin-right: 0px; } .framer-Fk5wT .framer-m3uzuv > *, .framer-Fk5wT .framer-4eary5 > *, .framer-Fk5wT .framer-b2bdby > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-Fk5wT .framer-10xcfnw > *, .framer-Fk5wT .framer-1ybyqbi > *, .framer-Fk5wT .framer-32p8ht > *, .framer-Fk5wT .framer-sptdbz > *, .framer-Fk5wT .framer-1uw75c2 > *, .framer-Fk5wT .framer-9bmy2g > *, .framer-Fk5wT .framer-1wtku1w > *, .framer-Fk5wT .framer-y0mhcy > *, .framer-Fk5wT .framer-177zpsq > *, .framer-Fk5wT .framer-1oakzzw > *, .framer-Fk5wT .framer-12dq2fq > *, .framer-Fk5wT .framer-13ms9yv > *, .framer-Fk5wT .framer-ui4zv2 > *, .framer-Fk5wT .framer-hq7sph > *, .framer-Fk5wT .framer-1x9kns9 > *, .framer-Fk5wT .framer-ff82mv > *, .framer-Fk5wT .framer-1hq8s5j > *, .framer-Fk5wT .framer-187agi8 > *, .framer-Fk5wT .framer-1pjdioc > *, .framer-Fk5wT .framer-1ewxuqj > *, .framer-Fk5wT .framer-7heybx > *, .framer-Fk5wT .framer-qwp00v > *, .framer-Fk5wT .framer-knlrtq > *, .framer-Fk5wT .framer-b94ftn > *, .framer-Fk5wT .framer-1g0yj62 > *, .framer-Fk5wT .framer-flxcch > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Fk5wT .framer-u0g6c2 > *, .framer-Fk5wT .framer-uofrsv > *, .framer-Fk5wT .framer-zief6d > *, .framer-Fk5wT .framer-1kvr1eo > *, .framer-Fk5wT .framer-1g2tmds > *, .framer-Fk5wT .framer-384wbo > *, .framer-Fk5wT .framer-79ngtu > *, .framer-Fk5wT .framer-1tgnk23 > *, .framer-Fk5wT .framer-1wy4j90 > *, .framer-Fk5wT .framer-1ulf1yu > *, .framer-Fk5wT .framer-1vutryt > *, .framer-Fk5wT .framer-1m0ozns > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Fk5wT .framer-8i6xfu > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Fk5wT .framer-u1bf1q > * { margin: 0px; margin-bottom: calc(101px / 2); margin-top: calc(101px / 2); } .framer-Fk5wT .framer-yvoqrv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Fk5wT .framer-95rg5e > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-Fk5wT .framer-2q67h2 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Fk5wT .framer-wyeolt > *, .framer-Fk5wT .framer-hsb8eb > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Fk5wT .framer-cshhz3 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Fk5wT .framer-1ly4ei3 > *, .framer-Fk5wT .framer-ihx3h > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Fk5wT .framer-9uxrk6 > *, .framer-Fk5wT .framer-zhtc36 > *, .framer-Fk5wT .framer-1gq89om > *, .framer-Fk5wT .framer-1ox1n3b > *, .framer-Fk5wT .framer-mqs4t8 > *, .framer-Fk5wT .framer-1pjw4tf > *, .framer-Fk5wT .framer-oblsk2 > *, .framer-Fk5wT .framer-qd3fft > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Fk5wT .framer-m4c49s > *, .framer-Fk5wT .framer-nv5m2x > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Fk5wT .framer-wddpuj > *, .framer-Fk5wT .framer-1kng972 > *, .framer-Fk5wT .framer-rn6q0 > *, .framer-Fk5wT .framer-kecouf > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Fk5wT .framer-px1e2x > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-Fk5wT .framer-phg6eg > *, .framer-Fk5wT .framer-xnvepn > *, .framer-Fk5wT .framer-v9uyil > *, .framer-Fk5wT .framer-1qipf89 > *, .framer-Fk5wT .framer-1ygmm1t > *, .framer-Fk5wT .framer-1ghz799 > *, .framer-Fk5wT .framer-gi7izw > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-Fk5wT .framer-1q0qp2a > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-Fk5wT .framer-1ctck2g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Fk5wT .framer-1573lnj > *, .framer-Fk5wT .framer-1eywwvf > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-Fk5wT[data-border=\"true\"]::after, .framer-Fk5wT [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Fk5wT.framer-1ulslbe { width: 810px; } .framer-Fk5wT .framer-41yf7m { gap: 0px; height: 90vh; padding: 0px; } .framer-Fk5wT .framer-m3uzuv { height: 752px; } .framer-Fk5wT .framer-u0g6c2 { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-Fk5wT .framer-1bdv9ns { height: 672px; } .framer-Fk5wT .framer-yvoqrv { max-width: 100%; padding: 40px 40px 80px 40px; } .framer-Fk5wT .framer-112nlrq, .framer-Fk5wT .framer-17clpsr { height: 403px; } .framer-Fk5wT .framer-1yjhe9x { overflow: hidden; padding: 16px 20px 20px 20px; will-change: var(--framer-will-change-override, transform); } .framer-Fk5wT .framer-17h0xfo { gap: 0px; height: min-content; justify-content: center; } .framer-Fk5wT .framer-2q67h2 { flex-direction: column; gap: 16px; } .framer-Fk5wT .framer-1ly4ei3, .framer-Fk5wT .framer-ihx3h, .framer-Fk5wT .framer-hsb8eb { flex-direction: column; } .framer-Fk5wT .framer-1c5flq0-container, .framer-Fk5wT .framer-1bm6qj2-container, .framer-Fk5wT .framer-by6e0u-container, .framer-Fk5wT .framer-1y4ltww-container, .framer-Fk5wT .framer-15obff1 { flex: none; width: 100%; } .framer-Fk5wT .framer-zief6d, .framer-Fk5wT .framer-1kvr1eo { height: 1px; width: 100%; } .framer-Fk5wT .framer-1ybyqbi { height: 381px; width: 101%; } .framer-Fk5wT .framer-32p8ht { padding: 80px 40px 80px 40px; width: 100%; } .framer-Fk5wT .framer-m4c49s, .framer-Fk5wT .framer-nv5m2x, .framer-Fk5wT .framer-y0mhcy, .framer-Fk5wT .framer-177zpsq, .framer-Fk5wT .framer-187agi8 { padding: 80px 40px 80px 40px; } .framer-Fk5wT .framer-2bgksq, .framer-Fk5wT .framer-u47cfu, .framer-Fk5wT .framer-1dqn0yw, .framer-Fk5wT .framer-1xhhzqe, .framer-Fk5wT .framer-187ohw1, .framer-Fk5wT .framer-1psb5y8, .framer-Fk5wT .framer-15ypffn, .framer-Fk5wT .framer-8281e2 { width: 100%; } .framer-Fk5wT .framer-384wbo { padding: 60px 40px 60px 40px; } .framer-Fk5wT .framer-1oakzzw, .framer-Fk5wT .framer-ui4zv2, .framer-Fk5wT .framer-hq7sph, .framer-Fk5wT .framer-1hq8s5j, .framer-Fk5wT .framer-knlrtq, .framer-Fk5wT .framer-flxcch { height: var(--framer-aspect-ratio-supported, 271px); } .framer-Fk5wT .framer-xycjp9 { width: 377px; } .framer-Fk5wT .framer-h6h0bu { width: 330px; } .framer-Fk5wT .framer-83clls { width: 328px; } .framer-Fk5wT .framer-1ot8lwc, .framer-Fk5wT .framer-1c8jwnj { width: 324px; } .framer-Fk5wT .framer-xg0z83 { white-space: pre; width: 100%; } .framer-Fk5wT .framer-1ygmm1t { padding: 50px 50px 100px 50px; } .framer-Fk5wT .framer-1q0qp2a { flex-direction: column; gap: 50px; overflow: auto; } .framer-Fk5wT .framer-1ewxuqj { flex: none; min-height: 330px; overflow: auto; position: relative; top: unset; width: 100%; } .framer-Fk5wT .framer-dpyfll { height: 505px; width: 100%; } .framer-Fk5wT .framer-1ulf1yu { padding: 40px; } .framer-Fk5wT .framer-h4tc9b { width: 320px; } .framer-Fk5wT .framer-1q8qma0-container { width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Fk5wT .framer-41yf7m, .framer-Fk5wT .framer-u0g6c2, .framer-Fk5wT .framer-17h0xfo, .framer-Fk5wT .framer-2q67h2, .framer-Fk5wT .framer-1ly4ei3, .framer-Fk5wT .framer-ihx3h, .framer-Fk5wT .framer-hsb8eb, .framer-Fk5wT .framer-1q0qp2a { gap: 0px; } .framer-Fk5wT .framer-41yf7m > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Fk5wT .framer-41yf7m > :first-child { margin-left: 0px; } .framer-Fk5wT .framer-41yf7m > :last-child { margin-right: 0px; } .framer-Fk5wT .framer-u0g6c2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Fk5wT .framer-u0g6c2 > :first-child, .framer-Fk5wT .framer-17h0xfo > :first-child, .framer-Fk5wT .framer-2q67h2 > :first-child, .framer-Fk5wT .framer-1ly4ei3 > :first-child, .framer-Fk5wT .framer-ihx3h > :first-child, .framer-Fk5wT .framer-hsb8eb > :first-child, .framer-Fk5wT .framer-1q0qp2a > :first-child { margin-top: 0px; } .framer-Fk5wT .framer-u0g6c2 > :last-child, .framer-Fk5wT .framer-17h0xfo > :last-child, .framer-Fk5wT .framer-2q67h2 > :last-child, .framer-Fk5wT .framer-1ly4ei3 > :last-child, .framer-Fk5wT .framer-ihx3h > :last-child, .framer-Fk5wT .framer-hsb8eb > :last-child, .framer-Fk5wT .framer-1q0qp2a > :last-child { margin-bottom: 0px; } .framer-Fk5wT .framer-17h0xfo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Fk5wT .framer-2q67h2 > *, .framer-Fk5wT .framer-hsb8eb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Fk5wT .framer-1ly4ei3 > *, .framer-Fk5wT .framer-ihx3h > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Fk5wT .framer-1q0qp2a > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\",\"@media (max-width: 809px) { .framer-Fk5wT.framer-1ulslbe { width: 390px; } .framer-Fk5wT .framer-41yf7m { align-content: flex-start; align-items: flex-start; background: radial-gradient(106.89999999999999% 91.8% at 100% 100%, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff) 0%, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) 100%); gap: 50px; height: 1200px; min-height: 70px; padding: 0px; } .framer-Fk5wT .framer-m3uzuv { flex-direction: column; gap: 50px; height: 1220px; justify-content: flex-start; padding: 100px 20px 0px 20px; position: sticky; top: 0px; z-index: 1; } .framer-Fk5wT .framer-10xcfnw { align-content: center; align-items: center; flex: none; height: 400px; max-width: 600px; order: 0; position: sticky; top: 0px; width: 350px; z-index: 1; } .framer-Fk5wT .framer-u0g6c2 { min-height: 136px; width: 100%; } .framer-Fk5wT .framer-8i6xfu { height: 43px; left: 7px; padding: 15px 8px 15px 8px; position: absolute; top: 14px; width: min-content; z-index: 1; } .framer-Fk5wT .framer-u1bf1q { height: 43px; left: 193px; padding: 0px 14px 0px 14px; position: absolute; top: 14px; width: min-content; z-index: 1; } .framer-Fk5wT .framer-1bdv9ns { flex: none; grid-auto-rows: 400px; grid-template-rows: repeat(2, 400px); height: 632px; max-width: 1200px; order: 1; width: 335px; } .framer-Fk5wT .framer-jw3euy-container, .framer-Fk5wT .framer-1les908-container { height: 620px; } .framer-Fk5wT .framer-yvoqrv { height: 1935px; max-width: 100%; padding: 24px 24px 40px 24px; } .framer-Fk5wT .framer-112nlrq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-Fk5wT .framer-uofrsv { align-self: unset; aspect-ratio: 0.8875 / 1; height: var(--framer-aspect-ratio-supported, 386px); } .framer-Fk5wT .framer-1yjhe9x { align-self: unset; padding: 16px 20px 20px 20px; } .framer-Fk5wT .framer-17h0xfo { gap: 24px; height: min-content; justify-content: flex-start; } .framer-Fk5wT .framer-wyeolt, .framer-Fk5wT .framer-4eary5, .framer-Fk5wT .framer-b2bdby, .framer-Fk5wT .framer-phg6eg, .framer-Fk5wT .framer-xnvepn, .framer-Fk5wT .framer-v9uyil, .framer-Fk5wT .framer-1qipf89, .framer-Fk5wT .framer-1ghz799, .framer-Fk5wT .framer-gi7izw { flex-direction: column; } .framer-Fk5wT .framer-cshhz3, .framer-Fk5wT .framer-1c5flq0-container, .framer-Fk5wT .framer-1bm6qj2-container, .framer-Fk5wT .framer-by6e0u-container, .framer-Fk5wT .framer-1y4ltww-container, .framer-Fk5wT .framer-wddpuj, .framer-Fk5wT .framer-1kng972, .framer-Fk5wT .framer-rn6q0, .framer-Fk5wT .framer-kecouf, .framer-Fk5wT .framer-12dq2fq, .framer-Fk5wT .framer-1x9kns9, .framer-Fk5wT .framer-15obff1, .framer-Fk5wT .framer-b94ftn { flex: none; width: 100%; } .framer-Fk5wT .framer-1ly4ei3, .framer-Fk5wT .framer-ihx3h { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; } .framer-Fk5wT .framer-hsb8eb { align-self: unset; flex: none; flex-direction: column; height: 320px; width: 100%; } .framer-Fk5wT .framer-zief6d, .framer-Fk5wT .framer-1kvr1eo { height: 1px; width: 100%; } .framer-Fk5wT .framer-1ybyqbi { height: 600px; } .framer-Fk5wT .framer-32p8ht, .framer-Fk5wT .framer-m4c49s, .framer-Fk5wT .framer-nv5m2x, .framer-Fk5wT .framer-y0mhcy, .framer-Fk5wT .framer-177zpsq, .framer-Fk5wT .framer-187agi8 { padding: 60px 20px 60px 20px; } .framer-Fk5wT .framer-2bgksq, .framer-Fk5wT .framer-u47cfu, .framer-Fk5wT .framer-1dqn0yw, .framer-Fk5wT .framer-1xhhzqe, .framer-Fk5wT .framer-xg0z83, .framer-Fk5wT .framer-187ohw1, .framer-Fk5wT .framer-1psb5y8, .framer-Fk5wT .framer-15ypffn, .framer-Fk5wT .framer-8281e2 { width: 100%; } .framer-Fk5wT .framer-384wbo { gap: 20px; padding: 0px 20px 0px 20px; } .framer-Fk5wT .framer-px1e2x, .framer-Fk5wT .framer-1573lnj, .framer-Fk5wT .framer-1eywwvf { gap: 60px; } .framer-Fk5wT .framer-1oakzzw, .framer-Fk5wT .framer-hq7sph, .framer-Fk5wT .framer-knlrtq { flex: none; height: var(--framer-aspect-ratio-supported, 292px); width: 100%; } .framer-Fk5wT .framer-2mgj2k, .framer-Fk5wT .framer-83clls, .framer-Fk5wT .framer-1pjg6d { width: 348px; } .framer-Fk5wT .framer-13ms9yv, .framer-Fk5wT .framer-ff82mv, .framer-Fk5wT .framer-1g0yj62 { flex: none; order: 1; width: 100%; } .framer-Fk5wT .framer-1nlp668, .framer-Fk5wT .framer-xycjp9, .framer-Fk5wT .framer-1c8jwnj { width: 350px; } .framer-Fk5wT .framer-ui4zv2, .framer-Fk5wT .framer-1hq8s5j, .framer-Fk5wT .framer-flxcch { flex: none; height: var(--framer-aspect-ratio-supported, 292px); order: 0; width: 100%; } .framer-Fk5wT .framer-1pjdioc { align-content: flex-end; align-items: flex-end; padding: 60px; } .framer-Fk5wT .framer-1pjw4tf { gap: 0px; min-height: 40px; width: 162px; } .framer-Fk5wT .framer-79ngtu { bottom: 0px; height: unset; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); z-index: 1; } .framer-Fk5wT .framer-1ygmm1t { flex-direction: column; gap: 50px; padding: 50px 20px 50px 20px; } .framer-Fk5wT .framer-1q0qp2a { flex: none; flex-direction: column; gap: 50px; width: 100%; } .framer-Fk5wT .framer-1ewxuqj { flex: none; min-height: 330px; position: relative; top: unset; width: 100%; } .framer-Fk5wT .framer-15f3dfh { order: 0; } .framer-Fk5wT .framer-a5r5ie { order: 1; } .framer-Fk5wT .framer-7heybx { padding: 30px 60px 60px 60px; } .framer-Fk5wT .framer-1s3vuwi { gap: 20px; } .framer-Fk5wT .framer-1wy4j90 { bottom: -45px; height: 39px; left: 50%; position: absolute; transform: translateX(-50%); width: min-content; z-index: 1; } .framer-Fk5wT .framer-dpyfll { height: 225px; } .framer-Fk5wT .framer-1ulf1yu { gap: 20px; padding: 60px 20px 60px 20px; } .framer-Fk5wT .framer-1q8qma0-container { width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Fk5wT .framer-41yf7m, .framer-Fk5wT .framer-m3uzuv, .framer-Fk5wT .framer-112nlrq, .framer-Fk5wT .framer-17h0xfo, .framer-Fk5wT .framer-wyeolt, .framer-Fk5wT .framer-1ly4ei3, .framer-Fk5wT .framer-ihx3h, .framer-Fk5wT .framer-hsb8eb, .framer-Fk5wT .framer-4eary5, .framer-Fk5wT .framer-b2bdby, .framer-Fk5wT .framer-384wbo, .framer-Fk5wT .framer-px1e2x, .framer-Fk5wT .framer-phg6eg, .framer-Fk5wT .framer-xnvepn, .framer-Fk5wT .framer-v9uyil, .framer-Fk5wT .framer-1qipf89, .framer-Fk5wT .framer-1pjw4tf, .framer-Fk5wT .framer-1ygmm1t, .framer-Fk5wT .framer-1q0qp2a, .framer-Fk5wT .framer-1573lnj, .framer-Fk5wT .framer-1s3vuwi, .framer-Fk5wT .framer-1ulf1yu, .framer-Fk5wT .framer-1eywwvf, .framer-Fk5wT .framer-1ghz799, .framer-Fk5wT .framer-gi7izw { gap: 0px; } .framer-Fk5wT .framer-41yf7m > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-Fk5wT .framer-41yf7m > :first-child, .framer-Fk5wT .framer-384wbo > :first-child, .framer-Fk5wT .framer-1pjw4tf > :first-child, .framer-Fk5wT .framer-1ulf1yu > :first-child { margin-left: 0px; } .framer-Fk5wT .framer-41yf7m > :last-child, .framer-Fk5wT .framer-384wbo > :last-child, .framer-Fk5wT .framer-1pjw4tf > :last-child, .framer-Fk5wT .framer-1ulf1yu > :last-child { margin-right: 0px; } .framer-Fk5wT .framer-m3uzuv > *, .framer-Fk5wT .framer-1ygmm1t > *, .framer-Fk5wT .framer-1q0qp2a > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Fk5wT .framer-m3uzuv > :first-child, .framer-Fk5wT .framer-112nlrq > :first-child, .framer-Fk5wT .framer-17h0xfo > :first-child, .framer-Fk5wT .framer-wyeolt > :first-child, .framer-Fk5wT .framer-1ly4ei3 > :first-child, .framer-Fk5wT .framer-ihx3h > :first-child, .framer-Fk5wT .framer-hsb8eb > :first-child, .framer-Fk5wT .framer-4eary5 > :first-child, .framer-Fk5wT .framer-b2bdby > :first-child, .framer-Fk5wT .framer-px1e2x > :first-child, .framer-Fk5wT .framer-phg6eg > :first-child, .framer-Fk5wT .framer-xnvepn > :first-child, .framer-Fk5wT .framer-v9uyil > :first-child, .framer-Fk5wT .framer-1qipf89 > :first-child, .framer-Fk5wT .framer-1ygmm1t > :first-child, .framer-Fk5wT .framer-1q0qp2a > :first-child, .framer-Fk5wT .framer-1573lnj > :first-child, .framer-Fk5wT .framer-1s3vuwi > :first-child, .framer-Fk5wT .framer-1eywwvf > :first-child, .framer-Fk5wT .framer-1ghz799 > :first-child, .framer-Fk5wT .framer-gi7izw > :first-child { margin-top: 0px; } .framer-Fk5wT .framer-m3uzuv > :last-child, .framer-Fk5wT .framer-112nlrq > :last-child, .framer-Fk5wT .framer-17h0xfo > :last-child, .framer-Fk5wT .framer-wyeolt > :last-child, .framer-Fk5wT .framer-1ly4ei3 > :last-child, .framer-Fk5wT .framer-ihx3h > :last-child, .framer-Fk5wT .framer-hsb8eb > :last-child, .framer-Fk5wT .framer-4eary5 > :last-child, .framer-Fk5wT .framer-b2bdby > :last-child, .framer-Fk5wT .framer-px1e2x > :last-child, .framer-Fk5wT .framer-phg6eg > :last-child, .framer-Fk5wT .framer-xnvepn > :last-child, .framer-Fk5wT .framer-v9uyil > :last-child, .framer-Fk5wT .framer-1qipf89 > :last-child, .framer-Fk5wT .framer-1ygmm1t > :last-child, .framer-Fk5wT .framer-1q0qp2a > :last-child, .framer-Fk5wT .framer-1573lnj > :last-child, .framer-Fk5wT .framer-1s3vuwi > :last-child, .framer-Fk5wT .framer-1eywwvf > :last-child, .framer-Fk5wT .framer-1ghz799 > :last-child, .framer-Fk5wT .framer-gi7izw > :last-child { margin-bottom: 0px; } .framer-Fk5wT .framer-112nlrq > *, .framer-Fk5wT .framer-wyeolt > *, .framer-Fk5wT .framer-hsb8eb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Fk5wT .framer-17h0xfo > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Fk5wT .framer-1ly4ei3 > *, .framer-Fk5wT .framer-ihx3h > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Fk5wT .framer-4eary5 > *, .framer-Fk5wT .framer-b2bdby > *, .framer-Fk5wT .framer-px1e2x > *, .framer-Fk5wT .framer-1573lnj > *, .framer-Fk5wT .framer-1eywwvf > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Fk5wT .framer-384wbo > *, .framer-Fk5wT .framer-1ulf1yu > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Fk5wT .framer-phg6eg > *, .framer-Fk5wT .framer-xnvepn > *, .framer-Fk5wT .framer-v9uyil > *, .framer-Fk5wT .framer-1qipf89 > *, .framer-Fk5wT .framer-1ghz799 > *, .framer-Fk5wT .framer-gi7izw > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Fk5wT .framer-1pjw4tf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Fk5wT .framer-1s3vuwi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11369\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qRh5kB9jr\":{\"layout\":[\"fixed\",\"auto\"]},\"yF4DRXb0y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"OgHZrUObO\":{\"pattern\":\":OgHZrUObO\",\"name\":\"header\"},\"fksynd2Gy\":{\"pattern\":\":fksynd2Gy\",\"name\":\"pages\"},\"zX8usa8b9\":{\"pattern\":\":zX8usa8b9\",\"name\":\"faq3\"},\"B3r7rBH0F\":{\"pattern\":\":B3r7rBH0F\",\"name\":\"faq1\"},\"PSuHFwnzb\":{\"pattern\":\":PSuHFwnzb\",\"name\":\"faq2\"}}\n * @framerResponsiveScreen\n */const FramerGANJP4UGw=withCSS(Component,css,\"framer-Fk5wT\");export default FramerGANJP4UGw;FramerGANJP4UGw.displayName=\"Home\";FramerGANJP4UGw.defaultProps={height:11369,width:1200};addFonts(FramerGANJP4UGw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqWSRToK8EPg.woff2\",weight:\"900\"}]},...TopbarFonts,...TickerFonts,...StatsFonts,...EmbedFonts,...FeatureCardFonts,...ElementsTooltipFonts,...SMCPartnerLogosFonts,...ApplyAndStartFonts,...SMCFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGANJP4UGw\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"OgHZrUObO\\\":{\\\"pattern\\\":\\\":OgHZrUObO\\\",\\\"name\\\":\\\"header\\\"},\\\"fksynd2Gy\\\":{\\\"pattern\\\":\\\":fksynd2Gy\\\",\\\"name\\\":\\\"pages\\\"},\\\"zX8usa8b9\\\":{\\\"pattern\\\":\\\":zX8usa8b9\\\",\\\"name\\\":\\\"faq3\\\"},\\\"B3r7rBH0F\\\":{\\\"pattern\\\":\\\":B3r7rBH0F\\\",\\\"name\\\":\\\"faq1\\\"},\\\"PSuHFwnzb\\\":{\\\"pattern\\\":\\\":PSuHFwnzb\\\",\\\"name\\\":\\\"faq2\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qRh5kB9jr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yF4DRXb0y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"11369\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "Phosphor1Controls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "heading", "height", "id", "name1", "subheading", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "apqac6aVy", "uGBnf2C4v", "dH9XCYGIU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "RichText", "css", "Framerie3BnjY7k", "withCSS", "ie3BnjY7k_default", "addPropertyControls", "Phosphor1Controls", "ControlType", "addFonts", "PhosphorFonts", "TopbarFonts", "getFonts", "lWUcIJP0H_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "TickerFonts", "Ticker", "StatsFonts", "ie3BnjY7k_default", "EmbedFonts", "Embed", "MotionDivWithFX", "withFX", "FeatureCardFonts", "Kym4ifyAB_default", "ContainerWithOptimizedAppearEffect", "Container", "ElementsTooltipFonts", "heY_NFnAI_default", "MotionAWithOptimizedAppearEffect", "SMCPartnerLogosFonts", "Z3RhAsmhx_default", "ApplyAndStartFonts", "j8t0J284E_default", "SMCFooterFonts", "koAn38_au_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "transition2", "animation4", "transition3", "animation5", "animation6", "transformTemplate1", "_", "t", "animation7", "animation8", "transition4", "animation9", "transition5", "animation10", "animation11", "animation12", "animation13", "animation14", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "router", "useRouter", "ref3", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "RichText", "x", "Link", "Image2", "getLoadingLazyAtYPosition", "l", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "AnimatePresence", "Ga", "css", "FramerGANJP4UGw", "withCSS", "GANJP4UGw_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
