{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/ffj1rHON2dahm2fjdh8M/kk6sfx9vcH3YDMWVe6ee/wlxpCGdQK.js", "ssg:https://framerusercontent.com/modules/zRiXLYYEtL4qki2BoZGh/jatxxGBxS08ckhlxon9i/zRaZuUqVa.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\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(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (50a537b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"WEaSOF9FT\",\"IzmRoYf60\",\"uaaQWxaoz\",\"ijkbZexcq\",\"qmu6W_xYJ\",\"w83M5IIkb\",\"I3Oku8oEV\",\"zWodyEXVQ\",\"nVDyVYVPC\",\"rujxVeHvT\",\"lOaYXf1bL\",\"pnxshHyXy\",\"YaLZPBEbU\",\"biyaR9rzM\",\"FTT8BNG5w\",\"mWLnUpfHe\",\"YmelYFnYb\",\"iH2R9ZwrK\",\"L8VsRCmeb\",\"VpXqTB4C0\",\"VfCv_QOpS\",\"W5PH2dNOj\",\"FeMCjq_3L\",\"EVKmzTtel\",\"iCEXylaOs\",\"Zct3Tv7Z7\",\"fS2KsAvbE\",\"OdFtpJspK\",\"ygsG7B2Ny\",\"oW1DZ39Eg\",\"iipOKvIYh\",\"TT7lFwi92\",\"hYECeWtKW\",\"Q3ty68KRx\",\"seIyEfISJ\",\"R6yW5o_KM\"];const serializationHash=\"framer-ar3NJ\";const variantClassNames={biyaR9rzM:\"framer-v-1he8871\",EVKmzTtel:\"framer-v-sa26og\",FeMCjq_3L:\"framer-v-1epmgdc\",fS2KsAvbE:\"framer-v-fn270u\",FTT8BNG5w:\"framer-v-11l5t8u\",hYECeWtKW:\"framer-v-1dq73uo\",I3Oku8oEV:\"framer-v-q0jkf1\",iCEXylaOs:\"framer-v-ycefl5\",iH2R9ZwrK:\"framer-v-1dw9vha\",iipOKvIYh:\"framer-v-82idb9\",ijkbZexcq:\"framer-v-18wu22z\",IzmRoYf60:\"framer-v-13xehu7\",L8VsRCmeb:\"framer-v-1iancsl\",lOaYXf1bL:\"framer-v-1thh3hp\",mWLnUpfHe:\"framer-v-13rvery\",nVDyVYVPC:\"framer-v-1mwq3cs\",OdFtpJspK:\"framer-v-1d9473\",oW1DZ39Eg:\"framer-v-15olp7\",pnxshHyXy:\"framer-v-14c3ptc\",Q3ty68KRx:\"framer-v-7bk9q6\",qmu6W_xYJ:\"framer-v-14x3rb7\",R6yW5o_KM:\"framer-v-1v5fojv\",rujxVeHvT:\"framer-v-1ahe5d3\",seIyEfISJ:\"framer-v-1cujwln\",TT7lFwi92:\"framer-v-o8wmx6\",uaaQWxaoz:\"framer-v-v91uop\",VfCv_QOpS:\"framer-v-1nq3ld5\",VpXqTB4C0:\"framer-v-1eu4h8\",W5PH2dNOj:\"framer-v-1ivkxml\",w83M5IIkb:\"framer-v-qcohmg\",WEaSOF9FT:\"framer-v-gbtoxy\",YaLZPBEbU:\"framer-v-11pnpmf\",ygsG7B2Ny:\"framer-v-m0f4ha\",YmelYFnYb:\"framer-v-1an2m9e\",Zct3Tv7Z7:\"framer-v-28krrf\",zWodyEXVQ:\"framer-v-ykq4xx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={q1:\"IzmRoYf60\",q1phone:\"ijkbZexcq\",q1phoneopen:\"uaaQWxaoz\",q1tablet:\"w83M5IIkb\",q1tabletopen:\"qmu6W_xYJ\",q2:\"I3Oku8oEV\",q2open:\"pnxshHyXy\",q2phone:\"nVDyVYVPC\",q2phoneopen:\"zWodyEXVQ\",q2tablet:\"lOaYXf1bL\",q2tabletopen:\"rujxVeHvT\",q3:\"YaLZPBEbU\",q3open:\"iH2R9ZwrK\",q3phone:\"FTT8BNG5w\",q3phoneopen:\"biyaR9rzM\",q3tablet:\"YmelYFnYb\",q3tabletopen:\"mWLnUpfHe\",q4:\"L8VsRCmeb\",q4open:\"EVKmzTtel\",q4phone:\"VfCv_QOpS\",q4phoneopen:\"VpXqTB4C0\",q4tablet:\"FeMCjq_3L\",q4tabletopen:\"W5PH2dNOj\",q5:\"iipOKvIYh\",q5open:\"R6yW5o_KM\",q5phone:\"hYECeWtKW\",q5phoneopen:\"TT7lFwi92\",q5tablet:\"seIyEfISJ\",q5tabletopen:\"Q3ty68KRx\",question1open:\"WEaSOF9FT\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WEaSOF9FT\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WEaSOF9FT\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapbqk1ob=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"IzmRoYf60\");});const onTapduz2ai=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"WEaSOF9FT\");});const onTapsv5vld=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ijkbZexcq\");});const onTap1qr5c92=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"uaaQWxaoz\");});const onTapzshunl=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"w83M5IIkb\");});const onTapnajpee=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"qmu6W_xYJ\");});const onTap919glr=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"pnxshHyXy\");});const onTap1r6b8z6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"nVDyVYVPC\");});const onTap1ld5ue8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"zWodyEXVQ\");});const onTap15t58nh=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"lOaYXf1bL\");});const onTap1n7jbv0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"rujxVeHvT\");});const onTap1byjetz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"I3Oku8oEV\");});const onTap18ncvkc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"iH2R9ZwrK\");});const onTapco0lv=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"FTT8BNG5w\");});const onTap1fiexwm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"biyaR9rzM\");});const onTap1sb4xs5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"YmelYFnYb\");});const onTap15ci5kq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"mWLnUpfHe\");});const onTap1uzxash=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"YaLZPBEbU\");});const onTapkvy30z=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"EVKmzTtel\");});const onTapawtt1w=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"VfCv_QOpS\");});const onTapcyvn84=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"VpXqTB4C0\");});const onTap12e6nzs=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"FeMCjq_3L\");});const onTap1r6hcm8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"W5PH2dNOj\");});const onTap1k5x5ed=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"L8VsRCmeb\");});const onTap8510qw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"oW1DZ39Eg\");});const onTap1xs53at=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"fS2KsAvbE\");});const onTap6yw6d5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Zct3Tv7Z7\");});const onTapg9yyig=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ygsG7B2Ny\");});const onTap18z3ftu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"OdFtpJspK\");});const onTap1fbwkp6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"iCEXylaOs\");});const onTap1cwlgbx=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"R6yW5o_KM\");});const onTap16fs1ee=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"hYECeWtKW\");});const onTap4gtco7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"TT7lFwi92\");});const onTap5w07kd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"seIyEfISJ\");});const onTap31ruvz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Q3ty68KRx\");});const onTap57jjio=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"iipOKvIYh\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"IzmRoYf60\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"seIyEfISJ\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"hYECeWtKW\")return true;return false;};const isDisplayed3=()=>{if([\"ijkbZexcq\",\"w83M5IIkb\",\"I3Oku8oEV\",\"nVDyVYVPC\",\"lOaYXf1bL\",\"YaLZPBEbU\",\"FTT8BNG5w\",\"YmelYFnYb\",\"L8VsRCmeb\",\"VfCv_QOpS\",\"FeMCjq_3L\",\"iCEXylaOs\",\"fS2KsAvbE\",\"ygsG7B2Ny\",\"iipOKvIYh\",\"hYECeWtKW\",\"seIyEfISJ\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"iipOKvIYh\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"fS2KsAvbE\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"ygsG7B2Ny\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"iCEXylaOs\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"VfCv_QOpS\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"FeMCjq_3L\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"L8VsRCmeb\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"FTT8BNG5w\")return true;return false;};const isDisplayed12=()=>{if(baseVariant===\"YmelYFnYb\")return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"YaLZPBEbU\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"lOaYXf1bL\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"I3Oku8oEV\")return true;return false;};const isDisplayed16=()=>{if(baseVariant===\"ijkbZexcq\")return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"w83M5IIkb\")return true;return false;};const isDisplayed18=()=>{if(baseVariant===\"nVDyVYVPC\")return true;return false;};const isDisplayed19=()=>{if([\"IzmRoYf60\",\"ijkbZexcq\",\"w83M5IIkb\",\"I3Oku8oEV\",\"nVDyVYVPC\",\"lOaYXf1bL\",\"YaLZPBEbU\",\"FTT8BNG5w\",\"YmelYFnYb\",\"L8VsRCmeb\",\"VfCv_QOpS\",\"FeMCjq_3L\",\"iCEXylaOs\",\"fS2KsAvbE\",\"ygsG7B2Ny\",\"iipOKvIYh\",\"hYECeWtKW\",\"seIyEfISJ\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gbtoxy\",className,classNames),\"data-border\":true,\"data-framer-name\":\"question1open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WEaSOF9FT\",onTap:onTapbqk1ob,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgb(39, 39, 39)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:11,borderBottomRightRadius:11,borderTopLeftRadius:11,borderTopRightRadius:11,...style},variants:{FeMCjq_3L:{backgroundColor:\"rgb(36, 34, 34)\"},fS2KsAvbE:{backgroundColor:\"rgb(36, 34, 34)\"},FTT8BNG5w:{backgroundColor:\"rgb(36, 34, 34)\"},hYECeWtKW:{backgroundColor:\"rgb(36, 34, 34)\"},I3Oku8oEV:{backgroundColor:\"rgb(36, 34, 34)\"},iCEXylaOs:{backgroundColor:\"rgb(36, 34, 34)\"},iipOKvIYh:{backgroundColor:\"rgb(36, 34, 34)\"},ijkbZexcq:{backgroundColor:\"rgb(36, 34, 34)\"},IzmRoYf60:{backgroundColor:\"rgb(36, 34, 34)\"},L8VsRCmeb:{backgroundColor:\"rgb(36, 34, 34)\"},lOaYXf1bL:{backgroundColor:\"rgb(36, 34, 34)\"},nVDyVYVPC:{backgroundColor:\"rgb(36, 34, 34)\"},seIyEfISJ:{backgroundColor:\"rgb(36, 34, 34)\"},VfCv_QOpS:{backgroundColor:\"rgb(36, 34, 34)\"},w83M5IIkb:{backgroundColor:\"rgb(36, 34, 34)\"},YaLZPBEbU:{backgroundColor:\"rgb(36, 34, 34)\"},ygsG7B2Ny:{backgroundColor:\"rgb(36, 34, 34)\"},YmelYFnYb:{backgroundColor:\"rgb(36, 34, 34)\"}},...addPropertyOverrides({biyaR9rzM:{\"data-framer-name\":\"q3phoneopen\",onTap:onTapco0lv},EVKmzTtel:{\"data-framer-name\":\"q4open\",onTap:onTap1k5x5ed},FeMCjq_3L:{\"data-framer-name\":\"q4tablet\",onTap:onTap1r6hcm8},fS2KsAvbE:{\"data-framer-name\":\"q5phone\",onTap:onTap6yw6d5},FTT8BNG5w:{\"data-framer-name\":\"q3phone\",onTap:onTap1fiexwm},hYECeWtKW:{\"data-framer-name\":\"q5phone\",onTap:onTap4gtco7},I3Oku8oEV:{\"data-framer-name\":\"q2\",onTap:onTap919glr},iCEXylaOs:{\"data-framer-name\":\"q5\",onTap:onTap8510qw},iH2R9ZwrK:{\"data-framer-name\":\"q3open\",onTap:onTap1uzxash},iipOKvIYh:{\"data-framer-name\":\"q5\",onTap:onTap1cwlgbx},ijkbZexcq:{\"data-framer-name\":\"q1phone\",onTap:onTap1qr5c92},IzmRoYf60:{\"data-framer-name\":\"q1\",onTap:onTapduz2ai},L8VsRCmeb:{\"data-framer-name\":\"q4\",onTap:onTapkvy30z},lOaYXf1bL:{\"data-framer-name\":\"q2tablet\",onTap:onTap1n7jbv0},mWLnUpfHe:{\"data-framer-name\":\"q3tabletopen\",onTap:onTap1sb4xs5},nVDyVYVPC:{\"data-framer-name\":\"q2phone\",onTap:onTap1ld5ue8},OdFtpJspK:{\"data-framer-name\":\"q5tabletopen\",onTap:onTapg9yyig},oW1DZ39Eg:{\"data-framer-name\":\"q5open\",onTap:onTap1fbwkp6},pnxshHyXy:{\"data-framer-name\":\"q2open\",onTap:onTap1byjetz},Q3ty68KRx:{\"data-framer-name\":\"q5tabletopen\",onTap:onTap5w07kd},qmu6W_xYJ:{\"data-framer-name\":\"q1tabletopen\",onTap:onTapzshunl},R6yW5o_KM:{\"data-framer-name\":\"q5open\",onTap:onTap57jjio},rujxVeHvT:{\"data-framer-name\":\"q2tabletopen\",onTap:onTap15t58nh},seIyEfISJ:{\"data-framer-name\":\"q5tablet\",onTap:onTap31ruvz},TT7lFwi92:{\"data-framer-name\":\"q5phoneopen\",onTap:onTap16fs1ee},uaaQWxaoz:{\"data-framer-name\":\"q1phoneopen\",onTap:onTapsv5vld},VfCv_QOpS:{\"data-framer-name\":\"q4phone\",onTap:onTapcyvn84},VpXqTB4C0:{\"data-framer-name\":\"q4phoneopen\",onTap:onTapawtt1w},W5PH2dNOj:{\"data-framer-name\":\"q4tabletopen\",onTap:onTap12e6nzs},w83M5IIkb:{\"data-framer-name\":\"q1tablet\",onTap:onTapnajpee},YaLZPBEbU:{\"data-framer-name\":\"q3\",onTap:onTap18ncvkc},ygsG7B2Ny:{\"data-framer-name\":\"q5tablet\",onTap:onTap18z3ftu},YmelYFnYb:{\"data-framer-name\":\"q3tablet\",onTap:onTap15ci5kq},Zct3Tv7Z7:{\"data-framer-name\":\"q5phoneopen\",onTap:onTap1xs53at},zWodyEXVQ:{\"data-framer-name\":\"q2phoneopen\",onTap:onTap1r6b8z6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e4h97y\",\"data-framer-name\":\"Frame 857\",layoutDependency:layoutDependency,layoutId:\"Sje9dKmaX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-176ani3\",\"data-framer-name\":\"Frame 856\",layoutDependency:layoutDependency,layoutId:\"vrBTwAMoF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\"},children:\"How does the durability of stone coating metal roofing compare to traditional roofing materials?\"})}),className:\"framer-11f1c70\",\"data-framer-name\":\"How does the durability of stone coating metal roofing compare to traditional roofing materials?\",fonts:[\"Inter-ExtraBold\"],layoutDependency:layoutDependency,layoutId:\"Vq5613bj_\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{biyaR9rzM:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},EVKmzTtel:{\"--extracted-2gxw0f\":\"rgb(36, 34, 34)\",\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},FeMCjq_3L:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},fS2KsAvbE:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},FTT8BNG5w:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},hYECeWtKW:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},I3Oku8oEV:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},iCEXylaOs:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},iH2R9ZwrK:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},iipOKvIYh:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},ijkbZexcq:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},IzmRoYf60:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},L8VsRCmeb:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},lOaYXf1bL:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},mWLnUpfHe:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},nVDyVYVPC:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},OdFtpJspK:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},oW1DZ39Eg:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},pnxshHyXy:{\"--extracted-r6o4lv\":\"rgb(15, 15, 15)\"},Q3ty68KRx:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},qmu6W_xYJ:{\"--extracted-r6o4lv\":\"rgb(31, 29, 29)\"},R6yW5o_KM:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},rujxVeHvT:{\"--extracted-r6o4lv\":\"rgb(15, 15, 15)\"},seIyEfISJ:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},TT7lFwi92:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},uaaQWxaoz:{\"--extracted-r6o4lv\":\"rgb(15, 15, 15)\"},VfCv_QOpS:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},VpXqTB4C0:{\"--extracted-2gxw0f\":\"rgb(36, 34, 34)\",\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},W5PH2dNOj:{\"--extracted-2gxw0f\":\"rgb(36, 34, 34)\",\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},w83M5IIkb:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},YaLZPBEbU:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},ygsG7B2Ny:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},YmelYFnYb:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},Zct3Tv7Z7:{\"--extracted-2gxw0f\":\"rgb(36, 34, 34)\",\"--extracted-r6o4lv\":\"rgb(39, 39, 39)\"},zWodyEXVQ:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({biyaR9rzM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Will installing a metal roof increase my home value?\"})})},EVKmzTtel:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Is Bright View metal roofing covered under warranty? \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(36, 34, 34))\"},children:\"And what is the difference between a manufacturer's warranty and a company warranty?\"})]})},FeMCjq_3L:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Is Bright View metal roofing covered under warranty? \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"And what is the difference between a manufacturer's warranty and a company warranty?\"})]})},fS2KsAvbE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Will installing a metal roof increase my home value?\"})})},FTT8BNG5w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Will installing a metal roof increase my home value?\"})})},hYECeWtKW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"When is it necessary to replace your roof?\"})})},I3Oku8oEV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"What does Bright View\u2019s metal roofing installation process look like?\"})})},iCEXylaOs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Will installing a metal roof increase my home value?\"})})},iH2R9ZwrK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Will installing a metal roof increase my home value?\"})})},iipOKvIYh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"When is it necessary to replace your roof?\"})})},ijkbZexcq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"How does the durability of stone coated metal roofing compare to traditional roofing?\"})})},IzmRoYf60:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"How does the durability of stone coated metal roofing compare to traditional roofing materials?\"})})},L8VsRCmeb:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Is Bright View metal roofing covered under warranty? \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"And what is the difference between a manufacturer's warranty and a company warranty?\"})]})},lOaYXf1bL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"What does Bright View\u2019s metal roofing installation process look like?\"})})},mWLnUpfHe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Will installing a metal roof increase my home value?\"})})},nVDyVYVPC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"What does Bright View\u2019s metal roofing installation process look like?\"})})},OdFtpJspK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Will installing a metal roof increase my home value?\"})})},oW1DZ39Eg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Will installing a metal roof increase my home value?\"})})},pnxshHyXy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 15, 15))\"},children:\"What does Bright View\u2019s metal roofing installation process look like?\"})})},Q3ty68KRx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"When is it necessary to replace your roof?\"})})},qmu6W_xYJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 29, 29))\"},children:\"How does the durability of stone coated metal roofing compare to traditional roofing materials?\"})})},R6yW5o_KM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"When is it necessary to replace your roof?\"})})},rujxVeHvT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 15, 15))\"},children:\"What does Bright View\u2019s metal roofing installation process look like?\"})})},seIyEfISJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"When is it necessary to replace your roof?\"})})},TT7lFwi92:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"When is it necessary to replace your roof?\"})})},uaaQWxaoz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 15, 15))\"},children:\"How does the durability of stone coated metal roofing compare to traditional roofing?\"})})},VfCv_QOpS:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Is Bright View metal roofing covered under warranty? \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"And what is the difference between a manufacturer's warranty and a company's warranty?\"})]})},VpXqTB4C0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Is Bright View metal roofing covered under warranty? \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(36, 34, 34))\"},children:\"And what is the difference between a manufacturer's warranty and company's warranty?\"})]})},W5PH2dNOj:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Is Bright View metal roofing covered under warranty? \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(36, 34, 34))\"},children:\"And what is the difference between a manufacturer's warranty and a company warranty?\"})]})},w83M5IIkb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"How does the durability of stone coated metal roofing compare to traditional roofing materials?\"})})},YaLZPBEbU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Will installing a metal roof increase my home value?\"})})},ygsG7B2Ny:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Will installing a metal roof increase my home value?\"})})},YmelYFnYb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Will installing a metal roof increase my home value?\"})})},Zct3Tv7Z7:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(39, 39, 39))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(36, 34, 34))\"},children:\"Will installing a metal roof increase my home value?\"})]})},zWodyEXVQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"What does Bright View\u2019s metal roofing installation process look like?\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-lm679i\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"dYOTAR8Bp\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1dsp0zd\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"XiFPtEvhX\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1mjwya6\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"oFF05b11o\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-dsi13v\",\"data-framer-name\":\"Vector 378\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"hydSEMm_M\",svg:'<svg width=\"32\" height=\"8\" viewBox=\"-2 -2 32 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 2L28 2\" stroke=\"#F8611E\" stroke-width=\"3\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-gczfff\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"NeR3MAJxu\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1fdeqny\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"vbtFA2rNM\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-kavdeh\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"SmlaVBhw3\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1gcok04\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"q2QKEpczM\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6rk8vs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"RnsBhpdsc\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-rdffbt\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"TLHj12owl\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15arb2w\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"nNiP1yldy\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed11()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-c9678c\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"w6BxEgZC3\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1v94u91\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"LPJObZ5z9\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-176afpr\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"BKpZeN9RH\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed14()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1w01msf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"uiOQtfdu4\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed15()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-21xdhs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"WWRXtE9gx\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed16()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1seez9d\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"Wa6sNRrVR\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed17()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1a7jg8v\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"NZOxatqRZ\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed18()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-hu7ei5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"Dqe4wUiRL\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5007 12.8688H12.8688V22.5007H9.6582V12.8688H0.0263672V9.6582H9.6582V0.0263672H12.8688V9.6582H22.5007V12.8688Z\" fill=\"#F8611E\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed19()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(8, 8, 8))\"},children:\"Long story short, it's a huge upgrade! Our stone coated metal is Class A fire rated, Class 4 hail rated (up to 2\\\" in diameter), and is guaranteed up to 130 MPH wind. If you're looking for a durable roof, look no further!\"})}),className:\"framer-1xzpj37\",\"data-framer-name\":\"There are many differentiating factors when comparing our stone coated metal to traditional roofing materials. Here are some : Rust and corrosion resistance. 2. Enhanced impact resistance. 3. Longer lifespan, reducing replacements. 4. Inherent fire resistance. 5. Low maintenance for cost-effectiveness. 6. Lighter weight, minimizing stress on structures. 7. Energy efficiency with reflective coatings. 8. Architectural versatility in styles and colors. 9. Environmentally friendly and recyclable. 10. Enhances resale value with durability and aesthetic appeal.\u201D\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bxdniXwFF\",style:{\"--extracted-r6o4lv\":\"rgb(8, 8, 8)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{biyaR9rzM:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},EVKmzTtel:{\"--extracted-1iakedh\":\"rgb(36, 34, 34)\",\"--extracted-2gxw0f\":\"rgb(39, 39, 39)\",\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},iH2R9ZwrK:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},mWLnUpfHe:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},OdFtpJspK:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},oW1DZ39Eg:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},pnxshHyXy:{\"--extracted-2gxw0f\":\"rgb(15, 15, 15)\",\"--extracted-r6o4lv\":\"rgb(15, 15, 15)\"},Q3ty68KRx:{\"--extracted-1iakedh\":\"rgb(36, 34, 34)\",\"--extracted-2gxw0f\":\"rgb(39, 39, 39)\",\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},R6yW5o_KM:{\"--extracted-1iakedh\":\"rgb(36, 34, 34)\",\"--extracted-2gxw0f\":\"rgb(39, 39, 39)\",\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},rujxVeHvT:{\"--extracted-r6o4lv\":\"rgb(15, 15, 15)\"},TT7lFwi92:{\"--extracted-1iakedh\":\"rgb(36, 34, 34)\",\"--extracted-2gxw0f\":\"rgb(39, 39, 39)\",\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},VpXqTB4C0:{\"--extracted-1iakedh\":\"rgb(36, 34, 34)\",\"--extracted-2gxw0f\":\"rgb(39, 39, 39)\",\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},W5PH2dNOj:{\"--extracted-1iakedh\":\"rgb(36, 34, 34)\",\"--extracted-2gxw0f\":\"rgb(39, 39, 39)\",\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},Zct3Tv7Z7:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"},zWodyEXVQ:{\"--extracted-r6o4lv\":\"rgb(36, 34, 34)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({biyaR9rzM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Your home value is always increasing, that's appreciation! The true value of a high-quality roof is allowing you to keep all of that appreciation in your pocket. If and when the time comes to sell your home, it will be sold with a roof that's under warranty, has no issues, and looks great (50% of curb appeal is your roof!) You can rest assured that you won't be losing any money at settlement for buyers to replace one of our roofs.\"})})},EVKmzTtel:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Don't get tricked! Most roofers will try to say you're well-protected with a manufacturer's warranty. This is not the case. Those only cover material costs, not labor, and on top of that they don't cover against installation errors. The truth of the matter is that basically EVERY roof has at least 1 or 2 small errors that they can point to and void the warranty.\\xa0\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(39, 39, 39))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(36, 34, 34))\"},children:\"True protection comes from a COMPANY warranty. After all, shouldn't the contractor that chose and installed the material be the one guaranteeing their work? At Bright View\\xa0Exteriors, we only offer full company warranties. Our stone-coated metal is a lifetime warranty, and our fiberglass-core asphalt shingles come with a 50 year warranty. That means if you have any issues down the road, you're not calling anyone but us!\"})]})},iH2R9ZwrK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Your home value is always increasing, that's appreciation! The true value of a high-quality roof is allowing you to keep all of that appreciation in your pocket. If and when the time comes to sell your home, it will be sold with a roof that's under warranty, has no issues, and looks great (50% of curb appeal is your roof!) You can rest assured that you won't be losing any money at settlement for buyers to replace one of our roofs.\"})})},mWLnUpfHe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Your home value is always increasing, that's appreciation! The true value of a high-quality roof is allowing you to keep all of that appreciation in your pocket. If and when the time comes to sell your home, it will be sold with a roof that's under warranty, has no issues, and looks great (50% of curb appeal is your roof!) You can rest assured that you won't be losing any money at settlement for buyers to replace one of our roofs.\"})})},OdFtpJspK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Your home value is always increasing, that's appreciation! The true value of a high-quality roof is allowing you to keep all of that appreciation in your pocket. If and when the time comes to sell your home, it will be sold with a roof that's under warranty, has no issues, and looks great (50% of curb appeal is your roof!) You can rest assured that you won't be losing any money at settlement for buyers to replace one of our roofs.\"})})},oW1DZ39Eg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Your home value is always increasing, that's appreciation! The true value of a high-quality roof is allowing you to keep all of that appreciation in your pocket. If and when the time comes to sell your home, it will be sold with a roof that's under warranty, has no issues, and looks great (50% of curb appeal is your roof!) You can rest assured that you won't be losing any money at settlement for buyers to replace one of our roofs.\"})})},pnxshHyXy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 15, 15))\"},children:\"Your materials should arrive early the day of installation, or shortly before. The day of, we're going to tarp around the job site and then tear everything off. From there, we'll replace any and all wood that needs to go, then install your brand new roof. Installation on a standard-sized home usually takes 1-2 days, and we'll NEVER start a project without seeing it through to completion.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(15, 15, 15))\"},children:\"Best of all, we won't leave until you sign off that you're happy with the installation AND the cleanup!\"})]})},Q3ty68KRx:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"That's a complicated question. Of course, if your roof is getting up there in age it never hurts to be proactive rather than reactive! But there are many factors that determine whether you should look into replacing your roof. Most homeowners are familiar with the big problem signs, such as leaks in the home, missing shingles, granule loss, etc. However a roofing professional can and should conduct a full inspection of not just the exterior, but of your attic as well. Often times a roof can be leaking and the water just hasn't made it into your home yet!\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(39, 39, 39))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(36, 34, 34))\"},children:\"At Bright View\\xa0Exteriors, we provide FREE roof inspections and quotes, so why wait? If you're thinking about your roof, call us today to schedule!\"})]})},R6yW5o_KM:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"That's a complicated question. Of course, if your roof is getting up there in age it never hurts to be proactive rather than reactive! But there are many factors that determine whether you should look into replacing your roof. Most homeowners are familiar with the big problem signs, such as leaks in the home, missing shingles, granule loss, etc. However a roofing professional can and should conduct a full inspection of not just the exterior, but of your attic as well. Often times a roof can be leaking and the water just hasn't made it into your home yet!\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(39, 39, 39))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(36, 34, 34))\"},children:\"At Bright View\\xa0Exteriors, we provide FREE roof inspections and quotes, so why wait? If you're thinking about your roof, call us today to schedule!\"})]})},rujxVeHvT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 15, 15))\"},children:\"Your materials should arrive early the day of installation, or shortly before. The day of, we're going to tarp around the job site and then tear everything off. From there, we'll replace any and all wood that needs to go, then install your brand new roof. Installation on a standard-sized home usually takes 1-2 days, and we'll NEVER start a project without seeing it through to completion.\"})})},TT7lFwi92:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"That's a complicated question. Of course, if your roof is getting up there in age it never hurts to be proactive rather than reactive! But there are many factors that determine whether you should look into replacing your roof. Most homeowners are familiar with the big problem signs, such as leaks in the home, missing shingles, granule loss, etc. However a roofing professional can and should conduct a full inspection of not just the exterior, but of your attic as well. Often times a roof can be leaking and the water just hasn't made it into your home yet!\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(39, 39, 39))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(36, 34, 34))\"},children:\"At Bright View\\xa0Exteriors, we provide FREE roof inspections and quotes, so why wait? If you're thinking about your roof, call us today to schedule!\"})]})},uaaQWxaoz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(8, 8, 8))\"},children:\"Long story short, it's a huge upgrade! Our stone coated metal is Class A fire rated, Class 4 hail rated (up to 2\\\" in diameter), and is guaranteed up to 130 MPH wind. If you're looking for a durable roof, look no further!\"})})},VpXqTB4C0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Don't get tricked! Most roofers will try to say you're well-protected with a manufacturer's warranty. This is not the case. Those only cover material costs, not labor, and on top of that they don't cover against installation errors. The truth of the matter is that basically EVERY roof has at least 1 or 2 small errors that they can point to and void the warranty.\\xa0\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(39, 39, 39))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(36, 34, 34))\"},children:\"True protection comes from a COMPANY warranty. After all, shouldn't the contractor that chose and installed the material be the one guaranteeing their work? At Bright View\\xa0Exteriors, we only offer full company warranties. Our stone-coated metal is a lifetime warranty, and our fiberglass-core asphalt shingles come with a 50 year warranty. That means if you have any issues down the road, you're not calling anyone but us!\"})]})},W5PH2dNOj:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Don't get tricked! Most roofers will try to say you're well-protected with a manufacturer's warranty. This is not the case. Those only cover material costs, not labor, and on top of that they don't cover against installation errors. The truth of the matter is that basically EVERY roof has at least 1 or 2 small errors that they can point to and void the warranty.\\xa0\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(39, 39, 39))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(36, 34, 34))\"},children:\"True protection comes from a COMPANY warranty. After all, shouldn't the contractor that chose and installed the material be the one guaranteeing their work? At Bright View\\xa0Exteriors, we only offer full company warranties. Our stone-coated metal is a lifetime warranty, and our fiberglass-core asphalt shingles come with a 50 year warranty. That means if you have any issues down the road, you're not calling anyone but us!\"})]})},Zct3Tv7Z7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Your home value is always increasing, that's appreciation! The true value of a high-quality roof is allowing you to keep all of that appreciation in your pocket. If and when the time comes to sell your home, it will be sold with a roof that's under warranty, has no issues, and looks great (50% of curb appeal is your roof!) You can rest assured that you won't be losing any money at settlement for buyers to replace one of our roofs.\\xa0\"})})},zWodyEXVQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(36, 34, 34))\"},children:\"Your materials should arrive early the day of installation, or shortly before. The day of, we're going to tarp around the job site and then tear everything off. From there, we'll replace any and all wood that needs to go, then install your brand new roof. Installation on a standard-sized home usually takes 1-2 days, and we'll NEVER start a project without seeing it through to completion.\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ar3NJ.framer-15lojn1, .framer-ar3NJ .framer-15lojn1 { display: block; }\",\".framer-ar3NJ.framer-gbtoxy { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 51px 38px 51px 38px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ar3NJ .framer-e4h97y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1116px; }\",\".framer-ar3NJ .framer-176ani3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 27px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1116px; }\",\".framer-ar3NJ .framer-11f1c70 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ar3NJ .framer-lm679i, .framer-ar3NJ .framer-1dsp0zd, .framer-ar3NJ .framer-gczfff, .framer-ar3NJ .framer-kavdeh, .framer-ar3NJ .framer-1gcok04, .framer-ar3NJ .framer-rdffbt, .framer-ar3NJ .framer-15arb2w, .framer-ar3NJ .framer-1v94u91, .framer-ar3NJ .framer-176afpr, .framer-ar3NJ .framer-1w01msf, .framer-ar3NJ .framer-21xdhs, .framer-ar3NJ .framer-1a7jg8v { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-ar3NJ .framer-1mjwya6, .framer-ar3NJ .framer-1fdeqny, .framer-ar3NJ .framer-6rk8vs, .framer-ar3NJ .framer-c9678c, .framer-ar3NJ .framer-1seez9d, .framer-ar3NJ .framer-hu7ei5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 25px; }\",\".framer-ar3NJ .framer-dsi13v { flex: none; height: 8px; position: relative; width: 32px; }\",\".framer-ar3NJ .framer-1xzpj37 { 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-ar3NJ.framer-gbtoxy, .framer-ar3NJ .framer-e4h97y { gap: 0px; } .framer-ar3NJ.framer-gbtoxy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ar3NJ.framer-gbtoxy > :first-child, .framer-ar3NJ .framer-e4h97y > :first-child { margin-top: 0px; } .framer-ar3NJ.framer-gbtoxy > :last-child, .framer-ar3NJ .framer-e4h97y > :last-child { margin-bottom: 0px; } .framer-ar3NJ .framer-e4h97y > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } }\",\".framer-ar3NJ.framer-v-13xehu7 .framer-176ani3 { gap: 54px; justify-content: flex-start; order: 0; }\",\".framer-ar3NJ.framer-v-13xehu7 .framer-11f1c70, .framer-ar3NJ.framer-v-q0jkf1 .framer-11f1c70, .framer-ar3NJ.framer-v-14c3ptc .framer-11f1c70, .framer-ar3NJ.framer-v-11pnpmf .framer-11f1c70, .framer-ar3NJ.framer-v-1dw9vha .framer-11f1c70, .framer-ar3NJ.framer-v-1iancsl .framer-11f1c70, .framer-ar3NJ.framer-v-sa26og .framer-11f1c70, .framer-ar3NJ.framer-v-ycefl5 .framer-11f1c70, .framer-ar3NJ.framer-v-15olp7 .framer-11f1c70, .framer-ar3NJ.framer-v-82idb9 .framer-11f1c70, .framer-ar3NJ.framer-v-1v5fojv .framer-11f1c70 { flex: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-13xehu7 .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-13xehu7 .framer-176ani3 > * { margin: 0px; margin-left: calc(54px / 2); margin-right: calc(54px / 2); } .framer-ar3NJ.framer-v-13xehu7 .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-13xehu7 .framer-176ani3 > :last-child { margin-right: 0px; } }\",\".framer-ar3NJ.framer-v-v91uop.framer-gbtoxy, .framer-ar3NJ.framer-v-18wu22z.framer-gbtoxy, .framer-ar3NJ.framer-v-ykq4xx.framer-gbtoxy, .framer-ar3NJ.framer-v-1mwq3cs.framer-gbtoxy, .framer-ar3NJ.framer-v-1he8871.framer-gbtoxy, .framer-ar3NJ.framer-v-11l5t8u.framer-gbtoxy, .framer-ar3NJ.framer-v-1eu4h8.framer-gbtoxy, .framer-ar3NJ.framer-v-1nq3ld5.framer-gbtoxy, .framer-ar3NJ.framer-v-28krrf.framer-gbtoxy, .framer-ar3NJ.framer-v-fn270u.framer-gbtoxy, .framer-ar3NJ.framer-v-o8wmx6.framer-gbtoxy, .framer-ar3NJ.framer-v-1dq73uo.framer-gbtoxy { width: 390px; }\",\".framer-ar3NJ.framer-v-v91uop .framer-e4h97y, .framer-ar3NJ.framer-v-18wu22z .framer-e4h97y, .framer-ar3NJ.framer-v-ykq4xx .framer-e4h97y, .framer-ar3NJ.framer-v-1mwq3cs .framer-e4h97y, .framer-ar3NJ.framer-v-1he8871 .framer-e4h97y, .framer-ar3NJ.framer-v-11l5t8u .framer-e4h97y, .framer-ar3NJ.framer-v-1nq3ld5 .framer-e4h97y, .framer-ar3NJ.framer-v-28krrf .framer-e4h97y, .framer-ar3NJ.framer-v-fn270u .framer-e4h97y, .framer-ar3NJ.framer-v-o8wmx6 .framer-e4h97y, .framer-ar3NJ.framer-v-1dq73uo .framer-e4h97y { align-content: center; align-items: center; order: 0; width: 100%; }\",\".framer-ar3NJ.framer-v-v91uop .framer-176ani3, .framer-ar3NJ.framer-v-18wu22z .framer-176ani3, .framer-ar3NJ.framer-v-ykq4xx .framer-176ani3, .framer-ar3NJ.framer-v-1mwq3cs .framer-176ani3, .framer-ar3NJ.framer-v-1he8871 .framer-176ani3, .framer-ar3NJ.framer-v-11l5t8u .framer-176ani3, .framer-ar3NJ.framer-v-1eu4h8 .framer-176ani3, .framer-ar3NJ.framer-v-1nq3ld5 .framer-176ani3, .framer-ar3NJ.framer-v-28krrf .framer-176ani3, .framer-ar3NJ.framer-v-fn270u .framer-176ani3, .framer-ar3NJ.framer-v-o8wmx6 .framer-176ani3, .framer-ar3NJ.framer-v-1dq73uo .framer-176ani3 { height: 27px; width: 314px; }\",\".framer-ar3NJ.framer-v-v91uop .framer-11f1c70, .framer-ar3NJ.framer-v-18wu22z .framer-11f1c70, .framer-ar3NJ.framer-v-ykq4xx .framer-11f1c70, .framer-ar3NJ.framer-v-1mwq3cs .framer-11f1c70, .framer-ar3NJ.framer-v-1he8871 .framer-11f1c70, .framer-ar3NJ.framer-v-11l5t8u .framer-11f1c70, .framer-ar3NJ.framer-v-1eu4h8 .framer-11f1c70, .framer-ar3NJ.framer-v-1nq3ld5 .framer-11f1c70, .framer-ar3NJ.framer-v-28krrf .framer-11f1c70, .framer-ar3NJ.framer-v-fn270u .framer-11f1c70, .framer-ar3NJ.framer-v-o8wmx6 .framer-11f1c70, .framer-ar3NJ.framer-v-1dq73uo .framer-11f1c70 { order: 0; }\",\".framer-ar3NJ.framer-v-v91uop .framer-dsi13v, .framer-ar3NJ.framer-v-ykq4xx .framer-dsi13v, .framer-ar3NJ.framer-v-1he8871 .framer-dsi13v, .framer-ar3NJ.framer-v-1eu4h8 .framer-dsi13v, .framer-ar3NJ.framer-v-28krrf .framer-dsi13v, .framer-ar3NJ.framer-v-o8wmx6 .framer-dsi13v { order: 4; width: 25px; }\",\".framer-ar3NJ.framer-v-v91uop .framer-1xzpj37, .framer-ar3NJ.framer-v-ykq4xx .framer-1xzpj37, .framer-ar3NJ.framer-v-1he8871 .framer-1xzpj37, .framer-ar3NJ.framer-v-1eu4h8 .framer-1xzpj37, .framer-ar3NJ.framer-v-28krrf .framer-1xzpj37, .framer-ar3NJ.framer-v-o8wmx6 .framer-1xzpj37 { width: 314px; }\",\".framer-ar3NJ.framer-v-18wu22z .framer-1seez9d { order: 17; }\",\".framer-ar3NJ.framer-v-14x3rb7.framer-gbtoxy, .framer-ar3NJ.framer-v-qcohmg.framer-gbtoxy, .framer-ar3NJ.framer-v-1ahe5d3.framer-gbtoxy, .framer-ar3NJ.framer-v-1thh3hp.framer-gbtoxy, .framer-ar3NJ.framer-v-13rvery.framer-gbtoxy, .framer-ar3NJ.framer-v-1an2m9e.framer-gbtoxy, .framer-ar3NJ.framer-v-1ivkxml.framer-gbtoxy, .framer-ar3NJ.framer-v-1epmgdc.framer-gbtoxy, .framer-ar3NJ.framer-v-1d9473.framer-gbtoxy, .framer-ar3NJ.framer-v-m0f4ha.framer-gbtoxy, .framer-ar3NJ.framer-v-7bk9q6.framer-gbtoxy, .framer-ar3NJ.framer-v-1cujwln.framer-gbtoxy { width: 810px; }\",\".framer-ar3NJ.framer-v-14x3rb7 .framer-e4h97y, .framer-ar3NJ.framer-v-14x3rb7 .framer-176ani3, .framer-ar3NJ.framer-v-qcohmg .framer-e4h97y, .framer-ar3NJ.framer-v-qcohmg .framer-176ani3, .framer-ar3NJ.framer-v-q0jkf1 .framer-e4h97y, .framer-ar3NJ.framer-v-1ahe5d3 .framer-e4h97y, .framer-ar3NJ.framer-v-1ahe5d3 .framer-176ani3, .framer-ar3NJ.framer-v-1thh3hp .framer-e4h97y, .framer-ar3NJ.framer-v-1thh3hp .framer-176ani3, .framer-ar3NJ.framer-v-14c3ptc .framer-e4h97y, .framer-ar3NJ.framer-v-11pnpmf .framer-e4h97y, .framer-ar3NJ.framer-v-13rvery .framer-e4h97y, .framer-ar3NJ.framer-v-13rvery .framer-176ani3, .framer-ar3NJ.framer-v-1an2m9e .framer-e4h97y, .framer-ar3NJ.framer-v-1an2m9e .framer-176ani3, .framer-ar3NJ.framer-v-1dw9vha .framer-e4h97y, .framer-ar3NJ.framer-v-1iancsl .framer-e4h97y, .framer-ar3NJ.framer-v-1ivkxml .framer-176ani3, .framer-ar3NJ.framer-v-1epmgdc .framer-e4h97y, .framer-ar3NJ.framer-v-1epmgdc .framer-176ani3, .framer-ar3NJ.framer-v-sa26og .framer-e4h97y, .framer-ar3NJ.framer-v-ycefl5 .framer-e4h97y, .framer-ar3NJ.framer-v-1d9473 .framer-e4h97y, .framer-ar3NJ.framer-v-1d9473 .framer-176ani3, .framer-ar3NJ.framer-v-m0f4ha .framer-e4h97y, .framer-ar3NJ.framer-v-m0f4ha .framer-176ani3, .framer-ar3NJ.framer-v-15olp7 .framer-e4h97y, .framer-ar3NJ.framer-v-82idb9 .framer-e4h97y, .framer-ar3NJ.framer-v-7bk9q6 .framer-e4h97y, .framer-ar3NJ.framer-v-7bk9q6 .framer-176ani3, .framer-ar3NJ.framer-v-1cujwln .framer-e4h97y, .framer-ar3NJ.framer-v-1cujwln .framer-176ani3, .framer-ar3NJ.framer-v-1v5fojv .framer-e4h97y { width: 100%; }\",\".framer-ar3NJ.framer-v-q0jkf1 .framer-176ani3, .framer-ar3NJ.framer-v-14c3ptc .framer-176ani3 { gap: 358px; justify-content: flex-start; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-q0jkf1 .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-q0jkf1 .framer-176ani3 > * { margin: 0px; margin-left: calc(358px / 2); margin-right: calc(358px / 2); } .framer-ar3NJ.framer-v-q0jkf1 .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-q0jkf1 .framer-176ani3 > :last-child { margin-right: 0px; } }\",\".framer-ar3NJ.framer-v-1mwq3cs .framer-hu7ei5 { order: 19; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-14c3ptc .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-14c3ptc .framer-176ani3 > * { margin: 0px; margin-left: calc(358px / 2); margin-right: calc(358px / 2); } .framer-ar3NJ.framer-v-14c3ptc .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-14c3ptc .framer-176ani3 > :last-child { margin-right: 0px; } }\",\".framer-ar3NJ.framer-v-11pnpmf .framer-176ani3, .framer-ar3NJ.framer-v-1dw9vha .framer-176ani3 { gap: 531px; justify-content: flex-start; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-11pnpmf .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-11pnpmf .framer-176ani3 > * { margin: 0px; margin-left: calc(531px / 2); margin-right: calc(531px / 2); } .framer-ar3NJ.framer-v-11pnpmf .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-11pnpmf .framer-176ani3 > :last-child { margin-right: 0px; } }\",\".framer-ar3NJ.framer-v-11l5t8u .framer-c9678c { order: 12; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-1dw9vha .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-1dw9vha .framer-176ani3 > * { margin: 0px; margin-left: calc(531px / 2); margin-right: calc(531px / 2); } .framer-ar3NJ.framer-v-1dw9vha .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-1dw9vha .framer-176ani3 > :last-child { margin-right: 0px; } }\",\".framer-ar3NJ.framer-v-1iancsl .framer-176ani3 { gap: 128px; justify-content: flex-start; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-1iancsl .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-1iancsl .framer-176ani3 > * { margin: 0px; margin-left: calc(128px / 2); margin-right: calc(128px / 2); } .framer-ar3NJ.framer-v-1iancsl .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-1iancsl .framer-176ani3 > :last-child { margin-right: 0px; } }\",\".framer-ar3NJ.framer-v-1eu4h8 .framer-e4h97y { align-content: center; align-items: center; gap: 66px; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-1eu4h8 .framer-e4h97y { gap: 0px; } .framer-ar3NJ.framer-v-1eu4h8 .framer-e4h97y > * { margin: 0px; margin-bottom: calc(66px / 2); margin-top: calc(66px / 2); } .framer-ar3NJ.framer-v-1eu4h8 .framer-e4h97y > :first-child { margin-top: 0px; } .framer-ar3NJ.framer-v-1eu4h8 .framer-e4h97y > :last-child { margin-bottom: 0px; } }\",\".framer-ar3NJ.framer-v-1nq3ld5 .framer-6rk8vs { order: 9; }\",\".framer-ar3NJ.framer-v-1ivkxml .framer-e4h97y { gap: 68px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-1ivkxml .framer-e4h97y { gap: 0px; } .framer-ar3NJ.framer-v-1ivkxml .framer-e4h97y > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-ar3NJ.framer-v-1ivkxml .framer-e4h97y > :first-child { margin-top: 0px; } .framer-ar3NJ.framer-v-1ivkxml .framer-e4h97y > :last-child { margin-bottom: 0px; } }\",\".framer-ar3NJ.framer-v-sa26og .framer-176ani3 { gap: 127px; justify-content: flex-start; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-sa26og .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-sa26og .framer-176ani3 > * { margin: 0px; margin-left: calc(127px / 2); margin-right: calc(127px / 2); } .framer-ar3NJ.framer-v-sa26og .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-sa26og .framer-176ani3 > :last-child { margin-right: 0px; } }\",\".framer-ar3NJ.framer-v-ycefl5 .framer-176ani3, .framer-ar3NJ.framer-v-15olp7 .framer-176ani3 { gap: 529px; justify-content: flex-start; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-ycefl5 .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-ycefl5 .framer-176ani3 > * { margin: 0px; margin-left: calc(529px / 2); margin-right: calc(529px / 2); } .framer-ar3NJ.framer-v-ycefl5 .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-ycefl5 .framer-176ani3 > :last-child { margin-right: 0px; } }\",\".framer-ar3NJ.framer-v-fn270u .framer-1fdeqny { order: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-15olp7 .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-15olp7 .framer-176ani3 > * { margin: 0px; margin-left: calc(529px / 2); margin-right: calc(529px / 2); } .framer-ar3NJ.framer-v-15olp7 .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-15olp7 .framer-176ani3 > :last-child { margin-right: 0px; } }\",\".framer-ar3NJ.framer-v-82idb9 .framer-176ani3 { gap: 633px; height: 27px; justify-content: flex-start; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-82idb9 .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-82idb9 .framer-176ani3 > * { margin: 0px; margin-left: calc(633px / 2); margin-right: calc(633px / 2); } .framer-ar3NJ.framer-v-82idb9 .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-82idb9 .framer-176ani3 > :last-child { margin-right: 0px; } }\",\".framer-ar3NJ.framer-v-1dq73uo .framer-1mjwya6 { order: 3; }\",\".framer-ar3NJ.framer-v-1v5fojv .framer-176ani3 { gap: 631px; justify-content: flex-start; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ar3NJ.framer-v-1v5fojv .framer-176ani3 { gap: 0px; } .framer-ar3NJ.framer-v-1v5fojv .framer-176ani3 > * { margin: 0px; margin-left: calc(631px / 2); margin-right: calc(631px / 2); } .framer-ar3NJ.framer-v-1v5fojv .framer-176ani3 > :first-child { margin-left: 0px; } .framer-ar3NJ.framer-v-1v5fojv .framer-176ani3 > :last-child { margin-right: 0px; } }\",'.framer-ar3NJ[data-border=\"true\"]::after, .framer-ar3NJ [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 218\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IzmRoYf60\":{\"layout\":[\"fixed\",\"auto\"]},\"uaaQWxaoz\":{\"layout\":[\"fixed\",\"auto\"]},\"ijkbZexcq\":{\"layout\":[\"fixed\",\"auto\"]},\"qmu6W_xYJ\":{\"layout\":[\"fixed\",\"auto\"]},\"w83M5IIkb\":{\"layout\":[\"fixed\",\"auto\"]},\"I3Oku8oEV\":{\"layout\":[\"fixed\",\"auto\"]},\"zWodyEXVQ\":{\"layout\":[\"fixed\",\"auto\"]},\"nVDyVYVPC\":{\"layout\":[\"fixed\",\"auto\"]},\"rujxVeHvT\":{\"layout\":[\"fixed\",\"auto\"]},\"lOaYXf1bL\":{\"layout\":[\"fixed\",\"auto\"]},\"pnxshHyXy\":{\"layout\":[\"fixed\",\"auto\"]},\"YaLZPBEbU\":{\"layout\":[\"fixed\",\"auto\"]},\"biyaR9rzM\":{\"layout\":[\"fixed\",\"auto\"]},\"FTT8BNG5w\":{\"layout\":[\"fixed\",\"auto\"]},\"mWLnUpfHe\":{\"layout\":[\"fixed\",\"auto\"]},\"YmelYFnYb\":{\"layout\":[\"fixed\",\"auto\"]},\"iH2R9ZwrK\":{\"layout\":[\"fixed\",\"auto\"]},\"L8VsRCmeb\":{\"layout\":[\"fixed\",\"auto\"]},\"VpXqTB4C0\":{\"layout\":[\"fixed\",\"auto\"]},\"VfCv_QOpS\":{\"layout\":[\"fixed\",\"auto\"]},\"W5PH2dNOj\":{\"layout\":[\"fixed\",\"auto\"]},\"FeMCjq_3L\":{\"layout\":[\"fixed\",\"auto\"]},\"EVKmzTtel\":{\"layout\":[\"fixed\",\"auto\"]},\"iCEXylaOs\":{\"layout\":[\"fixed\",\"auto\"]},\"Zct3Tv7Z7\":{\"layout\":[\"fixed\",\"auto\"]},\"fS2KsAvbE\":{\"layout\":[\"fixed\",\"auto\"]},\"OdFtpJspK\":{\"layout\":[\"fixed\",\"auto\"]},\"ygsG7B2Ny\":{\"layout\":[\"fixed\",\"auto\"]},\"oW1DZ39Eg\":{\"layout\":[\"fixed\",\"auto\"]},\"iipOKvIYh\":{\"layout\":[\"fixed\",\"auto\"]},\"TT7lFwi92\":{\"layout\":[\"fixed\",\"auto\"]},\"hYECeWtKW\":{\"layout\":[\"fixed\",\"auto\"]},\"Q3ty68KRx\":{\"layout\":[\"fixed\",\"auto\"]},\"seIyEfISJ\":{\"layout\":[\"fixed\",\"auto\"]},\"R6yW5o_KM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwlxpCGdQK=withCSS(Component,css,\"framer-ar3NJ\");export default FramerwlxpCGdQK;FramerwlxpCGdQK.displayName=\"question1\";FramerwlxpCGdQK.defaultProps={height:218,width:1200};addPropertyControls(FramerwlxpCGdQK,{variant:{options:[\"WEaSOF9FT\",\"IzmRoYf60\",\"uaaQWxaoz\",\"ijkbZexcq\",\"qmu6W_xYJ\",\"w83M5IIkb\",\"I3Oku8oEV\",\"zWodyEXVQ\",\"nVDyVYVPC\",\"rujxVeHvT\",\"lOaYXf1bL\",\"pnxshHyXy\",\"YaLZPBEbU\",\"biyaR9rzM\",\"FTT8BNG5w\",\"mWLnUpfHe\",\"YmelYFnYb\",\"iH2R9ZwrK\",\"L8VsRCmeb\",\"VpXqTB4C0\",\"VfCv_QOpS\",\"W5PH2dNOj\",\"FeMCjq_3L\",\"EVKmzTtel\",\"iCEXylaOs\",\"Zct3Tv7Z7\",\"fS2KsAvbE\",\"OdFtpJspK\",\"ygsG7B2Ny\",\"oW1DZ39Eg\",\"iipOKvIYh\",\"TT7lFwi92\",\"hYECeWtKW\",\"Q3ty68KRx\",\"seIyEfISJ\",\"R6yW5o_KM\"],optionTitles:[\"question1open\",\"q1\",\"q1phoneopen\",\"q1phone\",\"q1tabletopen\",\"q1tablet\",\"q2\",\"q2phoneopen\",\"q2phone\",\"q2tabletopen\",\"q2tablet\",\"q2open\",\"q3\",\"q3phoneopen\",\"q3phone\",\"q3tabletopen\",\"q3tablet\",\"q3open\",\"q4\",\"q4phoneopen\",\"q4phone\",\"q4tabletopen\",\"q4tablet\",\"q4open\",\"q5\",\"q5phoneopen\",\"q5phone\",\"q5tabletopen\",\"q5tablet\",\"q5open\",\"q5\",\"q5phoneopen\",\"q5phone\",\"q5tabletopen\",\"q5tablet\",\"q5open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerwlxpCGdQK,[{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwlxpCGdQK\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"218\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IzmRoYf60\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uaaQWxaoz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ijkbZexcq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qmu6W_xYJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w83M5IIkb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I3Oku8oEV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zWodyEXVQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nVDyVYVPC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rujxVeHvT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lOaYXf1bL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pnxshHyXy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YaLZPBEbU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"biyaR9rzM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FTT8BNG5w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mWLnUpfHe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YmelYFnYb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iH2R9ZwrK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L8VsRCmeb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VpXqTB4C0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VfCv_QOpS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W5PH2dNOj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FeMCjq_3L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EVKmzTtel\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iCEXylaOs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zct3Tv7Z7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fS2KsAvbE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OdFtpJspK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ygsG7B2Ny\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oW1DZ39Eg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iipOKvIYh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TT7lFwi92\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hYECeWtKW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Q3ty68KRx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"seIyEfISJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R6yW5o_KM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wlxpCGdQK.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Question1 from\"#framer/local/canvasComponent/wlxpCGdQK/wlxpCGdQK.js\";import metadataProvider from\"#framer/local/webPageMetadata/zRaZuUqVa/zRaZuUqVa.js\";const TickerFonts=getFonts(Ticker);const SlideshowFonts=getFonts(Slideshow);const Question1Fonts=getFonts(Question1);const breakpoints={BEqaH8TIb:\"(min-width: 1440px)\",UBimYW7cG:\"(min-width: 810px) and (max-width: 1439px)\",yQFoMl4v5:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-rdRAF\";const variantClassNames={BEqaH8TIb:\"framer-v-6nw8ye\",UBimYW7cG:\"framer-v-1fd5piu\",yQFoMl4v5:\"framer-v-ne0j4j\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"BEqaH8TIb\",Phone:\"yQFoMl4v5\",Tablet:\"UBimYW7cG\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"BEqaH8TIb\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-rdRAF`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-rdRAF`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"yQFoMl4v5\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"UBimYW7cG\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"UBimYW7cG\",\"yQFoMl4v5\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"BEqaH8TIb\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-6nw8ye\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-htdft3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z9pwm\",\"data-framer-name\":\"Top Menu\",name:\"Top Menu\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"ZbtGxHKO1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(15.630434782608695),pixelHeight:651,pixelWidth:1179,sizes:\"125px\",src:\"https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png\",srcSet:\"https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png?scale-down-to=512 512w,https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png 1179w\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(28.304347826086957),pixelHeight:651,pixelWidth:1179,sizes:\"100px\",src:\"https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png\",srcSet:\"https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png?scale-down-to=512 512w,https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png 1179w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(22),pixelHeight:651,pixelWidth:1179,sizes:\"155px\",src:\"https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png\",srcSet:\"https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png?scale-down-to=512 512w,https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x6omVkYbIi7Q74M9p0fui90no.png 1179w\"},className:\"framer-13qnp8t framer-15p6hxb\",\"data-framer-name\":\"Bright view logo 1\",name:\"Bright view logo 1\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tv8u1q\",\"data-framer-name\":\"Frame 832\",name:\"Frame 832\",children:[/*#__PURE__*/_jsx(Link,{href:\"tel:+12405997793\",nodeId:\"QIWklLjEV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:374,loading:getLoadingLazyAtYPosition(39.5),pixelHeight:96,pixelWidth:748,src:\"https://framerusercontent.com/images/E29rPvOhKB0vkaj2baBsDoQE8Q.png\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:374,loading:getLoadingLazyAtYPosition(15.299465240641709),pixelHeight:96,pixelWidth:748,src:\"https://framerusercontent.com/images/E29rPvOhKB0vkaj2baBsDoQE8Q.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:374,loading:getLoadingLazyAtYPosition(54.5),pixelHeight:96,pixelWidth:748,src:\"https://framerusercontent.com/images/E29rPvOhKB0vkaj2baBsDoQE8Q.png\"},className:\"framer-kfe60d framer-15p6hxb\",\"data-framer-name\":\"Frame_861\",name:\"Frame_861\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XJQnsKNAR\"},nodeId:\"c1RngUZEw\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1asf2g6 framer-15p6hxb\",\"data-framer-name\":\"Group 2\",name:\"Group 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2zi2q6\",\"data-framer-name\":\"Rectangle 2\",name:\"Rectangle 2\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{transformTemplate:transformTemplate1},yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Free Estimate Today\"})}),transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Free Estimate Today\"})}),className:\"framer-10ie2ye\",\"data-framer-name\":\"Get My Free Estimate\",fonts:[\"Inter-Bold\"],name:\"Get My Free Estimate\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:4320,loading:getLoadingLazyAtYPosition(108),pixelHeight:2943,pixelWidth:4320,src:\"https://framerusercontent.com/images/LlMQ7kt21YrNxlGzU6el6plVDEE.jpg\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:4320,loading:getLoadingLazyAtYPosition(119),pixelHeight:2943,pixelWidth:4320,src:\"https://framerusercontent.com/images/LlMQ7kt21YrNxlGzU6el6plVDEE.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:4320,loading:getLoadingLazyAtYPosition(131),pixelHeight:2943,pixelWidth:4320,src:\"https://framerusercontent.com/images/LlMQ7kt21YrNxlGzU6el6plVDEE.jpg\"},className:\"framer-mkqbjb\",\"data-framer-name\":\"Landing Image\",name:\"Landing Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y5fyts\",\"data-framer-name\":\"Rectangle 84\",name:\"Rectangle 84\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pnpl2f\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-deuctb\",\"data-framer-name\":\"Rectangle 74\",name:\"Rectangle 74\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XJQnsKNAR\"},nodeId:\"xwl_9OAHq\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1efeq1f framer-15p6hxb\",\"data-framer-name\":\"Group 8\",name:\"Group 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7letku\",\"data-border\":true,\"data-framer-name\":\"Rectangle 10\",name:\"Rectangle 10\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{transformTemplate:transformTemplate1},yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Get free estimate today\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Get free estimate today\"})}),className:\"framer-1lgfazi\",\"data-framer-name\":\"Get free estimate today\",fonts:[\"Inter-Bold\"],name:\"Get free estimate today\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jmcihr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15k6kf1\",\"data-framer-name\":\"Group 822\",name:\"Group 822\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5x8359\",\"data-framer-name\":\"Group 832\",name:\"Group 832\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nl7hrt\",\"data-framer-name\":\"Rectangle 10\",name:\"Rectangle 10\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"47.42px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"45\"})}),className:\"framer-1rixjqf\",\"data-framer-name\":\"45\",fonts:[\"Inter-SemiBold\"],name:\"45\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13.75px\",\"--framer-line-height\":\"91%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Years of Combined\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13.75px\",\"--framer-line-height\":\"91%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Experience\"})]}),className:\"framer-tysbvt\",\"data-framer-name\":\"Years of Combined Experience\",fonts:[\"Inter\"],name:\"Years of Combined Experience\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22.25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"+\"})}),className:\"framer-n99v3w\",\"data-framer-name\":\"+\",fonts:[\"Inter-SemiBold\"],name:\"+\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rh148y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-onf64c\",\"data-framer-name\":\"Frame 844\",name:\"Frame 844\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(216, 104, 100)\",\"--framer-text-transform\":\"capitalize\"},children:\"4.8 \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(216, 104, 100)\",\"--framer-text-transform\":\"capitalize\"},children:\"4.8 \"})}),className:\"framer-8md16n\",\"data-framer-name\":\"4.8\",fonts:[\"Inter-SemiBold\"],name:\"4.8\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"customer \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"satisfaction\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"customer \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"satisfaction\"})]}),className:\"framer-qek2um\",\"data-framer-name\":\"customer satisfaction\",fonts:[\"Inter-SemiBold\"],name:\"customer satisfaction\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nzulhm\",\"data-framer-name\":\"Vector 377\",layout:\"position\",name:\"Vector 377\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5 51\"><path d=\"M 2.5 1.308 L 2.5 49.038\" fill=\"transparent\" stroke-width=\"1.31\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9159374478,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wtr6k6\",\"data-framer-name\":\"Frame 845\",name:\"Frame 845\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Over +100 reviews\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Over +100 reviews\"})}),className:\"framer-dc66gi\",\"data-framer-name\":\"Over +100 reviews\",fonts:[\"Inter-SemiBold\"],name:\"Over +100 reviews\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kzskne\",\"data-framer-name\":\"Frame 834\",layout:\"position\",name:\"Frame 834\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"rgb(251,188,5)\"></path><path d=\"M 38 0 L 40.245 6.91 L 47.511 6.91 L 41.633 11.18 L 43.878 18.09 L 38 13.82 L 32.122 18.09 L 34.367 11.18 L 28.489 6.91 L 35.755 6.91 Z\" fill=\"rgb(246,187,6)\"></path><path d=\"M 66 0 L 68.245 6.91 L 75.511 6.91 L 69.633 11.18 L 71.878 18.09 L 66 13.82 L 60.122 18.09 L 62.367 11.18 L 56.489 6.91 L 63.755 6.91 Z\" fill=\"rgb(246,187,6)\"></path><path d=\"M 94 0 L 96.245 6.91 L 103.511 6.91 L 97.633 11.18 L 99.878 18.09 L 94 13.82 L 88.122 18.09 L 90.367 11.18 L 84.489 6.91 L 91.755 6.91 Z\" fill=\"rgb(246,187,6)\"></path><g><defs><linearGradient id=\"idss11662791019_5g888221968\" x1=\"0.4993598726362838\" x2=\"0.49945655432621217\" y1=\"0.3713343998930408\" y2=\"0.39076741956865624\"><stop offset=\"0\" stop-color=\"rgb(156,156,156)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(246,187,6)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 122 0 L 119.755 6.91 L 112.489 6.91 L 118.367 11.18 L 116.122 18.09 L 122 13.82 L 127.878 18.09 L 125.633 11.18 L 131.511 6.91 L 124.245 6.91 Z\" fill=\"url(#idss11662791019_5g888221968)\"></path></g></svg>',svgContentId:11662791019,withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-hqnfwj hidden-ne0j4j\",\"data-framer-name\":\"Vector 377\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:4,name:\"Vector 377\",svg:'<svg width=\"4\" height=\"39\" viewBox=\"-1 -1 4 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0V36.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j3g4zz\",\"data-framer-name\":\"Frame 843\",name:\"Frame 843\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Where sustainability meets affordability\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Where sustainability meets affordability\"})}),className:\"framer-h3octk\",\"data-framer-name\":\"Make the most out of your money\",fonts:[\"Inter-SemiBold\"],name:\"Make the most out of your money\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Save \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(255, 87, 82)\"},children:\"50%\"}),\" on Installation\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\" when you reach out today\"})]})},yQFoMl4v5:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Save \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(255, 87, 82)\"},children:\"50%\"}),\" on Installation\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\" when you reach out today\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"83px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Save \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(255, 87, 82)\"},children:\"50%\"}),\" on Installation\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"83px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\" when you reach out today\"})]}),className:\"framer-tuzs9\",\"data-framer-name\":\"Save 50% on Installation when you reach out today\",fonts:[\"Inter-Bold\",\"Inter-BoldItalic\"],name:\"Save 50% on Installation when you reach out today\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bright View Exteriors are your trusted neighborhood roofing experts!\"})})},yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bright View Exteriors are your trusted neighborhood roofing experts!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bright View Exteriors are your trusted neighborhood roofing experts!\"})}),className:\"framer-110lz2v\",\"data-framer-name\":\"Bright View Exteriors are your trusted neighborhood roofing experts!\",fonts:[\"Inter-Medium\"],name:\"Bright View Exteriors are your trusted neighborhood roofing experts!\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ugt2l7\",\"data-framer-name\":\"Frame 839\",name:\"Frame 839\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1097.9070796460178),sizes:\"200px\",src:\"https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png\",srcSet:\"https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png 1188w\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1214.703539823009),sizes:\"100px\",src:\"https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png\",srcSet:\"https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png 1188w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(868.5),sizes:\"226px\",src:\"https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png\",srcSet:\"https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C6c9edzHYGT0PUuXcng2uabBHGU.png 1188w\"},className:\"framer-t71orh\",\"data-framer-name\":\"Screen Shot 2024-03-20 at 9.57 1\",name:\"Screen Shot 2024-03-20 at 9.57 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1083.125),sizes:\"320px\",src:\"https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png\",srcSet:\"https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png?scale-down-to=512 512w,https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png 1280w\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1217.8828125),sizes:\"100px\",src:\"https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png\",srcSet:\"https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png?scale-down-to=512 512w,https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(859.125),sizes:\"320px\",src:\"https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png\",srcSet:\"https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png?scale-down-to=512 512w,https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/arG58f1cY6pv5HKBIzKCN3ENy0.png 1280w\"},className:\"framer-plxd28\",\"data-framer-name\":\"Boral steel logo white font  1\",name:\"Boral steel logo white font  1\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kw8m6x\",\"data-framer-name\":\"Roofing you can trust\",name:\"Roofing you can trust\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4b2u0i\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2619),src:\"https://framerusercontent.com/images/VblkVcjHdxUGEbXDCV768EDRbg.png\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2691.5),src:\"https://framerusercontent.com/images/VblkVcjHdxUGEbXDCV768EDRbg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1008),src:\"https://framerusercontent.com/images/VblkVcjHdxUGEbXDCV768EDRbg.png\"},className:\"framer-1hj7gm5\",\"data-framer-name\":\"Screen Shot 2024-05-20 at 4.55 2\",name:\"Screen Shot 2024-05-20 at 4.55 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:736,intrinsicWidth:736,loading:getLoadingLazyAtYPosition(3163),pixelHeight:736,pixelWidth:736,src:\"https://framerusercontent.com/images/lomCthxzvzJMXCCrcIqVfAcKQo.jpeg\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:736,intrinsicWidth:736,loading:getLoadingLazyAtYPosition(3235.5),pixelHeight:736,pixelWidth:736,src:\"https://framerusercontent.com/images/lomCthxzvzJMXCCrcIqVfAcKQo.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:736,intrinsicWidth:736,loading:getLoadingLazyAtYPosition(1552),pixelHeight:736,pixelWidth:736,src:\"https://framerusercontent.com/images/lomCthxzvzJMXCCrcIqVfAcKQo.jpeg\"},className:\"framer-1fmy5fe\",\"data-framer-name\":\"Rectangle 8\",name:\"Rectangle 8\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a3e87l\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nv368t\",\"data-framer-name\":\"Vector 363\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:573,name:\"Vector 363\",svg:'<svg width=\"573\" height=\"8\" viewBox=\"-2 -2 573 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 2H569\" stroke=\"#D9D9D9\" stroke-width=\"4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16g691v\",\"data-framer-name\":\"Group 9\",name:\"Group 9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{href:\"https://form.jotform.com/241227411150138\"}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XJQnsKNAR\"},nodeId:\"AKnbxBphI\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-14833fb framer-15p6hxb\",\"data-framer-name\":\"Rectangle 10\",name:\"Rectangle 10\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Get free estimate today\"})}),transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Get free estimate today\"})}),className:\"framer-1v6gwsl\",\"data-framer-name\":\"Get free estimate today\",fonts:[\"Inter-Bold\"],name:\"Get free estimate today\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bpqiiz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14l7e25\",\"data-framer-name\":\"Frame 849\",name:\"Frame 849\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(216, 104, 100)\",\"--framer-text-transform\":\"uppercase\"},children:\"Roofing you can trust\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(216, 104, 100)\",\"--framer-text-transform\":\"uppercase\"},children:\"Roofing you can trust\"})}),className:\"framer-7d5h2w\",\"data-framer-name\":\"Roofing you can trust\",fonts:[\"Inter-SemiBold\"],name:\"Roofing you can trust\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Real Results, Trusted Professionals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\"},children:\"Real Results, Trusted Professionals\"})}),className:\"framer-1e8gm7s\",\"data-framer-name\":\"Real results, Trusted Professionals\",fonts:[\"Inter-Bold\"],name:\"Real results, Trusted Professionals\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\"},children:[\"Whether you have a leak, visible damage, or maybe your roofing system is just getting older, we are here to help - More than \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(216, 104, 100)\"},children:\"1,000\"}),\" clients serviced!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\"},children:[\"Whether you have a leak, visible damage, or maybe your roofing system is just getting older, we are here to help - More than \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(216, 104, 100)\"},children:\"1,000\"}),\" clients serviced!\"]})}),className:\"framer-vb961k\",\"data-framer-name\":\"Whether you have a leak, visible damage, or maybe your roofing system is just getting older, we are here to help - More than 1,000 clients serviced!.\",fonts:[\"Inter-SemiBold\"],name:\"Whether you have a leak, visible damage, or maybe your roofing system is just getting older, we are here to help - More than 1,000 clients serviced!.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:736,intrinsicWidth:736,loading:getLoadingLazyAtYPosition(1642),pixelHeight:736,pixelWidth:736,src:\"https://framerusercontent.com/images/LfG54pWvezTCaRQUQ3xrS0DNH8s.jpeg\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:736,intrinsicWidth:736,loading:getLoadingLazyAtYPosition(1609),pixelHeight:736,pixelWidth:736,src:\"https://framerusercontent.com/images/LfG54pWvezTCaRQUQ3xrS0DNH8s.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:736,intrinsicWidth:736,loading:getLoadingLazyAtYPosition(1400),pixelHeight:736,pixelWidth:736,src:\"https://framerusercontent.com/images/LfG54pWvezTCaRQUQ3xrS0DNH8s.jpeg\"},className:\"framer-py2mwm\",\"data-framer-name\":\"Rectangle 8\",name:\"Rectangle 8\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2172),src:\"https://framerusercontent.com/images/Q21t0Qco1QIaMDNw34cA4vXrFQ.png\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2139),src:\"https://framerusercontent.com/images/Q21t0Qco1QIaMDNw34cA4vXrFQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1930),src:\"https://framerusercontent.com/images/Q21t0Qco1QIaMDNw34cA4vXrFQ.png\"},className:\"framer-155k5a4\",\"data-framer-name\":\"Screen Shot 2024-05-20 at 4.55 1\",name:\"Screen Shot 2024-05-20 at 4.55 1\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m3eqwp\",\"data-framer-name\":\"Frame 33\",name:\"Frame 33\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19pvgb\",\"data-framer-name\":\"Rectangle 25\",name:\"Rectangle 25\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18bzui1\",\"data-framer-name\":\"Frame 851\",name:\"Frame 851\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6t68ah\",\"data-framer-name\":\"Frame 850\",name:\"Frame 850\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bpiz69\",\"data-framer-name\":\"Frame 11\",name:\"Frame 11\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Hear from our Satisfied Clients!\"})})},yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Hear from our Satisfied Clients!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Hear from our Satisfied Clients!\"})}),className:\"framer-i9tdmr\",\"data-framer-name\":\"Hear from our Satisfied Clients!\",fonts:[\"Inter-SemiBold\"],name:\"Hear from our Satisfied Clients!\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lfrcy1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12daxnx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(216, 104, 100)\",\"--framer-text-transform\":\"capitalize\"},children:\"4.8 \"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(216, 104, 100)\",\"--framer-text-transform\":\"capitalize\"},children:\"4.8 \"})}),className:\"framer-77pfbl\",\"data-framer-name\":\"4.8\",fonts:[\"Inter-SemiBold\"],name:\"4.8\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"customer \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"satisfaction\"})]}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"customer \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"satisfaction\"})]}),className:\"framer-1twbdcp\",\"data-framer-name\":\"customer satisfaction\",fonts:[\"Inter-SemiBold\"],name:\"customer satisfaction\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3r3v6r\",\"data-framer-name\":\"Vector 377\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:4,name:\"Vector 377\",svg:'<svg width=\"4\" height=\"39\" viewBox=\"-1 -1 4 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.5V37\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-apjvrz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Over +100 reviews\"})}),className:\"framer-huqf84\",\"data-framer-name\":\"Over +100 reviews\",fonts:[\"Inter-SemiBold\"],name:\"Over +100 reviews\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17wy4sg\",\"data-framer-name\":\"Frame 834\",layout:\"position\",name:\"Frame 834\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 133 20\"><path d=\"M 10.5 0 L 12.745 6.91 L 20.011 6.91 L 14.133 11.18 L 16.378 18.09 L 10.5 13.82 L 4.622 18.09 L 6.867 11.18 L 0.989 6.91 L 8.255 6.91 Z\" fill=\"rgb(251,188,5)\"></path><path d=\"M 38.5 0 L 40.745 6.91 L 48.011 6.91 L 42.133 11.18 L 44.378 18.09 L 38.5 13.82 L 32.622 18.09 L 34.867 11.18 L 28.989 6.91 L 36.255 6.91 Z\" fill=\"rgb(246,187,6)\"></path><path d=\"M 66.5 0 L 68.745 6.91 L 76.011 6.91 L 70.133 11.18 L 72.378 18.09 L 66.5 13.82 L 60.622 18.09 L 62.867 11.18 L 56.989 6.91 L 64.255 6.91 Z\" fill=\"rgb(246,187,6)\"></path><path d=\"M 94.5 0 L 96.745 6.91 L 104.011 6.91 L 98.133 11.18 L 100.378 18.09 L 94.5 13.82 L 88.622 18.09 L 90.867 11.18 L 84.989 6.91 L 92.255 6.91 Z\" fill=\"rgb(246,187,6)\"></path><g><defs><radialGradient id=\"idss8717641830_5g888222115\" cy=\"0.11055709721285559\" cx=\"6.439911681211232\" r=\"1.1055709721285558\" gradientTransform=\"translate(6.439911681211232, 0.11055709721285559) scale(1 1) translate(-6.439911681211232, -0.11055709721285559)\"><stop offset=\"0\" stop-color=\"rgb(246,187,6)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(156,156,156)\" stop-opacity=\"1\"></stop></radialGradient></defs><path d=\"M 122.5 0 L 124.745 6.91 L 132.011 6.91 L 126.133 11.18 L 128.378 18.09 L 122.5 13.82 L 116.622 18.09 L 118.867 11.18 L 112.989 6.91 L 120.255 6.91 Z\" fill=\"url(#idss8717641830_5g888222115)\"></path></g><g><defs><linearGradient id=\"idss8717641830_6g888221968\" x1=\"0.4993598726362838\" x2=\"0.49945655432621217\" y1=\"0.3713343998930408\" y2=\"0.39076741956865624\"><stop offset=\"0\" stop-color=\"rgb(156,156,156)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(246,187,6)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 122.489 0 L 120.244 6.91 L 112.978 6.91 L 118.856 11.18 L 116.611 18.09 L 122.489 13.82 L 128.367 18.09 L 126.122 11.18 L 132 6.91 L 124.734 6.91 Z\" fill=\"url(#idss8717641830_6g888221968)\"></path></g></svg>',svgContentId:8717641830,withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g1sb73-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"UIlMXlEmV\",layoutId:\"UIlMXlEmV\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wcbfsv\",\"data-framer-name\":\"dennis\",name:\"dennis\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pgh4a6\",\"data-framer-name\":\"Ellipse 2\",name:\"Ellipse 2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iyzxad\",\"data-framer-name\":\"Group 789\",name:\"Group 789\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19.04px\",\"--framer-line-height\":\"27.98px\"},children:\"Very professional team. 100% would\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19.04px\",\"--framer-line-height\":\"27.98px\"},children:\"recommend to anybody in need of some roof fixing or replacing.\"})]}),className:\"framer-ybdv3h\",\"data-framer-name\":\"Quote \u2192 great ecosystem to help you ship fullstack\",fonts:[\"GF;Open Sans-regular\"],name:\"Quote \u2192 great ecosystem to help you ship fullstack\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"16.32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"23.32px\"},children:\"Dennis Reyes\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"16.32px\",\"--framer-line-height\":\"23.32px\"},children:\"November 15, 2022\"})]}),className:\"framer-1mjpwkq\",\"data-framer-name\":\"Dennis Reyes November 15, 2022\",fonts:[\"GF;DM Sans-700\",\"GF;DM Sans-regular\"],name:\"Dennis Reyes November 15, 2022\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZmlzgfvmPYAstUj6bU1p86HU.png\"},className:\"framer-1qkw4p1\",\"data-framer-name\":\"ACNPEu87bZ9zxc6TnKY0EzXlZv-_SYLLurt1oKqhoDmOwA=s120-c-c-rp-w64-h64-mo-br100\",name:\"ACNPEu87bZ9zxc6TnKY0EzXlZv-_SYLLurt1oKqhoDmOwA=s120-c-c-rp-w64-h64-mo-br100\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-41p95m\",\"data-framer-name\":\"::after\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:19,name:\"::after\",svg:'<svg width=\"19\" height=\"20\" viewBox=\"0 0 19 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_199)\">\\n<rect x=\"0.0703125\" y=\"0.552002\" width=\"18.7563\" height=\"18.7563\" rx=\"9.37813\" fill=\"white\"/>\\n<g clip-path=\"url(#clip1_315_199)\">\\n<mask id=\"mask0_315_199\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"2\" width=\"15\" height=\"16\">\\n<path d=\"M16.2299 8.60702H9.4518V11.4175H13.3533C12.9896 13.2029 11.4687 14.2279 9.4518 14.2279C7.07119 14.2279 5.15349 12.3102 5.15349 9.92958C5.15349 7.54898 7.07119 5.63127 9.4518 5.63127C10.4768 5.63127 11.4026 5.99497 12.13 6.59012L14.2461 4.47403C12.9566 3.34986 11.3034 2.65552 9.4518 2.65552C5.418 2.65552 2.17773 5.89578 2.17773 9.92958C2.17773 13.9634 5.418 17.2036 9.4518 17.2036C13.0888 17.2036 16.3952 14.5585 16.3952 9.92958C16.3952 9.49975 16.3291 9.03685 16.2299 8.60702Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_199)\">\\n<path d=\"M1.51758 14.228V5.63135L7.13844 9.92966L1.51758 14.228Z\" fill=\"#FBBC05\"/>\\n</g>\\n<mask id=\"mask1_315_199\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"2\" width=\"15\" height=\"16\">\\n<path d=\"M16.2299 8.60702H9.4518V11.4175H13.3533C12.9896 13.2029 11.4687 14.2279 9.4518 14.2279C7.07119 14.2279 5.15349 12.3102 5.15349 9.92958C5.15349 7.54898 7.07119 5.63127 9.4518 5.63127C10.4768 5.63127 11.4026 5.99497 12.13 6.59012L14.2461 4.47403C12.9566 3.34986 11.3034 2.65552 9.4518 2.65552C5.418 2.65552 2.17773 5.89578 2.17773 9.92958C2.17773 13.9634 5.418 17.2036 9.4518 17.2036C13.0888 17.2036 16.3952 14.5585 16.3952 9.92958C16.3952 9.49975 16.3291 9.03685 16.2299 8.60702Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_315_199)\">\\n<path d=\"M1.51758 5.63141L7.13844 9.92972L9.45292 7.91282L17.3883 6.62333V1.99438H1.51758V5.63141Z\" fill=\"#EA4335\"/>\\n</g>\\n<mask id=\"mask2_315_199\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"2\" width=\"15\" height=\"16\">\\n<path d=\"M16.2299 8.60702H9.4518V11.4175H13.3533C12.9896 13.2029 11.4687 14.2279 9.4518 14.2279C7.07119 14.2279 5.15349 12.3102 5.15349 9.92958C5.15349 7.54898 7.07119 5.63127 9.4518 5.63127C10.4768 5.63127 11.4026 5.99497 12.13 6.59012L14.2461 4.47403C12.9566 3.34986 11.3034 2.65552 9.4518 2.65552C5.418 2.65552 2.17773 5.89578 2.17773 9.92958C2.17773 13.9634 5.418 17.2036 9.4518 17.2036C13.0888 17.2036 16.3952 14.5585 16.3952 9.92958C16.3952 9.49975 16.3291 9.03685 16.2299 8.60702Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_315_199)\">\\n<path d=\"M1.51758 14.228L11.4368 6.62333L14.0488 6.95397L17.3883 1.99438V17.8651H1.51758V14.228Z\" fill=\"#34A853\"/>\\n</g>\\n<mask id=\"mask3_315_199\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"2\" width=\"15\" height=\"16\">\\n<path d=\"M16.2299 8.60702H9.4518V11.4175H13.3533C12.9896 13.2029 11.4687 14.2279 9.4518 14.2279C7.07119 14.2279 5.15349 12.3102 5.15349 9.92958C5.15349 7.54898 7.07119 5.63127 9.4518 5.63127C10.4768 5.63127 11.4026 5.99497 12.13 6.59012L14.2461 4.47403C12.9566 3.34986 11.3034 2.65552 9.4518 2.65552C5.418 2.65552 2.17773 5.89578 2.17773 9.92958C2.17773 13.9634 5.418 17.2036 9.4518 17.2036C13.0888 17.2036 16.3952 14.5585 16.3952 9.92958C16.3952 9.49975 16.3291 9.03685 16.2299 8.60702Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask3_315_199)\">\\n<path d=\"M17.3868 17.865L7.13701 9.92966L5.81445 8.93774L17.3868 5.63135V17.865Z\" fill=\"#4285F4\"/>\\n</g>\\n</g>\\n</g>\\n<rect x=\"0.791707\" y=\"1.2734\" width=\"17.3135\" height=\"17.3135\" rx=\"8.65673\" stroke=\"white\" stroke-width=\"1.44279\"/>\\n<defs>\\n<clipPath id=\"clip0_315_199\">\\n<rect x=\"0.0703125\" y=\"0.552002\" width=\"18.7563\" height=\"18.7563\" rx=\"9.37813\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_199\">\\n<rect width=\"15.8707\" height=\"15.8707\" fill=\"white\" transform=\"translate(1.51562 1.99438)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18ybn5m\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"span.ti-star\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_218)\">\\n<g clip-path=\"url(#clip1_315_218)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.61999 1.04059C9.75998 0.608626 10.1626 0.31665 10.6159 0.31665C11.0692 0.31665 11.4705 0.608626 11.6105 1.04059L13.3664 6.45081C13.4184 6.60947 13.5197 6.74812 13.6543 6.84678C13.7903 6.94544 13.9543 6.99878 14.121 6.99878L19.8099 6.9961C20.2632 6.9961 20.6645 7.28807 20.8045 7.72004C20.9444 8.15067 20.7911 8.62265 20.4245 8.8893L15.8222 12.2317C15.6862 12.3303 15.5848 12.469 15.5329 12.6277C15.4809 12.7876 15.4822 12.9596 15.5329 13.1183L17.2927 18.5272C17.4327 18.9592 17.2794 19.4311 16.9127 19.6978C16.5461 19.9644 16.0488 19.9644 15.6822 19.6978L11.0826 16.3527C10.9466 16.254 10.7839 16.2007 10.6159 16.2007C10.4479 16.2007 10.2853 16.254 10.1493 16.3527L5.54833 19.6978C5.18169 19.9644 4.68569 19.9644 4.31905 19.6978C3.95108 19.4311 3.7978 18.9592 3.93912 18.5272L5.69765 13.1183C5.74964 12.9596 5.74964 12.7876 5.69765 12.6277C5.64698 12.469 5.54565 12.3303 5.40967 12.2317L0.807366 8.8893C0.440728 8.62265 0.286059 8.15067 0.426048 7.72004C0.567371 7.28807 0.968685 6.9961 1.42198 6.9961L7.10952 6.99878C7.27751 6.99878 7.44151 6.94544 7.57616 6.84678C7.71215 6.74812 7.81348 6.60947 7.86414 6.45081L9.61999 1.04059Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_218\">\\n<rect width=\"20.986\" height=\"20.986\" fill=\"white\" transform=\"translate(0.376953 0.317383)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_218\">\\n<rect width=\"20.986\" height=\"19.6744\" fill=\"white\" transform=\"translate(0.376953 0.317383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qqnfez\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"span.ti-star\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_224)\">\\n<g clip-path=\"url(#clip1_315_224)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.77233 1.04059C9.91232 0.608626 10.315 0.31665 10.7683 0.31665C11.2216 0.31665 11.6229 0.608626 11.7629 1.04059L13.5187 6.45081C13.5707 6.60947 13.672 6.74812 13.8067 6.84678C13.9427 6.94544 14.1067 6.99878 14.2733 6.99878L19.9622 6.9961C20.4155 6.9961 20.8168 7.28807 20.9568 7.72004C21.0968 8.15067 20.9435 8.62265 20.5768 8.8893L15.9745 12.2317C15.8385 12.3303 15.7372 12.469 15.6852 12.6277C15.6332 12.7876 15.6345 12.9596 15.6852 13.1183L17.4451 18.5272C17.5851 18.9592 17.4317 19.4311 17.0651 19.6978C16.6985 19.9644 16.2012 19.9644 15.8345 19.6978L11.2349 16.3527C11.0989 16.254 10.9363 16.2007 10.7683 16.2007C10.6003 16.2007 10.4376 16.254 10.3016 16.3527L5.70067 19.6978C5.33403 19.9644 4.83803 19.9644 4.4714 19.6978C4.10343 19.4311 3.95014 18.9592 4.09146 18.5272L5.84999 13.1183C5.90199 12.9596 5.90199 12.7876 5.84999 12.6277C5.79933 12.469 5.698 12.3303 5.56201 12.2317L0.95971 8.8893C0.593072 8.62265 0.438403 8.15067 0.578392 7.72004C0.719714 7.28807 1.12103 6.9961 1.57433 6.9961L7.26187 6.99878C7.42985 6.99878 7.59385 6.94544 7.72851 6.84678C7.86449 6.74812 7.96582 6.60947 8.01649 6.45081L9.77233 1.04059Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_224\">\\n<rect width=\"20.986\" height=\"20.986\" fill=\"white\" transform=\"translate(0.527344 0.317383)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_224\">\\n<rect width=\"20.986\" height=\"19.6744\" fill=\"white\" transform=\"translate(0.527344 0.317383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12won3k\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"span.ti-star\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_230)\">\\n<g clip-path=\"url(#clip1_315_230)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.92467 1.04132C10.0647 0.609359 10.4673 0.317383 10.9206 0.317383C11.3739 0.317383 11.7752 0.609359 11.9152 1.04132L13.671 6.45154C13.723 6.6102 13.8244 6.74885 13.959 6.84751C14.095 6.94617 14.259 6.99952 14.4257 6.99952L20.1145 6.99683C20.5678 6.99683 20.9692 7.28881 21.1091 7.72077C21.2491 8.15141 21.0958 8.62339 20.7292 8.89003L16.1269 12.2324C15.9909 12.3311 15.8895 12.4697 15.8375 12.6284C15.7855 12.7884 15.7869 12.9604 15.8375 13.119L17.5974 18.5279C17.7374 18.9599 17.5841 19.4319 17.2174 19.6985C16.8508 19.9652 16.3535 19.9652 15.9869 19.6985L11.3872 16.3534C11.2513 16.2548 11.0886 16.2015 10.9206 16.2015C10.7526 16.2015 10.59 16.2548 10.454 16.3534L5.85301 19.6985C5.48638 19.9652 4.99038 19.9652 4.62374 19.6985C4.25577 19.4319 4.10248 18.9599 4.24381 18.5279L6.00234 13.119C6.05433 12.9604 6.05433 12.7884 6.00234 12.6284C5.95167 12.4697 5.85034 12.3311 5.71435 12.2324L1.11205 8.89003C0.745416 8.62339 0.590747 8.15141 0.730736 7.72077C0.872058 7.28881 1.27337 6.99683 1.72667 6.99683L7.41421 6.99952C7.5822 6.99952 7.74619 6.94617 7.88085 6.84751C8.01684 6.74885 8.11817 6.6102 8.16883 6.45154L9.92467 1.04132Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_230\">\\n<rect width=\"20.986\" height=\"20.986\" fill=\"white\" transform=\"translate(0.681641 0.317383)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_230\">\\n<rect width=\"20.986\" height=\"19.6744\" fill=\"white\" transform=\"translate(0.681641 0.317383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kcp39j\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"span.ti-star\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_236)\">\\n<g clip-path=\"url(#clip1_315_236)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.0751 1.04035C10.2151 0.608382 10.6177 0.316406 11.071 0.316406C11.5243 0.316406 11.9256 0.608382 12.0656 1.04035L13.8214 6.45057C13.8734 6.60922 13.9748 6.74787 14.1094 6.84653C14.2454 6.94519 14.4094 6.99854 14.5761 6.99854L20.2649 6.99585C20.7182 6.99585 21.1195 7.28783 21.2595 7.7198C21.3995 8.15043 21.2462 8.62241 20.8796 8.88906L16.2773 12.2314C16.1413 12.3301 16.0399 12.4688 15.9879 12.6274C15.9359 12.7874 15.9373 12.9594 15.9879 13.1181L17.7478 18.527C17.8878 18.9589 17.7345 19.4309 17.3678 19.6975C17.0012 19.9642 16.5039 19.9642 16.1373 19.6975L11.5376 16.3525C11.4016 16.2538 11.239 16.2005 11.071 16.2005C10.903 16.2005 10.7404 16.2538 10.6044 16.3525L6.0034 19.6975C5.63677 19.9642 5.14077 19.9642 4.77413 19.6975C4.40616 19.4309 4.25287 18.9589 4.3942 18.527L6.15273 13.1181C6.20472 12.9594 6.20472 12.7874 6.15273 12.6274C6.10206 12.4688 6.00073 12.3301 5.86474 12.2314L1.26244 8.88906C0.895806 8.62241 0.741137 8.15043 0.881126 7.7198C1.02245 7.28783 1.42376 6.99585 1.87706 6.99585L7.5646 6.99854C7.73259 6.99854 7.89658 6.94519 8.03124 6.84653C8.16723 6.74787 8.26856 6.60922 8.31922 6.45057L10.0751 1.04035Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_236\">\\n<rect width=\"20.986\" height=\"20.986\" fill=\"white\" transform=\"translate(0.832031 0.317383)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_236\">\\n<rect width=\"20.986\" height=\"19.6744\" fill=\"white\" transform=\"translate(0.832031 0.317383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jay7ui\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"span.ti-star\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_242)\">\\n<g clip-path=\"url(#clip1_315_242)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.2313 1.0401C10.3713 0.608138 10.774 0.316162 11.2272 0.316162C11.6805 0.316162 12.0819 0.608138 12.2218 1.0401L13.9777 6.45032C14.0297 6.60898 14.131 6.74763 14.2657 6.84629C14.4017 6.94495 14.5657 6.9983 14.7323 6.9983L20.4212 6.99561C20.8745 6.99561 21.2758 7.28759 21.4158 7.71955C21.5558 8.15018 21.4024 8.62217 21.0358 8.88881L16.4335 12.2312C16.2975 12.3299 16.1962 12.4685 16.1442 12.6272C16.0922 12.7872 16.0935 12.9592 16.1442 13.1178L17.9041 18.5267C18.044 18.9587 17.8907 19.4306 17.5241 19.6973C17.1574 19.9639 16.6601 19.9639 16.2935 19.6973L11.6939 16.3522C11.5579 16.2536 11.3952 16.2002 11.2272 16.2002C11.0593 16.2002 10.8966 16.2536 10.7606 16.3522L6.15965 19.6973C5.79302 19.9639 5.29702 19.9639 4.93038 19.6973C4.56241 19.4306 4.40912 18.9587 4.55045 18.5267L6.30898 13.1178C6.36097 12.9592 6.36097 12.7872 6.30898 12.6272C6.25831 12.4685 6.15698 12.3299 6.02099 12.2312L1.41869 8.88881C1.05206 8.62217 0.897387 8.15018 1.03738 7.71955C1.1787 7.28759 1.58001 6.99561 2.03331 6.99561L7.72085 6.9983C7.88884 6.9983 8.05283 6.94495 8.18749 6.84629C8.32348 6.74763 8.42481 6.60898 8.47547 6.45032L10.2313 1.0401Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_242\">\\n<rect width=\"20.986\" height=\"20.986\" fill=\"white\" transform=\"translate(0.986328 0.317383)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_242\">\\n<rect width=\"20.986\" height=\"19.6744\" fill=\"white\" transform=\"translate(0.986328 0.317383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oeku5b\",\"data-framer-name\":\"katherine\",name:\"katherine\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a8b4t4\",\"data-framer-name\":\"Ellipse 3\",name:\"Ellipse 3\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1guwvew\",\"data-framer-name\":\"Group 789\",name:\"Group 789\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17.56px\",\"--framer-line-height\":\"25.8px\"},children:\"I am extremely satisfied with BrightView\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17.56px\",\"--framer-line-height\":\"25.8px\"},children:\"Exteriors. Amazing work! Time efficient,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17.56px\",\"--framer-line-height\":\"25.8px\"},children:\"punctual, and responsive team. They inspected my roof and got it approved...\"})]}),className:\"framer-1w0mawp\",\"data-framer-name\":\"Quote \u2192 great ecosystem to help you ship fullstack\",fonts:[\"GF;Open Sans-regular\"],name:\"Quote \u2192 great ecosystem to help you ship fullstack\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15.05px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21.5px\"},children:\"Katherine Bonilla\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15.05px\",\"--framer-line-height\":\"21.5px\"},children:\"November 10, 2022\"})]}),className:\"framer-qihv9v\",\"data-framer-name\":\"Katherine Bonilla November 10, 2022\",fonts:[\"GF;DM Sans-700\",\"GF;DM Sans-regular\"],name:\"Katherine Bonilla November 10, 2022\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-131gjo8\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_253)\">\\n<g clip-path=\"url(#clip1_315_253)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.78429 0.672164C8.91337 0.273861 9.28464 0.00463867 9.70261 0.00463867C10.1206 0.00463867 10.4906 0.273861 10.6197 0.672164L12.2387 5.66077C12.2867 5.80706 12.3801 5.9349 12.5042 6.02587C12.6296 6.11684 12.7809 6.16603 12.9345 6.16603L18.1801 6.16356C18.598 6.16356 18.9681 6.43278 19.0972 6.83108C19.2262 7.22816 19.0849 7.66336 18.7468 7.90922L14.5031 10.9911C14.3778 11.0821 14.2843 11.21 14.2364 11.3562C14.1884 11.5038 14.1897 11.6624 14.2364 11.8087L15.8591 16.7961C15.9882 17.1944 15.8468 17.6295 15.5087 17.8754C15.1707 18.1213 14.7121 18.1213 14.3741 17.8754L10.1329 14.791C10.0075 14.7 9.85751 14.6509 9.70261 14.6509C9.54772 14.6509 9.39773 14.7 9.27234 14.791L5.02994 17.8754C4.69187 18.1213 4.23453 18.1213 3.89646 17.8754C3.55716 17.6295 3.41582 17.1944 3.54613 16.7961L5.16762 11.8087C5.21556 11.6624 5.21556 11.5038 5.16762 11.3562C5.12091 11.21 5.02747 11.0821 4.90208 10.9911L0.658437 7.90922C0.320372 7.66336 0.177756 7.22816 0.306836 6.83108C0.437145 6.43278 0.807185 6.16356 1.22516 6.16356L6.46947 6.16603C6.62437 6.16603 6.77558 6.11684 6.89974 6.02587C7.02513 5.9349 7.11857 5.80706 7.16528 5.66077L8.78429 0.672164Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_253\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.263672 0.00561523)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_253\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.263672 0.00537109)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7cx88q\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,name:\"span.ti-star\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_259)\">\\n<g clip-path=\"url(#clip1_315_259)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.20812 0.672164C9.3372 0.273861 9.70847 0.00463867 10.1264 0.00463867C10.5444 0.00463867 10.9144 0.273861 11.0435 0.672164L12.6625 5.66077C12.7105 5.80706 12.8039 5.9349 12.9281 6.02587C13.0535 6.11684 13.2047 6.16603 13.3583 6.16603L18.6039 6.16356C19.0219 6.16356 19.3919 6.43278 19.521 6.83108C19.6501 7.22816 19.5087 7.66336 19.1706 7.90922L14.927 10.9911C14.8016 11.0821 14.7081 11.21 14.6602 11.3562C14.6123 11.5038 14.6135 11.6624 14.6602 11.8087L16.2829 16.7961C16.412 17.1944 16.2706 17.6295 15.9326 17.8754C15.5945 18.1213 15.1359 18.1213 14.7979 17.8754L10.5567 14.791C10.4313 14.7 10.2813 14.6509 10.1264 14.6509C9.97155 14.6509 9.82156 14.7 9.69617 14.791L5.45376 17.8754C5.1157 18.1213 4.65835 18.1213 4.32029 17.8754C3.98099 17.6295 3.83965 17.1944 3.96996 16.7961L5.59145 11.8087C5.63939 11.6624 5.63939 11.5038 5.59145 11.3562C5.54473 11.21 5.4513 11.0821 5.32591 10.9911L1.08227 7.90922C0.7442 7.66336 0.601584 7.22816 0.730664 6.83108C0.860973 6.43278 1.23101 6.16356 1.64899 6.16356L6.8933 6.16603C7.04819 6.16603 7.19941 6.11684 7.32357 6.02587C7.44896 5.9349 7.5424 5.80706 7.58911 5.66077L9.20812 0.672164Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_259\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.6875 0.00537109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_259\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.6875 0.00561523)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fin0c0\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_265)\">\\n<g clip-path=\"url(#clip1_315_265)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.92101 0.672897C9.05009 0.274594 9.42136 0.00537109 9.83933 0.00537109C10.2573 0.00537109 10.6273 0.274594 10.7564 0.672897L12.3754 5.6615C12.4234 5.80779 12.5168 5.93564 12.641 6.02661C12.7664 6.11758 12.9176 6.16677 13.0712 6.16677L18.3168 6.16429C18.7348 6.16429 19.1048 6.43351 19.2339 6.83182C19.363 7.22889 19.2216 7.66409 18.8835 7.90996L14.6399 10.9919C14.5145 11.0828 14.421 11.2107 14.3731 11.357C14.3251 11.5045 14.3264 11.6631 14.3731 11.8094L15.9958 16.7968C16.1249 17.1951 15.9835 17.6303 15.6455 17.8761C15.3074 18.122 14.8488 18.122 14.5108 17.8761L10.2696 14.7917C10.1442 14.7008 9.99423 14.6516 9.83933 14.6516C9.68444 14.6516 9.53445 14.7008 9.40906 14.7917L5.16665 17.8761C4.82859 18.122 4.37124 18.122 4.03318 17.8761C3.69388 17.6303 3.55254 17.1951 3.68285 16.7968L5.30434 11.8094C5.35228 11.6631 5.35228 11.5045 5.30434 11.357C5.25762 11.2107 5.16419 11.0828 5.0388 10.9919L0.795156 7.90996C0.45709 7.66409 0.314475 7.22889 0.443555 6.83182C0.573864 6.43351 0.943903 6.16429 1.36188 6.16429L6.60619 6.16677C6.76108 6.16677 6.9123 6.11758 7.03646 6.02661C7.16185 5.93564 7.25529 5.80779 7.302 5.6615L8.92101 0.672897Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_265\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.396484 0.00537109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_265\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.396484 0.00537109)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1iptt6v\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_271)\">\\n<g clip-path=\"url(#clip1_315_271)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.05578 0.672164C9.18486 0.273861 9.55613 0.00463867 9.9741 0.00463867C10.3921 0.00463867 10.7621 0.273861 10.8912 0.672164L12.5102 5.66077C12.5581 5.80706 12.6516 5.9349 12.7757 6.02587C12.9011 6.11684 13.0523 6.16603 13.206 6.16603L18.4516 6.16356C18.8695 6.16356 19.2396 6.43278 19.3686 6.83108C19.4977 7.22816 19.3563 7.66336 19.0183 7.90922L14.7746 10.9911C14.6492 11.0821 14.5558 11.21 14.5079 11.3562C14.4599 11.5038 14.4611 11.6624 14.5079 11.8087L16.1306 16.7961C16.2597 17.1944 16.1183 17.6295 15.7802 17.8754C15.4422 18.1213 14.9836 18.1213 14.6455 17.8754L10.4044 14.791C10.279 14.7 10.129 14.6509 9.9741 14.6509C9.8192 14.6509 9.66922 14.7 9.54383 14.791L5.30142 17.8754C4.96335 18.1213 4.50601 18.1213 4.16794 17.8754C3.82865 17.6295 3.68731 17.1944 3.81762 16.7961L5.4391 11.8087C5.48705 11.6624 5.48705 11.5038 5.4391 11.3562C5.39239 11.21 5.29896 11.0821 5.17357 10.9911L0.929922 7.90922C0.591856 7.66336 0.44924 7.22816 0.57832 6.83108C0.708629 6.43278 1.07867 6.16356 1.49664 6.16356L6.74095 6.16603C6.89585 6.16603 7.04706 6.11684 7.17123 6.02587C7.29662 5.9349 7.39005 5.80706 7.43677 5.66077L9.05578 0.672164Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_271\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.535156 0.00561523)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_271\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.535156 0.00537109)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14mejo9\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,name:\"span.ti-star\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_277)\">\\n<g clip-path=\"url(#clip1_315_277)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.48351 0.672408C9.61259 0.274105 9.98386 0.00488281 10.4018 0.00488281C10.8198 0.00488281 11.1898 0.274105 11.3189 0.672408L12.9379 5.66101C12.9859 5.8073 13.0793 5.93515 13.2035 6.02612C13.3289 6.11709 13.4801 6.16628 13.6337 6.16628L18.8793 6.1638C19.2973 6.1638 19.6673 6.43303 19.7964 6.83133C19.9255 7.2284 19.7841 7.6636 19.446 7.90947L15.2024 10.9914C15.077 11.0824 14.9835 11.2102 14.9356 11.3565C14.8876 11.504 14.8889 11.6626 14.9356 11.8089L16.5583 16.7963C16.6874 17.1946 16.546 17.6298 16.208 17.8756C15.8699 18.1215 15.4113 18.1215 15.0733 17.8756L10.8321 14.7913C10.7067 14.7003 10.5567 14.6511 10.4018 14.6511C10.2469 14.6511 10.097 14.7003 9.97156 14.7913L5.72915 17.8756C5.39109 18.1215 4.93374 18.1215 4.59568 17.8756C4.25638 17.6298 4.11504 17.1946 4.24535 16.7963L5.86684 11.8089C5.91478 11.6626 5.91478 11.504 5.86684 11.3565C5.82012 11.2102 5.72669 11.0824 5.6013 10.9914L1.35766 7.90947C1.01959 7.6636 0.876975 7.2284 1.00605 6.83133C1.13636 6.43303 1.5064 6.1638 1.92438 6.1638L7.16869 6.16628C7.32358 6.16628 7.4748 6.11709 7.59896 6.02612C7.72435 5.93515 7.81779 5.8073 7.8645 5.66101L9.48351 0.672408Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_277\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.962891 0.00561523)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_277\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.962891 0.00561523)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/aYRAabmSr7QX8GhT0M7y5FmadY.png\"},className:\"framer-213ku1\",\"data-framer-name\":\"ALm5wu04c7AgqTD9EUudPYayLOX_KnlsgTAdfEvjJibd=s120-c-c-rp-w64-h64-mo-br100\",name:\"ALm5wu04c7AgqTD9EUudPYayLOX_KnlsgTAdfEvjJibd=s120-c-c-rp-w64-h64-mo-br100\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qkm72x\",\"data-framer-name\":\"::after\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"::after\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_284)\">\\n<rect x=\"0.0351562\" y=\"0.172119\" width=\"17.2946\" height=\"17.2946\" rx=\"8.64729\" fill=\"white\"/>\\n<g clip-path=\"url(#clip1_315_284)\">\\n<mask id=\"mask0_315_284\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9356 7.59977H8.68571V10.1912H12.2832C11.9478 11.8375 10.5454 12.7826 8.68571 12.7826C6.49063 12.7826 4.72237 11.0143 4.72237 8.81926C4.72237 6.62417 6.49063 4.85591 8.68571 4.85591C9.63082 4.85591 10.4845 5.19127 11.1552 5.74004L13.1064 3.78886C11.9174 2.75229 10.393 2.11206 8.68571 2.11206C4.96627 2.11206 1.97852 5.09981 1.97852 8.81926C1.97852 12.5387 4.96627 15.5264 8.68571 15.5264C12.0393 15.5264 15.088 13.0875 15.088 8.81926C15.088 8.42292 15.0271 7.9961 14.9356 7.59977Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_284)\">\\n<path d=\"M1.36719 12.7826V4.85596L6.55002 8.8193L1.36719 12.7826Z\" fill=\"#FBBC05\"/>\\n</g>\\n<mask id=\"mask1_315_284\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9356 7.59977H8.68571V10.1912H12.2832C11.9478 11.8375 10.5454 12.7826 8.68571 12.7826C6.49063 12.7826 4.72237 11.0143 4.72237 8.81926C4.72237 6.62417 6.49063 4.85591 8.68571 4.85591C9.63082 4.85591 10.4845 5.19127 11.1552 5.74004L13.1064 3.78886C11.9174 2.75229 10.393 2.11206 8.68571 2.11206C4.96627 2.11206 1.97852 5.09981 1.97852 8.81926C1.97852 12.5387 4.96627 15.5264 8.68571 15.5264C12.0393 15.5264 15.088 13.0875 15.088 8.81926C15.088 8.42292 15.0271 7.9961 14.9356 7.59977Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_315_284)\">\\n<path d=\"M1.36719 4.85604L6.55002 8.81938L8.68413 6.95966L16.0011 5.77066V1.50244H1.36719V4.85604Z\" fill=\"#EA4335\"/>\\n</g>\\n<mask id=\"mask2_315_284\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9356 7.59977H8.68571V10.1912H12.2832C11.9478 11.8375 10.5454 12.7826 8.68571 12.7826C6.49063 12.7826 4.72237 11.0143 4.72237 8.81926C4.72237 6.62417 6.49063 4.85591 8.68571 4.85591C9.63082 4.85591 10.4845 5.19127 11.1552 5.74004L13.1064 3.78886C11.9174 2.75229 10.393 2.11206 8.68571 2.11206C4.96627 2.11206 1.97852 5.09981 1.97852 8.81926C1.97852 12.5387 4.96627 15.5264 8.68571 15.5264C12.0393 15.5264 15.088 13.0875 15.088 8.81926C15.088 8.42292 15.0271 7.9961 14.9356 7.59977Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_315_284)\">\\n<path d=\"M1.36719 12.7827L10.5134 5.77066L12.9219 6.07553L16.0011 1.50244V16.1363H1.36719V12.7827Z\" fill=\"#34A853\"/>\\n</g>\\n<mask id=\"mask3_315_284\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9356 7.59977H8.68571V10.1912H12.2832C11.9478 11.8375 10.5454 12.7826 8.68571 12.7826C6.49063 12.7826 4.72237 11.0143 4.72237 8.81926C4.72237 6.62417 6.49063 4.85591 8.68571 4.85591C9.63082 4.85591 10.4845 5.19127 11.1552 5.74004L13.1064 3.78886C11.9174 2.75229 10.393 2.11206 8.68571 2.11206C4.96627 2.11206 1.97852 5.09981 1.97852 8.81926C1.97852 12.5387 4.96627 15.5264 8.68571 15.5264C12.0393 15.5264 15.088 13.0875 15.088 8.81926C15.088 8.42292 15.0271 7.9961 14.9356 7.59977Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask3_315_284)\">\\n<path d=\"M16.0026 16.1362L6.55152 8.8193L5.33203 7.90468L16.0026 4.85596V16.1362Z\" fill=\"#4285F4\"/>\\n</g>\\n</g>\\n</g>\\n<rect x=\"0.700333\" y=\"0.837295\" width=\"15.9642\" height=\"15.9642\" rx=\"7.98212\" stroke=\"white\" stroke-width=\"1.33035\"/>\\n<defs>\\n<clipPath id=\"clip0_315_284\">\\n<rect x=\"0.0351562\" y=\"0.172119\" width=\"17.2946\" height=\"17.2946\" rx=\"8.64729\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_284\">\\n<rect width=\"14.6339\" height=\"14.6339\" fill=\"white\" transform=\"translate(1.36719 1.50244)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p0huyn\",\"data-framer-name\":\"ray\",name:\"ray\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ence96\",\"data-framer-name\":\"Ellipse 4\",name:\"Ellipse 4\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgw5t0\",\"data-framer-name\":\"Group 789\",name:\"Group 789\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17.56px\",\"--framer-line-height\":\"25.8px\"},children:\"Great price compared to other estimates with a professional crew that did an expert job through and through they replaced my roof in only one day\u2026\"})}),className:\"framer-1u0u1du\",\"data-framer-name\":\"Quote \u2192 great ecosystem to help you ship fullstack\",fonts:[\"GF;Open Sans-regular\"],name:\"Quote \u2192 great ecosystem to help you ship fullstack\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15.05px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21.5px\"},children:\"Ray Dahl\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15.05px\",\"--framer-line-height\":\"21.5px\"},children:\"October 31, 2022\"})]}),className:\"framer-y02fe6\",\"data-framer-name\":\"Ray Dahl October 31, 2022\",fonts:[\"GF;DM Sans-700\",\"GF;DM Sans-regular\"],name:\"Ray Dahl October 31, 2022\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zq84qu\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_308)\">\\n<g clip-path=\"url(#clip1_315_308)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.86437 0.672408C8.99345 0.274105 9.36472 0.00488281 9.78269 0.00488281C10.2007 0.00488281 10.5707 0.274105 10.6998 0.672408L12.3188 5.66101C12.3667 5.8073 12.4602 5.93515 12.5843 6.02612C12.7097 6.11709 12.8609 6.16628 13.0146 6.16628L18.2602 6.1638C18.6781 6.1638 19.0482 6.43303 19.1772 6.83133C19.3063 7.2284 19.1649 7.6636 18.8269 7.90947L14.5832 10.9914C14.4578 11.0824 14.3644 11.2102 14.3164 11.3565C14.2685 11.504 14.2697 11.6626 14.3164 11.8089L15.9392 16.7963C16.0683 17.1946 15.9269 17.6298 15.5888 17.8756C15.2507 18.1215 14.7922 18.1215 14.4541 17.8756L10.213 14.7913C10.0876 14.7003 9.93759 14.6511 9.78269 14.6511C9.6278 14.6511 9.47781 14.7003 9.35242 14.7913L5.11001 17.8756C4.77195 18.1215 4.3146 18.1215 3.97654 17.8756C3.63724 17.6298 3.4959 17.1946 3.62621 16.7963L5.2477 11.8089C5.29564 11.6626 5.29564 11.504 5.2477 11.3565C5.20098 11.2102 5.10755 11.0824 4.98216 10.9914L0.738516 7.90947C0.40045 7.6636 0.257834 7.2284 0.386914 6.83133C0.517223 6.43303 0.887263 6.1638 1.30524 6.1638L6.54955 6.16628C6.70444 6.16628 6.85566 6.11709 6.97982 6.02612C7.10521 5.93515 7.19865 5.8073 7.24536 5.66101L8.86437 0.672408Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_308\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.341797 0.00512695)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_308\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.341797 0.00512695)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14rgew1\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,name:\"span.ti-star\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_314)\">\\n<g clip-path=\"url(#clip1_315_314)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.29015 0.672164C9.41923 0.273861 9.7905 0.00463867 10.2085 0.00463867C10.6264 0.00463867 10.9965 0.273861 11.1256 0.672164L12.7446 5.66077C12.7925 5.80706 12.8859 5.9349 13.0101 6.02587C13.1355 6.11685 13.2867 6.16604 13.4404 6.16604L18.6859 6.16356C19.1039 6.16356 19.4739 6.43278 19.603 6.83108C19.7321 7.22816 19.5907 7.66336 19.2527 7.90923L15.009 10.9911C14.8836 11.0821 14.7902 11.21 14.7422 11.3563C14.6943 11.5038 14.6955 11.6624 14.7422 11.8087L16.365 16.7961C16.494 17.1944 16.3527 17.6295 16.0146 17.8754C15.6765 18.1213 15.218 18.1213 14.8799 17.8754L10.6387 14.791C10.5134 14.7 10.3634 14.6509 10.2085 14.6509C10.0536 14.6509 9.90359 14.7 9.7782 14.791L5.5358 17.8754C5.19773 18.1213 4.74038 18.1213 4.40232 17.8754C4.06302 17.6295 3.92168 17.1944 4.05199 16.7961L5.67348 11.8087C5.72142 11.6624 5.72142 11.5038 5.67348 11.3563C5.62677 11.21 5.53333 11.0821 5.40794 10.9911L1.1643 7.90923C0.826231 7.66336 0.683615 7.22816 0.812695 6.83108C0.943004 6.43278 1.31304 6.16356 1.73102 6.16356L6.97533 6.16604C7.13022 6.16604 7.28144 6.11685 7.4056 6.02587C7.53099 5.9349 7.62443 5.80706 7.67114 5.66077L9.29015 0.672164Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_314\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.767578 0.00537109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_314\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.767578 0.00537109)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ua5e71\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_320)\">\\n<g clip-path=\"url(#clip1_315_320)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.99914 0.672897C9.12822 0.274594 9.49949 0.00537109 9.91746 0.00537109C10.3354 0.00537109 10.7055 0.274594 10.8345 0.672897L12.4536 5.6615C12.5015 5.80779 12.5949 5.93564 12.7191 6.02661C12.8445 6.11758 12.9957 6.16677 13.1494 6.16677L18.3949 6.16429C18.8129 6.16429 19.1829 6.43351 19.312 6.83182C19.4411 7.22889 19.2997 7.66409 18.9616 7.90996L14.718 10.9919C14.5926 11.0828 14.4992 11.2107 14.4512 11.357C14.4033 11.5045 14.4045 11.6631 14.4512 11.8094L16.0739 16.7968C16.203 17.1951 16.0616 17.6303 15.7236 17.8761C15.3855 18.122 14.927 18.122 14.5889 17.8761L10.3477 14.7917C10.2223 14.7008 10.0724 14.6516 9.91746 14.6516C9.76256 14.6516 9.61258 14.7008 9.48719 14.7917L5.24478 17.8761C4.90671 18.122 4.44937 18.122 4.1113 17.8761C3.77201 17.6303 3.63067 17.1951 3.76098 16.7968L5.38246 11.8094C5.43041 11.6631 5.43041 11.5045 5.38246 11.357C5.33575 11.2107 5.24232 11.0828 5.11692 10.9919L0.873281 7.90996C0.535215 7.66409 0.3926 7.22889 0.52168 6.83182C0.651989 6.43351 1.02203 6.16429 1.44 6.16429L6.68431 6.16677C6.83921 6.16677 6.99042 6.11758 7.11459 6.02661C7.23998 5.93564 7.33341 5.80779 7.38013 5.6615L8.99914 0.672897Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_320\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.476562 0.00537109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_320\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.476562 0.00537109)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-g282we\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_326)\">\\n<g clip-path=\"url(#clip1_315_326)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.14172 0.672408C9.27079 0.274105 9.64206 0.00488281 10.06 0.00488281C10.478 0.00488281 10.848 0.274105 10.9771 0.672408L12.5961 5.66101C12.6441 5.8073 12.7375 5.93515 12.8617 6.02612C12.9871 6.11709 13.1383 6.16628 13.2919 6.16628L18.5375 6.1638C18.9555 6.1638 19.3255 6.43303 19.4546 6.83133C19.5837 7.2284 19.4423 7.6636 19.1042 7.90947L14.8606 10.9914C14.7352 11.0824 14.6417 11.2102 14.5938 11.3565C14.5458 11.504 14.5471 11.6626 14.5938 11.8089L16.2165 16.7963C16.3456 17.1946 16.2042 17.6298 15.8662 17.8756C15.5281 18.1215 15.0695 18.1215 14.7315 17.8756L10.4903 14.7913C10.3649 14.7003 10.2149 14.6511 10.06 14.6511C9.90514 14.6511 9.75515 14.7003 9.62976 14.7913L5.38736 17.8756C5.04929 18.1215 4.59195 18.1215 4.25388 17.8756C3.91459 17.6298 3.77325 17.1946 3.90356 16.7963L5.52504 11.8089C5.57299 11.6626 5.57299 11.504 5.52504 11.3565C5.47833 11.2102 5.38489 11.0824 5.2595 10.9914L1.01586 7.90947C0.677793 7.6636 0.535178 7.2284 0.664258 6.83133C0.794567 6.43303 1.16461 6.1638 1.58258 6.1638L6.82689 6.16628C6.98179 6.16628 7.133 6.11709 7.25716 6.02612C7.38256 5.93515 7.47599 5.8073 7.5227 5.66101L9.14172 0.672408Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_326\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.619141 0.00537109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_326\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.619141 0.00537109)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dki9ax\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_332)\">\\n<g clip-path=\"url(#clip1_315_332)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5675 0.672408C8.69658 0.274105 9.06785 0.00488281 9.48582 0.00488281C9.90379 0.00488281 10.2738 0.274105 10.4029 0.672408L12.0219 5.66101C12.0699 5.8073 12.1633 5.93515 12.2875 6.02612C12.4128 6.11709 12.5641 6.16628 12.7177 6.16628L17.9633 6.1638C18.3812 6.1638 18.7513 6.43303 18.8804 6.83133C19.0094 7.2284 18.8681 7.6636 18.53 7.90947L14.2864 10.9914C14.161 11.0824 14.0675 11.2102 14.0196 11.3565C13.9716 11.504 13.9729 11.6626 14.0196 11.8089L15.6423 16.7963C15.7714 17.1946 15.63 17.6298 15.2919 17.8756C14.9539 18.1215 14.4953 18.1215 14.1573 17.8756L9.91609 14.7913C9.7907 14.7003 9.64071 14.6511 9.48582 14.6511C9.33092 14.6511 9.18094 14.7003 9.05554 14.7913L4.81314 17.8756C4.47507 18.1215 4.01773 18.1215 3.67966 17.8756C3.34037 17.6298 3.19903 17.1946 3.32934 16.7963L4.95082 11.8089C4.99877 11.6626 4.99877 11.504 4.95082 11.3565C4.90411 11.2102 4.81068 11.0824 4.68528 10.9914L0.441641 7.90947C0.103575 7.6636 -0.0390408 7.2284 0.0900389 6.83133C0.220348 6.43303 0.590388 6.1638 1.00836 6.1638L6.25267 6.16628C6.40757 6.16628 6.55878 6.11709 6.68295 6.02612C6.80834 5.93515 6.90177 5.8073 6.94849 5.66101L8.5675 0.672408Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_332\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.0449219 0.00512695)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_332\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.0449219 0.00512695)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6PCJFZkxYmMNEmGtLUt9UKo7kg4.png\"},className:\"framer-1xtfbrb\",\"data-framer-name\":\"ACNPEu9X0N7jRAoojNq2Zs4W_TWQbkUljlc198m9SfXKIw=s120-c-c-rp-w64-h64-mo-br100\",name:\"ACNPEu9X0N7jRAoojNq2Zs4W_TWQbkUljlc198m9SfXKIw=s120-c-c-rp-w64-h64-mo-br100\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eebxty\",\"data-framer-name\":\"::after\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"::after\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_339)\">\\n<rect x=\"0.0351562\" y=\"0.30542\" width=\"17.2946\" height=\"17.2946\" rx=\"8.64729\" fill=\"white\"/>\\n<g clip-path=\"url(#clip1_315_339)\">\\n<mask id=\"mask0_315_339\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9336 7.73282H8.68376V10.3242H12.2813C11.9459 11.9705 10.5435 12.9157 8.68376 12.9157C6.48868 12.9157 4.72042 11.1474 4.72042 8.95231C4.72042 6.75723 6.48868 4.98897 8.68376 4.98897C9.62886 4.98897 10.4825 5.32433 11.1532 5.8731L13.1044 3.92192C11.9154 2.88535 10.391 2.24512 8.68376 2.24512C4.96431 2.24512 1.97656 5.23287 1.97656 8.95231C1.97656 12.6718 4.96431 15.6595 8.68376 15.6595C12.0374 15.6595 15.0861 13.2205 15.0861 8.95231C15.0861 8.55598 15.0251 8.12916 14.9336 7.73282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_339)\">\\n<path d=\"M1.36719 12.9157V4.98901L6.55002 8.95236L1.36719 12.9157Z\" fill=\"#FBBC05\"/>\\n</g>\\n<mask id=\"mask1_315_339\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9336 7.73282H8.68376V10.3242H12.2813C11.9459 11.9705 10.5435 12.9157 8.68376 12.9157C6.48868 12.9157 4.72042 11.1474 4.72042 8.95231C4.72042 6.75723 6.48868 4.98897 8.68376 4.98897C9.62886 4.98897 10.4825 5.32433 11.1532 5.8731L13.1044 3.92192C11.9154 2.88535 10.391 2.24512 8.68376 2.24512C4.96431 2.24512 1.97656 5.23287 1.97656 8.95231C1.97656 12.6718 4.96431 15.6595 8.68376 15.6595C12.0374 15.6595 15.0861 13.2205 15.0861 8.95231C15.0861 8.55598 15.0251 8.12916 14.9336 7.73282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_315_339)\">\\n<path d=\"M1.36719 4.9891L6.55002 8.95244L8.68413 7.09272L16.0011 5.90371V1.6355H1.36719V4.9891Z\" fill=\"#EA4335\"/>\\n</g>\\n<mask id=\"mask2_315_339\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9336 7.73282H8.68376V10.3242H12.2813C11.9459 11.9705 10.5435 12.9157 8.68376 12.9157C6.48868 12.9157 4.72042 11.1474 4.72042 8.95231C4.72042 6.75723 6.48868 4.98897 8.68376 4.98897C9.62886 4.98897 10.4825 5.32433 11.1532 5.8731L13.1044 3.92192C11.9154 2.88535 10.391 2.24512 8.68376 2.24512C4.96431 2.24512 1.97656 5.23287 1.97656 8.95231C1.97656 12.6718 4.96431 15.6595 8.68376 15.6595C12.0374 15.6595 15.0861 13.2205 15.0861 8.95231C15.0861 8.55598 15.0251 8.12916 14.9336 7.73282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_315_339)\">\\n<path d=\"M1.36719 12.9158L10.5134 5.90371L12.9219 6.20859L16.0011 1.6355V16.2694H1.36719V12.9158Z\" fill=\"#34A853\"/>\\n</g>\\n<mask id=\"mask3_315_339\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9336 7.73282H8.68376V10.3242H12.2813C11.9459 11.9705 10.5435 12.9157 8.68376 12.9157C6.48868 12.9157 4.72042 11.1474 4.72042 8.95231C4.72042 6.75723 6.48868 4.98897 8.68376 4.98897C9.62886 4.98897 10.4825 5.32433 11.1532 5.8731L13.1044 3.92192C11.9154 2.88535 10.391 2.24512 8.68376 2.24512C4.96431 2.24512 1.97656 5.23287 1.97656 8.95231C1.97656 12.6718 4.96431 15.6595 8.68376 15.6595C12.0374 15.6595 15.0861 13.2205 15.0861 8.95231C15.0861 8.55598 15.0251 8.12916 14.9336 7.73282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask3_315_339)\">\\n<path d=\"M16.0026 16.2693L6.55152 8.95236L5.33203 8.03774L16.0026 4.98901V16.2693Z\" fill=\"#4285F4\"/>\\n</g>\\n</g>\\n</g>\\n<rect x=\"0.700333\" y=\"0.970596\" width=\"15.9642\" height=\"15.9642\" rx=\"7.98212\" stroke=\"white\" stroke-width=\"1.33035\"/>\\n<defs>\\n<clipPath id=\"clip0_315_339\">\\n<rect x=\"0.0351562\" y=\"0.30542\" width=\"17.2946\" height=\"17.2946\" rx=\"8.64729\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_339\">\\n<rect width=\"14.6339\" height=\"14.6339\" fill=\"white\" transform=\"translate(1.36719 1.6355)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y8y8w3\",\"data-framer-name\":\"dennis\",name:\"dennis\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-147xi7g\",\"data-framer-name\":\"Ellipse 2\",name:\"Ellipse 2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nlgv4v\",\"data-framer-name\":\"Group 789\",name:\"Group 789\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19.04px\",\"--framer-line-height\":\"27.98px\"},children:\"Very professional team. 100% would\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19.04px\",\"--framer-line-height\":\"27.98px\"},children:\"recommend to anybody in need of some roof fixing or replacing.\"})]}),className:\"framer-gspox8\",\"data-framer-name\":\"Quote \u2192 great ecosystem to help you ship fullstack\",fonts:[\"GF;Open Sans-regular\"],name:\"Quote \u2192 great ecosystem to help you ship fullstack\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"16.32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"23.32px\"},children:\"Dennis Reyes\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"16.32px\",\"--framer-line-height\":\"23.32px\"},children:\"November 15, 2022\"})]}),className:\"framer-hqz02o\",\"data-framer-name\":\"Dennis Reyes November 15, 2022\",fonts:[\"GF;DM Sans-700\",\"GF;DM Sans-regular\"],name:\"Dennis Reyes November 15, 2022\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZmlzgfvmPYAstUj6bU1p86HU.png\"},className:\"framer-1jjr4te\",\"data-framer-name\":\"ACNPEu87bZ9zxc6TnKY0EzXlZv-_SYLLurt1oKqhoDmOwA=s120-c-c-rp-w64-h64-mo-br100\",name:\"ACNPEu87bZ9zxc6TnKY0EzXlZv-_SYLLurt1oKqhoDmOwA=s120-c-c-rp-w64-h64-mo-br100\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yigr6m\",\"data-framer-name\":\"::after\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:19,name:\"::after\",svg:'<svg width=\"19\" height=\"20\" viewBox=\"0 0 19 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_364)\">\\n<rect x=\"0.0703125\" y=\"0.552002\" width=\"18.7563\" height=\"18.7563\" rx=\"9.37813\" fill=\"white\"/>\\n<g clip-path=\"url(#clip1_315_364)\">\\n<mask id=\"mask0_315_364\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"2\" width=\"15\" height=\"16\">\\n<path d=\"M16.2299 8.60702H9.4518V11.4175H13.3533C12.9896 13.2029 11.4687 14.2279 9.4518 14.2279C7.07119 14.2279 5.15349 12.3102 5.15349 9.92958C5.15349 7.54898 7.07119 5.63127 9.4518 5.63127C10.4768 5.63127 11.4026 5.99497 12.13 6.59012L14.2461 4.47403C12.9566 3.34986 11.3034 2.65552 9.4518 2.65552C5.418 2.65552 2.17773 5.89578 2.17773 9.92958C2.17773 13.9634 5.418 17.2036 9.4518 17.2036C13.0888 17.2036 16.3952 14.5585 16.3952 9.92958C16.3952 9.49975 16.3291 9.03685 16.2299 8.60702Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_364)\">\\n<path d=\"M1.51758 14.228V5.63135L7.13844 9.92966L1.51758 14.228Z\" fill=\"#FBBC05\"/>\\n</g>\\n<mask id=\"mask1_315_364\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"2\" width=\"15\" height=\"16\">\\n<path d=\"M16.2299 8.60702H9.4518V11.4175H13.3533C12.9896 13.2029 11.4687 14.2279 9.4518 14.2279C7.07119 14.2279 5.15349 12.3102 5.15349 9.92958C5.15349 7.54898 7.07119 5.63127 9.4518 5.63127C10.4768 5.63127 11.4026 5.99497 12.13 6.59012L14.2461 4.47403C12.9566 3.34986 11.3034 2.65552 9.4518 2.65552C5.418 2.65552 2.17773 5.89578 2.17773 9.92958C2.17773 13.9634 5.418 17.2036 9.4518 17.2036C13.0888 17.2036 16.3952 14.5585 16.3952 9.92958C16.3952 9.49975 16.3291 9.03685 16.2299 8.60702Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_315_364)\">\\n<path d=\"M1.51758 5.63141L7.13844 9.92972L9.45292 7.91282L17.3883 6.62333V1.99438H1.51758V5.63141Z\" fill=\"#EA4335\"/>\\n</g>\\n<mask id=\"mask2_315_364\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"2\" width=\"15\" height=\"16\">\\n<path d=\"M16.2299 8.60702H9.4518V11.4175H13.3533C12.9896 13.2029 11.4687 14.2279 9.4518 14.2279C7.07119 14.2279 5.15349 12.3102 5.15349 9.92958C5.15349 7.54898 7.07119 5.63127 9.4518 5.63127C10.4768 5.63127 11.4026 5.99497 12.13 6.59012L14.2461 4.47403C12.9566 3.34986 11.3034 2.65552 9.4518 2.65552C5.418 2.65552 2.17773 5.89578 2.17773 9.92958C2.17773 13.9634 5.418 17.2036 9.4518 17.2036C13.0888 17.2036 16.3952 14.5585 16.3952 9.92958C16.3952 9.49975 16.3291 9.03685 16.2299 8.60702Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_315_364)\">\\n<path d=\"M1.51758 14.228L11.4368 6.62333L14.0488 6.95397L17.3883 1.99438V17.8651H1.51758V14.228Z\" fill=\"#34A853\"/>\\n</g>\\n<mask id=\"mask3_315_364\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"2\" width=\"15\" height=\"16\">\\n<path d=\"M16.2299 8.60702H9.4518V11.4175H13.3533C12.9896 13.2029 11.4687 14.2279 9.4518 14.2279C7.07119 14.2279 5.15349 12.3102 5.15349 9.92958C5.15349 7.54898 7.07119 5.63127 9.4518 5.63127C10.4768 5.63127 11.4026 5.99497 12.13 6.59012L14.2461 4.47403C12.9566 3.34986 11.3034 2.65552 9.4518 2.65552C5.418 2.65552 2.17773 5.89578 2.17773 9.92958C2.17773 13.9634 5.418 17.2036 9.4518 17.2036C13.0888 17.2036 16.3952 14.5585 16.3952 9.92958C16.3952 9.49975 16.3291 9.03685 16.2299 8.60702Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask3_315_364)\">\\n<path d=\"M17.3868 17.865L7.13701 9.92966L5.81445 8.93774L17.3868 5.63135V17.865Z\" fill=\"#4285F4\"/>\\n</g>\\n</g>\\n</g>\\n<rect x=\"0.791707\" y=\"1.2734\" width=\"17.3135\" height=\"17.3135\" rx=\"8.65673\" stroke=\"white\" stroke-width=\"1.44279\"/>\\n<defs>\\n<clipPath id=\"clip0_315_364\">\\n<rect x=\"0.0703125\" y=\"0.552002\" width=\"18.7563\" height=\"18.7563\" rx=\"9.37813\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_364\">\\n<rect width=\"15.8707\" height=\"15.8707\" fill=\"white\" transform=\"translate(1.51562 1.99438)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-i7tzi5\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"span.ti-star\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_383)\">\\n<g clip-path=\"url(#clip1_315_383)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.61999 1.04059C9.75998 0.608626 10.1626 0.31665 10.6159 0.31665C11.0692 0.31665 11.4705 0.608626 11.6105 1.04059L13.3664 6.45081C13.4184 6.60947 13.5197 6.74812 13.6543 6.84678C13.7903 6.94544 13.9543 6.99878 14.121 6.99878L19.8099 6.9961C20.2632 6.9961 20.6645 7.28807 20.8045 7.72004C20.9444 8.15067 20.7911 8.62265 20.4245 8.8893L15.8222 12.2317C15.6862 12.3303 15.5848 12.469 15.5329 12.6277C15.4809 12.7876 15.4822 12.9596 15.5329 13.1183L17.2927 18.5272C17.4327 18.9592 17.2794 19.4311 16.9127 19.6978C16.5461 19.9644 16.0488 19.9644 15.6822 19.6978L11.0826 16.3527C10.9466 16.254 10.7839 16.2007 10.6159 16.2007C10.4479 16.2007 10.2853 16.254 10.1493 16.3527L5.54833 19.6978C5.18169 19.9644 4.68569 19.9644 4.31905 19.6978C3.95108 19.4311 3.7978 18.9592 3.93912 18.5272L5.69765 13.1183C5.74964 12.9596 5.74964 12.7876 5.69765 12.6277C5.64698 12.469 5.54565 12.3303 5.40967 12.2317L0.807366 8.8893C0.440728 8.62265 0.286059 8.15067 0.426048 7.72004C0.567371 7.28807 0.968685 6.9961 1.42198 6.9961L7.10952 6.99878C7.27751 6.99878 7.44151 6.94544 7.57616 6.84678C7.71215 6.74812 7.81348 6.60947 7.86414 6.45081L9.61999 1.04059Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_383\">\\n<rect width=\"20.986\" height=\"20.986\" fill=\"white\" transform=\"translate(0.376953 0.317383)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_383\">\\n<rect width=\"20.986\" height=\"19.6744\" fill=\"white\" transform=\"translate(0.376953 0.317383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d9lztf\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"span.ti-star\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_389)\">\\n<g clip-path=\"url(#clip1_315_389)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.77233 1.04059C9.91232 0.608626 10.315 0.31665 10.7683 0.31665C11.2216 0.31665 11.6229 0.608626 11.7629 1.04059L13.5187 6.45081C13.5707 6.60947 13.672 6.74812 13.8067 6.84678C13.9427 6.94544 14.1067 6.99878 14.2733 6.99878L19.9622 6.9961C20.4155 6.9961 20.8168 7.28807 20.9568 7.72004C21.0968 8.15067 20.9435 8.62265 20.5768 8.8893L15.9745 12.2317C15.8385 12.3303 15.7372 12.469 15.6852 12.6277C15.6332 12.7876 15.6345 12.9596 15.6852 13.1183L17.4451 18.5272C17.5851 18.9592 17.4317 19.4311 17.0651 19.6978C16.6985 19.9644 16.2012 19.9644 15.8345 19.6978L11.2349 16.3527C11.0989 16.254 10.9363 16.2007 10.7683 16.2007C10.6003 16.2007 10.4376 16.254 10.3016 16.3527L5.70067 19.6978C5.33403 19.9644 4.83803 19.9644 4.4714 19.6978C4.10343 19.4311 3.95014 18.9592 4.09146 18.5272L5.84999 13.1183C5.90199 12.9596 5.90199 12.7876 5.84999 12.6277C5.79933 12.469 5.698 12.3303 5.56201 12.2317L0.95971 8.8893C0.593072 8.62265 0.438403 8.15067 0.578392 7.72004C0.719714 7.28807 1.12103 6.9961 1.57433 6.9961L7.26187 6.99878C7.42985 6.99878 7.59385 6.94544 7.72851 6.84678C7.86449 6.74812 7.96582 6.60947 8.01649 6.45081L9.77233 1.04059Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_389\">\\n<rect width=\"20.986\" height=\"20.986\" fill=\"white\" transform=\"translate(0.527344 0.317383)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_389\">\\n<rect width=\"20.986\" height=\"19.6744\" fill=\"white\" transform=\"translate(0.527344 0.317383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-74eg4q\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"span.ti-star\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_395)\">\\n<g clip-path=\"url(#clip1_315_395)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.92467 1.04132C10.0647 0.609359 10.4673 0.317383 10.9206 0.317383C11.3739 0.317383 11.7752 0.609359 11.9152 1.04132L13.671 6.45154C13.723 6.6102 13.8244 6.74885 13.959 6.84751C14.095 6.94617 14.259 6.99952 14.4257 6.99952L20.1145 6.99683C20.5678 6.99683 20.9692 7.28881 21.1091 7.72077C21.2491 8.15141 21.0958 8.62339 20.7292 8.89003L16.1269 12.2324C15.9909 12.3311 15.8895 12.4697 15.8375 12.6284C15.7855 12.7884 15.7869 12.9604 15.8375 13.119L17.5974 18.5279C17.7374 18.9599 17.5841 19.4319 17.2174 19.6985C16.8508 19.9652 16.3535 19.9652 15.9869 19.6985L11.3872 16.3534C11.2513 16.2548 11.0886 16.2015 10.9206 16.2015C10.7526 16.2015 10.59 16.2548 10.454 16.3534L5.85301 19.6985C5.48638 19.9652 4.99038 19.9652 4.62374 19.6985C4.25577 19.4319 4.10248 18.9599 4.24381 18.5279L6.00234 13.119C6.05433 12.9604 6.05433 12.7884 6.00234 12.6284C5.95167 12.4697 5.85034 12.3311 5.71435 12.2324L1.11205 8.89003C0.745416 8.62339 0.590747 8.15141 0.730736 7.72077C0.872058 7.28881 1.27337 6.99683 1.72667 6.99683L7.41421 6.99952C7.5822 6.99952 7.74619 6.94617 7.88085 6.84751C8.01684 6.74885 8.11817 6.6102 8.16883 6.45154L9.92467 1.04132Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_395\">\\n<rect width=\"20.986\" height=\"20.986\" fill=\"white\" transform=\"translate(0.681641 0.317383)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_395\">\\n<rect width=\"20.986\" height=\"19.6744\" fill=\"white\" transform=\"translate(0.681641 0.317383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-w00q2y\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"span.ti-star\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_401)\">\\n<g clip-path=\"url(#clip1_315_401)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.0751 1.04035C10.2151 0.608382 10.6177 0.316406 11.071 0.316406C11.5243 0.316406 11.9256 0.608382 12.0656 1.04035L13.8214 6.45057C13.8734 6.60922 13.9748 6.74787 14.1094 6.84653C14.2454 6.94519 14.4094 6.99854 14.5761 6.99854L20.2649 6.99585C20.7182 6.99585 21.1195 7.28783 21.2595 7.7198C21.3995 8.15043 21.2462 8.62241 20.8796 8.88906L16.2773 12.2314C16.1413 12.3301 16.0399 12.4688 15.9879 12.6274C15.9359 12.7874 15.9373 12.9594 15.9879 13.1181L17.7478 18.527C17.8878 18.9589 17.7345 19.4309 17.3678 19.6975C17.0012 19.9642 16.5039 19.9642 16.1373 19.6975L11.5376 16.3525C11.4016 16.2538 11.239 16.2005 11.071 16.2005C10.903 16.2005 10.7404 16.2538 10.6044 16.3525L6.0034 19.6975C5.63677 19.9642 5.14077 19.9642 4.77413 19.6975C4.40616 19.4309 4.25287 18.9589 4.3942 18.527L6.15273 13.1181C6.20472 12.9594 6.20472 12.7874 6.15273 12.6274C6.10206 12.4688 6.00073 12.3301 5.86474 12.2314L1.26244 8.88906C0.895806 8.62241 0.741137 8.15043 0.881126 7.7198C1.02245 7.28783 1.42376 6.99585 1.87706 6.99585L7.5646 6.99854C7.73259 6.99854 7.89658 6.94519 8.03124 6.84653C8.16723 6.74787 8.26856 6.60922 8.31922 6.45057L10.0751 1.04035Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_401\">\\n<rect width=\"20.986\" height=\"20.986\" fill=\"white\" transform=\"translate(0.832031 0.317383)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_401\">\\n<rect width=\"20.986\" height=\"19.6744\" fill=\"white\" transform=\"translate(0.832031 0.317383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lg41dt\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"span.ti-star\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_407)\">\\n<g clip-path=\"url(#clip1_315_407)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.2313 1.0401C10.3713 0.608138 10.774 0.316162 11.2272 0.316162C11.6805 0.316162 12.0819 0.608138 12.2218 1.0401L13.9777 6.45032C14.0297 6.60898 14.131 6.74763 14.2657 6.84629C14.4017 6.94495 14.5657 6.9983 14.7323 6.9983L20.4212 6.99561C20.8745 6.99561 21.2758 7.28759 21.4158 7.71955C21.5558 8.15018 21.4024 8.62217 21.0358 8.88881L16.4335 12.2312C16.2975 12.3299 16.1962 12.4685 16.1442 12.6272C16.0922 12.7872 16.0935 12.9592 16.1442 13.1178L17.9041 18.5267C18.044 18.9587 17.8907 19.4306 17.5241 19.6973C17.1574 19.9639 16.6601 19.9639 16.2935 19.6973L11.6939 16.3522C11.5579 16.2536 11.3952 16.2002 11.2272 16.2002C11.0593 16.2002 10.8966 16.2536 10.7606 16.3522L6.15965 19.6973C5.79302 19.9639 5.29702 19.9639 4.93038 19.6973C4.56241 19.4306 4.40912 18.9587 4.55045 18.5267L6.30898 13.1178C6.36097 12.9592 6.36097 12.7872 6.30898 12.6272C6.25831 12.4685 6.15698 12.3299 6.02099 12.2312L1.41869 8.88881C1.05206 8.62217 0.897387 8.15018 1.03738 7.71955C1.1787 7.28759 1.58001 6.99561 2.03331 6.99561L7.72085 6.9983C7.88884 6.9983 8.05283 6.94495 8.18749 6.84629C8.32348 6.74763 8.42481 6.60898 8.47547 6.45032L10.2313 1.0401Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_407\">\\n<rect width=\"20.986\" height=\"20.986\" fill=\"white\" transform=\"translate(0.986328 0.317383)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_407\">\\n<rect width=\"20.986\" height=\"19.6744\" fill=\"white\" transform=\"translate(0.986328 0.317383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-84agiy\",\"data-framer-name\":\"ray\",name:\"ray\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ks24eo\",\"data-framer-name\":\"Ellipse 4\",name:\"Ellipse 4\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p0kv2z\",\"data-framer-name\":\"Group 789\",name:\"Group 789\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17.56px\",\"--framer-line-height\":\"25.8px\"},children:\"Great price compared to other estimates with a professional crew that did an expert job through and through they replaced my roof in only one day\u2026\"})}),className:\"framer-1a0j7t5\",\"data-framer-name\":\"Quote \u2192 great ecosystem to help you ship fullstack\",fonts:[\"GF;Open Sans-regular\"],name:\"Quote \u2192 great ecosystem to help you ship fullstack\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15.05px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21.5px\"},children:\"Ray Dahl\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15.05px\",\"--framer-line-height\":\"21.5px\"},children:\"October 31, 2022\"})]}),className:\"framer-uevyzu\",\"data-framer-name\":\"Ray Dahl October 31, 2022\",fonts:[\"GF;DM Sans-700\",\"GF;DM Sans-regular\"],name:\"Ray Dahl October 31, 2022\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-w6tr2n\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_473)\">\\n<g clip-path=\"url(#clip1_315_473)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.86437 0.672408C8.99345 0.274105 9.36472 0.00488281 9.78269 0.00488281C10.2007 0.00488281 10.5707 0.274105 10.6998 0.672408L12.3188 5.66101C12.3667 5.8073 12.4602 5.93515 12.5843 6.02612C12.7097 6.11709 12.8609 6.16628 13.0146 6.16628L18.2602 6.1638C18.6781 6.1638 19.0482 6.43303 19.1772 6.83133C19.3063 7.2284 19.1649 7.6636 18.8269 7.90947L14.5832 10.9914C14.4578 11.0824 14.3644 11.2102 14.3164 11.3565C14.2685 11.504 14.2697 11.6626 14.3164 11.8089L15.9392 16.7963C16.0683 17.1946 15.9269 17.6298 15.5888 17.8756C15.2507 18.1215 14.7922 18.1215 14.4541 17.8756L10.213 14.7913C10.0876 14.7003 9.93759 14.6511 9.78269 14.6511C9.6278 14.6511 9.47781 14.7003 9.35242 14.7913L5.11001 17.8756C4.77195 18.1215 4.3146 18.1215 3.97654 17.8756C3.63724 17.6298 3.4959 17.1946 3.62621 16.7963L5.2477 11.8089C5.29564 11.6626 5.29564 11.504 5.2477 11.3565C5.20098 11.2102 5.10755 11.0824 4.98216 10.9914L0.738516 7.90947C0.40045 7.6636 0.257834 7.2284 0.386914 6.83133C0.517223 6.43303 0.887263 6.1638 1.30524 6.1638L6.54955 6.16628C6.70444 6.16628 6.85566 6.11709 6.97982 6.02612C7.10521 5.93515 7.19865 5.8073 7.24536 5.66101L8.86437 0.672408Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_473\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.341797 0.00512695)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_473\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.341797 0.00512695)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u3ne95\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,name:\"span.ti-star\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_479)\">\\n<g clip-path=\"url(#clip1_315_479)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.29015 0.672164C9.41923 0.273861 9.7905 0.00463867 10.2085 0.00463867C10.6264 0.00463867 10.9965 0.273861 11.1256 0.672164L12.7446 5.66077C12.7925 5.80706 12.8859 5.9349 13.0101 6.02587C13.1355 6.11685 13.2867 6.16604 13.4404 6.16604L18.6859 6.16356C19.1039 6.16356 19.4739 6.43278 19.603 6.83108C19.7321 7.22816 19.5907 7.66336 19.2527 7.90923L15.009 10.9911C14.8836 11.0821 14.7902 11.21 14.7422 11.3563C14.6943 11.5038 14.6955 11.6624 14.7422 11.8087L16.365 16.7961C16.494 17.1944 16.3527 17.6295 16.0146 17.8754C15.6765 18.1213 15.218 18.1213 14.8799 17.8754L10.6387 14.791C10.5134 14.7 10.3634 14.6509 10.2085 14.6509C10.0536 14.6509 9.90359 14.7 9.7782 14.791L5.5358 17.8754C5.19773 18.1213 4.74038 18.1213 4.40232 17.8754C4.06302 17.6295 3.92168 17.1944 4.05199 16.7961L5.67348 11.8087C5.72142 11.6624 5.72142 11.5038 5.67348 11.3563C5.62677 11.21 5.53333 11.0821 5.40794 10.9911L1.1643 7.90923C0.826231 7.66336 0.683615 7.22816 0.812695 6.83108C0.943004 6.43278 1.31304 6.16356 1.73102 6.16356L6.97533 6.16604C7.13022 6.16604 7.28144 6.11685 7.4056 6.02587C7.53099 5.9349 7.62443 5.80706 7.67114 5.66077L9.29015 0.672164Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_479\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.767578 0.00537109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_479\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.767578 0.00537109)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1es0kx7\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_485)\">\\n<g clip-path=\"url(#clip1_315_485)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.99914 0.672897C9.12822 0.274594 9.49949 0.00537109 9.91746 0.00537109C10.3354 0.00537109 10.7055 0.274594 10.8345 0.672897L12.4536 5.6615C12.5015 5.80779 12.5949 5.93564 12.7191 6.02661C12.8445 6.11758 12.9957 6.16677 13.1494 6.16677L18.3949 6.16429C18.8129 6.16429 19.1829 6.43351 19.312 6.83182C19.4411 7.22889 19.2997 7.66409 18.9616 7.90996L14.718 10.9919C14.5926 11.0828 14.4992 11.2107 14.4512 11.357C14.4033 11.5045 14.4045 11.6631 14.4512 11.8094L16.0739 16.7968C16.203 17.1951 16.0616 17.6303 15.7236 17.8761C15.3855 18.122 14.927 18.122 14.5889 17.8761L10.3477 14.7917C10.2223 14.7008 10.0724 14.6516 9.91746 14.6516C9.76256 14.6516 9.61258 14.7008 9.48719 14.7917L5.24478 17.8761C4.90671 18.122 4.44937 18.122 4.1113 17.8761C3.77201 17.6303 3.63067 17.1951 3.76098 16.7968L5.38246 11.8094C5.43041 11.6631 5.43041 11.5045 5.38246 11.357C5.33575 11.2107 5.24232 11.0828 5.11692 10.9919L0.873281 7.90996C0.535215 7.66409 0.3926 7.22889 0.52168 6.83182C0.651989 6.43351 1.02203 6.16429 1.44 6.16429L6.68431 6.16677C6.83921 6.16677 6.99042 6.11758 7.11459 6.02661C7.23998 5.93564 7.33341 5.80779 7.38013 5.6615L8.99914 0.672897Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_485\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.476562 0.00537109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_485\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.476562 0.00537109)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4fh90d\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_491)\">\\n<g clip-path=\"url(#clip1_315_491)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.14172 0.672408C9.27079 0.274105 9.64206 0.00488281 10.06 0.00488281C10.478 0.00488281 10.848 0.274105 10.9771 0.672408L12.5961 5.66101C12.6441 5.8073 12.7375 5.93515 12.8617 6.02612C12.9871 6.11709 13.1383 6.16628 13.2919 6.16628L18.5375 6.1638C18.9555 6.1638 19.3255 6.43303 19.4546 6.83133C19.5837 7.2284 19.4423 7.6636 19.1042 7.90947L14.8606 10.9914C14.7352 11.0824 14.6417 11.2102 14.5938 11.3565C14.5458 11.504 14.5471 11.6626 14.5938 11.8089L16.2165 16.7963C16.3456 17.1946 16.2042 17.6298 15.8662 17.8756C15.5281 18.1215 15.0695 18.1215 14.7315 17.8756L10.4903 14.7913C10.3649 14.7003 10.2149 14.6511 10.06 14.6511C9.90514 14.6511 9.75515 14.7003 9.62976 14.7913L5.38736 17.8756C5.04929 18.1215 4.59195 18.1215 4.25388 17.8756C3.91459 17.6298 3.77325 17.1946 3.90356 16.7963L5.52504 11.8089C5.57299 11.6626 5.57299 11.504 5.52504 11.3565C5.47833 11.2102 5.38489 11.0824 5.2595 10.9914L1.01586 7.90947C0.677793 7.6636 0.535178 7.2284 0.664258 6.83133C0.794567 6.43303 1.16461 6.1638 1.58258 6.1638L6.82689 6.16628C6.98179 6.16628 7.133 6.11709 7.25716 6.02612C7.38256 5.93515 7.47599 5.8073 7.5227 5.66101L9.14172 0.672408Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_491\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.619141 0.00537109)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_491\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.619141 0.00537109)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-80rvou\",\"data-framer-name\":\"span.ti-star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"span.ti-star\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_497)\">\\n<g clip-path=\"url(#clip1_315_497)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5675 0.672408C8.69658 0.274105 9.06785 0.00488281 9.48582 0.00488281C9.90379 0.00488281 10.2738 0.274105 10.4029 0.672408L12.0219 5.66101C12.0699 5.8073 12.1633 5.93515 12.2875 6.02612C12.4128 6.11709 12.5641 6.16628 12.7177 6.16628L17.9633 6.1638C18.3812 6.1638 18.7513 6.43303 18.8804 6.83133C19.0094 7.2284 18.8681 7.6636 18.53 7.90947L14.2864 10.9914C14.161 11.0824 14.0675 11.2102 14.0196 11.3565C13.9716 11.504 13.9729 11.6626 14.0196 11.8089L15.6423 16.7963C15.7714 17.1946 15.63 17.6298 15.2919 17.8756C14.9539 18.1215 14.4953 18.1215 14.1573 17.8756L9.91609 14.7913C9.7907 14.7003 9.64071 14.6511 9.48582 14.6511C9.33092 14.6511 9.18094 14.7003 9.05554 14.7913L4.81314 17.8756C4.47507 18.1215 4.01773 18.1215 3.67966 17.8756C3.34037 17.6298 3.19903 17.1946 3.32934 16.7963L4.95082 11.8089C4.99877 11.6626 4.99877 11.504 4.95082 11.3565C4.90411 11.2102 4.81068 11.0824 4.68528 10.9914L0.441641 7.90947C0.103575 7.6636 -0.0390408 7.2284 0.0900389 6.83133C0.220348 6.43303 0.590388 6.1638 1.00836 6.1638L6.25267 6.16628C6.40757 6.16628 6.55878 6.11709 6.68295 6.02612C6.80834 5.93515 6.90177 5.8073 6.94849 5.66101L8.5675 0.672408Z\" fill=\"#F6BB06\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_315_497\">\\n<rect width=\"19.3506\" height=\"19.3506\" fill=\"white\" transform=\"translate(0.0449219 0.00512695)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_497\">\\n<rect width=\"19.3506\" height=\"18.1412\" fill=\"white\" transform=\"translate(0.0449219 0.00512695)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6PCJFZkxYmMNEmGtLUt9UKo7kg4.png\"},className:\"framer-18efi7\",\"data-framer-name\":\"ACNPEu9X0N7jRAoojNq2Zs4W_TWQbkUljlc198m9SfXKIw=s120-c-c-rp-w64-h64-mo-br100\",name:\"ACNPEu9X0N7jRAoojNq2Zs4W_TWQbkUljlc198m9SfXKIw=s120-c-c-rp-w64-h64-mo-br100\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rtjt6d\",\"data-framer-name\":\"::after\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"::after\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_315_504)\">\\n<rect x=\"0.0351562\" y=\"0.30542\" width=\"17.2946\" height=\"17.2946\" rx=\"8.64729\" fill=\"white\"/>\\n<g clip-path=\"url(#clip1_315_504)\">\\n<mask id=\"mask0_315_504\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9336 7.73282H8.68376V10.3242H12.2813C11.9459 11.9705 10.5435 12.9157 8.68376 12.9157C6.48868 12.9157 4.72042 11.1474 4.72042 8.95231C4.72042 6.75723 6.48868 4.98897 8.68376 4.98897C9.62886 4.98897 10.4825 5.32433 11.1532 5.8731L13.1044 3.92192C11.9154 2.88535 10.391 2.24512 8.68376 2.24512C4.96431 2.24512 1.97656 5.23287 1.97656 8.95231C1.97656 12.6718 4.96431 15.6595 8.68376 15.6595C12.0374 15.6595 15.0861 13.2205 15.0861 8.95231C15.0861 8.55598 15.0251 8.12916 14.9336 7.73282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_504)\">\\n<path d=\"M1.36719 12.9157V4.98901L6.55002 8.95236L1.36719 12.9157Z\" fill=\"#FBBC05\"/>\\n</g>\\n<mask id=\"mask1_315_504\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9336 7.73282H8.68376V10.3242H12.2813C11.9459 11.9705 10.5435 12.9157 8.68376 12.9157C6.48868 12.9157 4.72042 11.1474 4.72042 8.95231C4.72042 6.75723 6.48868 4.98897 8.68376 4.98897C9.62886 4.98897 10.4825 5.32433 11.1532 5.8731L13.1044 3.92192C11.9154 2.88535 10.391 2.24512 8.68376 2.24512C4.96431 2.24512 1.97656 5.23287 1.97656 8.95231C1.97656 12.6718 4.96431 15.6595 8.68376 15.6595C12.0374 15.6595 15.0861 13.2205 15.0861 8.95231C15.0861 8.55598 15.0251 8.12916 14.9336 7.73282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_315_504)\">\\n<path d=\"M1.36719 4.9891L6.55002 8.95244L8.68413 7.09272L16.0011 5.90371V1.6355H1.36719V4.9891Z\" fill=\"#EA4335\"/>\\n</g>\\n<mask id=\"mask2_315_504\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9336 7.73282H8.68376V10.3242H12.2813C11.9459 11.9705 10.5435 12.9157 8.68376 12.9157C6.48868 12.9157 4.72042 11.1474 4.72042 8.95231C4.72042 6.75723 6.48868 4.98897 8.68376 4.98897C9.62886 4.98897 10.4825 5.32433 11.1532 5.8731L13.1044 3.92192C11.9154 2.88535 10.391 2.24512 8.68376 2.24512C4.96431 2.24512 1.97656 5.23287 1.97656 8.95231C1.97656 12.6718 4.96431 15.6595 8.68376 15.6595C12.0374 15.6595 15.0861 13.2205 15.0861 8.95231C15.0861 8.55598 15.0251 8.12916 14.9336 7.73282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_315_504)\">\\n<path d=\"M1.36719 12.9158L10.5134 5.90371L12.9219 6.20859L16.0011 1.6355V16.2694H1.36719V12.9158Z\" fill=\"#34A853\"/>\\n</g>\\n<mask id=\"mask3_315_504\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"2\" width=\"15\" height=\"14\">\\n<path d=\"M14.9336 7.73282H8.68376V10.3242H12.2813C11.9459 11.9705 10.5435 12.9157 8.68376 12.9157C6.48868 12.9157 4.72042 11.1474 4.72042 8.95231C4.72042 6.75723 6.48868 4.98897 8.68376 4.98897C9.62886 4.98897 10.4825 5.32433 11.1532 5.8731L13.1044 3.92192C11.9154 2.88535 10.391 2.24512 8.68376 2.24512C4.96431 2.24512 1.97656 5.23287 1.97656 8.95231C1.97656 12.6718 4.96431 15.6595 8.68376 15.6595C12.0374 15.6595 15.0861 13.2205 15.0861 8.95231C15.0861 8.55598 15.0251 8.12916 14.9336 7.73282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask3_315_504)\">\\n<path d=\"M16.0026 16.2693L6.55152 8.95236L5.33203 8.03774L16.0026 4.98901V16.2693Z\" fill=\"#4285F4\"/>\\n</g>\\n</g>\\n</g>\\n<rect x=\"0.700333\" y=\"0.970596\" width=\"15.9642\" height=\"15.9642\" rx=\"7.98212\" stroke=\"white\" stroke-width=\"1.33035\"/>\\n<defs>\\n<clipPath id=\"clip0_315_504\">\\n<rect x=\"0.0351562\" y=\"0.30542\" width=\"17.2946\" height=\"17.2946\" rx=\"8.64729\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_315_504\">\\n<rect width=\"14.6339\" height=\"14.6339\" fill=\"white\" transform=\"translate(1.36719 1.6355)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7drfvp\",\"data-framer-name\":\"Frame 29\",name:\"Frame 29\"})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fkbsgd\",\"data-framer-name\":\"Frame 836\",name:\"Frame 836\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b2cezw\",\"data-framer-name\":\"Frame 13\",name:\"Frame 13\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(216, 104, 100)\",\"--framer-text-transform\":\"uppercase\"},children:\"Roofing you can trust\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(216, 104, 100)\",\"--framer-text-transform\":\"uppercase\"},children:\"Roofing you can trust\"})}),className:\"framer-tdky20\",\"data-framer-name\":\"Roofing you can trust\",fonts:[\"Inter-SemiBold\"],name:\"Roofing you can trust\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Why Choose Us?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Why Choose Us?\"})}),className:\"framer-ibeq7h\",\"data-framer-name\":\"Why Choose Us?\",fonts:[\"Inter-SemiBold\"],name:\"Why Choose Us?\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g5xiwx\",\"data-framer-name\":\"Frame 31\",name:\"Frame 31\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12wt94l\",\"data-framer-name\":\"Group 803\",name:\"Group 803\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b3y90p\",\"data-framer-name\":\"Group 808\",name:\"Group 808\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mdb9m\",\"data-framer-name\":\"Rectangle 77\",name:\"Rectangle 77\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"When your roof is damaged, you can't afford to wait days or weeks. Our customers matter to us, and we'll work hard to service your home so you can rest easy once again.\"})}),className:\"framer-1bq5xos\",\"data-framer-name\":\"When your roof is damaged, you can't afford to wait days or weeks. Our customers matter to us, and we'll work hard to service your home so you can rest easy once again.\",fonts:[\"Inter-Medium\"],name:\"When your roof is damaged, you can't afford to wait days or weeks. Our customers matter to us, and we'll work hard to service your home so you can rest easy once again.\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Prompt Service\"})}),className:\"framer-1rnsxw\",\"data-framer-name\":\"Prompt Service\",fonts:[\"Inter-SemiBold\"],name:\"Prompt Service\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-151sq9o\",\"data-framer-name\":\"construction\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:72,intrinsicWidth:73,name:\"construction\",svg:'<svg width=\"73\" height=\"72\" viewBox=\"0 0 73 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_315_634\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"73\" height=\"72\">\\n<rect x=\"0.5\" width=\"72\" height=\"72\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_634)\">\\n<path d=\"M57.2 62.9998L40.775 46.5748L47.075 40.2748L63.5 56.6998L57.2 62.9998ZM15.8 62.9998L9.5 56.6998L30.2 35.9998L25.1 30.8998L23 32.9998L19.175 29.1748V35.3248L17.075 37.4248L8 28.3498L10.1 26.2498H16.25L12.5 22.4998L23.15 11.8498C24.15 10.8498 25.225 10.1248 26.375 9.6748C27.525 9.2248 28.7 8.9998 29.9 8.9998C31.1 8.9998 32.275 9.2248 33.425 9.6748C34.575 10.1248 35.65 10.8498 36.65 11.8498L29.75 18.7498L33.5 22.4998L31.4 24.5998L36.5 29.6998L43.25 22.9498C43.05 22.3998 42.8875 21.8248 42.7625 21.2248C42.6375 20.6248 42.575 20.0248 42.575 19.4248C42.575 16.4748 43.5875 13.9873 45.6125 11.9623C47.6375 9.9373 50.125 8.9248 53.075 8.9248C53.825 8.9248 54.5375 8.9998 55.2125 9.1498C55.8875 9.2998 56.575 9.5248 57.275 9.8248L49.85 17.2498L55.25 22.6498L62.675 15.2248C63.025 15.9248 63.2625 16.6123 63.3875 17.2873C63.5125 17.9623 63.575 18.6748 63.575 19.4248C63.575 22.3748 62.5625 24.8623 60.5375 26.8873C58.5125 28.9123 56.025 29.9248 53.075 29.9248C52.475 29.9248 51.875 29.8748 51.275 29.7748C50.675 29.6748 50.1 29.4998 49.55 29.2498L15.8 62.9998Z\" fill=\"url(#paint0_linear_315_634)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_315_634\" x1=\"35.7875\" y1=\"8.9248\" x2=\"35.7875\" y2=\"62.9998\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1C1B1F\"/>\\n<stop offset=\"1\" stop-color=\"#787485\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q4exas\",\"data-framer-name\":\"Group 804\",name:\"Group 804\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d4sk5h\",\"data-framer-name\":\"Group 806\",name:\"Group 806\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mq20ka\",\"data-framer-name\":\"Rectangle 79\",name:\"Rectangle 79\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"At Bright View Exteriors, our team believes that the best projects start with honest, professional advice. We want to know everything about your roof so we can give you the most accurate inspection and estimate possible.\"})}),className:\"framer-cv77ug\",\"data-framer-name\":\"At Bright View Exteriors, our team believes that the best projects start with honest, professional advice. We want to know everything about your roof so we can give you the most accurate inspection and estimate possible.\",fonts:[\"Inter-Medium\"],name:\"At Bright View Exteriors, our team believes that the best projects start with honest, professional advice. We want to know everything about your roof so we can give you the most accurate inspection and estimate possible.\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Honest Professional advice\"})}),className:\"framer-1oat3y8\",\"data-framer-name\":\"Honest Professional advice\",fonts:[\"Inter-SemiBold\"],name:\"Honest Professional advice\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yzxhc6\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:72,intrinsicWidth:81,name:\"Group\",svg:'<svg width=\"81\" height=\"72\" viewBox=\"0 0 81 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M58.4066 29.6089C56.8477 31.1677 54.2497 31.1677 52.6909 29.6089L34.8243 11.7822L6.64539 39.9211L4.00737 37.403C-0.669123 32.7265 -0.669123 25.1322 4.00737 20.4557L20.9547 3.50843C25.6312 -1.16806 33.2255 -1.16806 37.9019 3.50843L58.4066 23.9731C59.9654 25.5319 59.9654 28.05 58.4066 29.6089ZM61.2045 21.1352C64.3221 24.2529 64.3221 29.3291 61.2045 32.4467C56.1283 37.5229 50.7723 33.3261 49.893 32.4467L34.8642 17.418L12.6009 39.6813C11.0421 41.2401 11.0421 43.7582 12.6009 45.3171C14.1598 46.8759 16.6779 46.8759 18.2767 45.3171L36.7428 26.8509L39.5807 29.6888L21.1145 48.1549C19.5557 49.7138 19.5557 52.2319 21.1145 53.7907C22.6734 55.3495 25.1915 55.3495 26.7903 53.7907L45.2564 35.3246L48.0943 38.1624L29.6282 56.6286C28.0693 58.1874 28.0693 60.7055 29.6282 62.2644C31.187 63.8232 33.7051 63.8232 35.2639 62.2644L53.7301 43.7982L56.568 46.6361L38.1018 65.1022C36.543 66.6611 36.543 69.1792 38.1018 70.738C39.6606 72.2968 42.1787 72.2968 43.7376 70.738L76.9926 37.403C81.6691 32.7265 81.6691 25.1322 76.9926 20.4557L60.0453 3.50843C55.4488 -1.08812 48.0144 -1.16806 43.3379 3.26861L61.2045 21.1352Z\" fill=\"url(#paint0_linear_315_642)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_315_642\" x1=\"40.5\" y1=\"0\" x2=\"40.8282\" y2=\"53.9321\" gradientUnits=\"userSpaceOnUse\">\\n<stop/>\\n<stop offset=\"1\" stop-color=\"#989494\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w9y6k1\",\"data-framer-name\":\"Group 805\",name:\"Group 805\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-114ti4n\",\"data-framer-name\":\"Group 807\",name:\"Group 807\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-48y4st\",\"data-framer-name\":\"Rectangle 80\",name:\"Rectangle 80\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"Don't just let anyone work on your roof. Our crews are licensed and insured, and we take our job seriously. We know that your home is your sanctuary, and you can rest assured that you'll have experts servicing it.\"})}),className:\"framer-1d0flnp\",\"data-framer-name\":\"Don't just let anyone work on your roof. Our crews are licensed and insured, and we take our job seriously. We know that your home is your sanctuary, and you can rest assured that you'll have experts servicing it.\",fonts:[\"Inter-Medium\"],name:\"Don't just let anyone work on your roof. Our crews are licensed and insured, and we take our job seriously. We know that your home is your sanctuary, and you can rest assured that you'll have experts servicing it.\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Licensed & Insured Technicians\"})}),className:\"framer-17oaba5\",\"data-framer-name\":\"Licensed & Insured Technicians\",fonts:[\"Inter-SemiBold\"],name:\"Licensed & Insured Technicians\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3nlt2v\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:66,name:\"Vector\",svg:'<svg width=\"66\" height=\"80\" viewBox=\"0 0 66 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M33 0L0.5 14.5455V36.3636C0.5 56.5455 14.3667 75.4182 33 80C51.6333 75.4182 65.5 56.5455 65.5 36.3636V14.5455L33 0Z\" fill=\"url(#paint0_linear_315_649)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_315_649\" x1=\"33\" y1=\"0\" x2=\"33.5\" y2=\"60\" gradientUnits=\"userSpaceOnUse\">\\n<stop/>\\n<stop offset=\"1\" stop-color=\"#989494\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13f7ckx\",\"data-framer-name\":\"Frame 853\",name:\"Frame 853\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hlv3yt\",\"data-framer-name\":\"Frame 852\",name:\"Frame 852\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kz5mff\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 91, 28)\",\"--framer-text-transform\":\"uppercase\"},children:\"IF YOu have been considering roofing, why hesitate?\"})}),transformTemplate:undefined},yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(216, 104, 100)\",\"--framer-text-transform\":\"uppercase\"},children:\"IF YOu have been considering roofing, why hesitate?\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(216, 104, 100)\",\"--framer-text-transform\":\"uppercase\"},children:\"IF YOu have been considering roofing, why hesitate?\"})}),className:\"framer-9k10fz\",\"data-framer-name\":\"Know When To Call for Roof Repairs\",fonts:[\"Inter-SemiBold\"],name:\"Know When To Call for Roof Repairs\",transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"High-Quality Products, Expert Installation\"})}),transformTemplate:undefined},yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"High-Quality Products, Expert Installation\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-transform\":\"capitalize\"},children:\"High-Quality Products, Expert Installation\"})}),className:\"framer-16kg3tc\",\"data-framer-name\":\"High-Quality Products, Expert Installation\",fonts:[\"Inter-SemiBold\"],name:\"High-Quality Products, Expert Installation\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xrzgml\",\"data-framer-name\":\"Group 833\",name:\"Group 833\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XJQnsKNAR\"},nodeId:\"yUXjKyLyB\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-4sl1td framer-15p6hxb\",\"data-framer-name\":\"Group 3\",name:\"Group 3\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-piraa9\",\"data-framer-name\":\"Rectangle 2\",name:\"Rectangle 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Free Estimate today\"})}),transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Free Estimate today\"})}),className:\"framer-5da7qj\",\"data-framer-name\":\"Get started today\",fonts:[\"Inter-Bold\"],name:\"Get started today\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xi223c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{direction:\"right\"}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"sBrERjTgG\",intervalControl:1.5,itemAmount:1,layoutId:\"sBrERjTgG\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pyeav0\",\"data-framer-name\":\"Frame 26\",name:\"Frame 26\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"724px\",src:\"https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg\",srcSet:\"https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg 4096w\"},className:\"framer-147pnp7\",\"data-framer-name\":\"Rectangle 24\",name:\"Rectangle 24\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"724px\",src:\"https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg\",srcSet:\"https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg 3992w\"},className:\"framer-k9c36a\",\"data-framer-name\":\"Rectangle 25\",name:\"Rectangle 25\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"724px\",src:\"https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg\",srcSet:\"https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg 4096w\"},className:\"framer-antbp0\",\"data-framer-name\":\"Rectangle 26\",name:\"Rectangle 26\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pyeav0\",\"data-framer-name\":\"Frame 26\",name:\"Frame 26\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"724px\",src:\"https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg\",srcSet:\"https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg 4096w\"},className:\"framer-147pnp7\",\"data-framer-name\":\"Rectangle 24\",name:\"Rectangle 24\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"724px\",src:\"https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg\",srcSet:\"https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg 3992w\"},className:\"framer-k9c36a\",\"data-framer-name\":\"Rectangle 25\",name:\"Rectangle 25\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"724px\",src:\"https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg\",srcSet:\"https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg 4096w\"},className:\"framer-antbp0\",\"data-framer-name\":\"Rectangle 26\",name:\"Rectangle 26\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pyeav0\",\"data-framer-name\":\"Frame 26\",name:\"Frame 26\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"724px\",src:\"https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg\",srcSet:\"https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rJ7NEubXD7PO5jMjBkHfNLAP28.jpg 4096w\"},className:\"framer-147pnp7\",\"data-framer-name\":\"Rectangle 24\",name:\"Rectangle 24\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"724px\",src:\"https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg\",srcSet:\"https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7MJaAm0eJUCZmDuDTyKMRh2k5A.jpg 3992w\"},className:\"framer-k9c36a\",\"data-framer-name\":\"Rectangle 25\",name:\"Rectangle 25\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"724px\",src:\"https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg\",srcSet:\"https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GLD4mdSaetlKsqyQ8zvuYArKUw.jpg 4096w\"},className:\"framer-antbp0\",\"data-framer-name\":\"Rectangle 26\",name:\"Rectangle 26\"})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kdcgw7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w1h6am\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17q1hng\",\"data-framer-name\":\"Frame 855\",name:\"Frame 855\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hfzxdx\",\"data-framer-name\":\"Frame 854\",name:\"Frame 854\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uqm5nw hidden-1fd5piu\",\"data-framer-name\":\"Frame 52\",name:\"Frame 52\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Here are the answers to some of our most frequently asked questions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Here are the answers to some of our most frequently asked questions\"})}),className:\"framer-1jmhtmy\",\"data-framer-name\":\"When Should I Call?\",fonts:[\"Inter-SemiBold\"],name:\"When Should I Call?\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n63t36\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{width:\"710px\",y:7770},yQFoMl4v5:{width:\"350px\",y:7806.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:218,width:\"1200px\",y:4909,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5v0975-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{variant:\"w83M5IIkb\"},yQFoMl4v5:{variant:\"ijkbZexcq\"}},children:/*#__PURE__*/_jsx(Question1,{height:\"100%\",id:\"koGzAXtfq\",layoutId:\"koGzAXtfq\",style:{width:\"100%\"},variant:\"IzmRoYf60\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{width:\"710px\",y:7998},yQFoMl4v5:{width:\"350px\",y:8057.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:218,width:\"1200px\",y:5137,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ywc6yf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{variant:\"qmu6W_xYJ\"},yQFoMl4v5:{variant:\"ijkbZexcq\"}},children:/*#__PURE__*/_jsx(Question1,{height:\"100%\",id:\"i7VgokFMu\",layoutId:\"i7VgokFMu\",style:{width:\"100%\"},variant:\"WEaSOF9FT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{width:\"710px\",y:8226},yQFoMl4v5:{width:\"350px\",y:8308.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:218,width:\"1200px\",y:5365,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hv0rhh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{variant:\"qmu6W_xYJ\"},yQFoMl4v5:{variant:\"ijkbZexcq\"}},children:/*#__PURE__*/_jsx(Question1,{height:\"100%\",id:\"NsjqG5i5P\",layoutId:\"NsjqG5i5P\",style:{width:\"100%\"},variant:\"WEaSOF9FT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{width:\"710px\",y:8454},yQFoMl4v5:{width:\"350px\",y:8559.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:218,width:\"1200px\",y:5593,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lrf1kl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{variant:\"qmu6W_xYJ\"},yQFoMl4v5:{variant:\"ijkbZexcq\"}},children:/*#__PURE__*/_jsx(Question1,{height:\"100%\",id:\"W7yhO0ECV\",layoutId:\"W7yhO0ECV\",style:{width:\"100%\"},variant:\"WEaSOF9FT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{width:\"710px\",y:8682},yQFoMl4v5:{width:\"350px\",y:8810.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:218,width:\"1200px\",y:5821,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rrqb89-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{variant:\"qmu6W_xYJ\"},yQFoMl4v5:{variant:\"ijkbZexcq\"}},children:/*#__PURE__*/_jsx(Question1,{height:\"100%\",id:\"UWlDkkpi7\",layoutId:\"UWlDkkpi7\",style:{width:\"100%\"},variant:\"WEaSOF9FT\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ziiqmg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1od6gfw\",\"data-framer-name\":\"Frame 835\",name:\"Frame 835\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u0derx\",\"data-framer-name\":\"Black Background Box\",name:\"Black Background Box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11z0ei0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l5zwdk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wza8aq\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3g54rw\",\"data-framer-name\":\"Vector 2\",layout:\"position\",name:\"Vector 2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3 23\"><path d=\"M 4.918 397.285 L 4.918 2.128\" fill=\"transparent\" stroke-width=\"21.43\" stroke=\"rgb(216,104,100)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9553074516,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"WHAT WE DO\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"WHAT WE DO\"})}),className:\"framer-1174q7d\",\"data-framer-name\":\"WHAT WE DO\",fonts:[\"Inter-Medium\"],name:\"WHAT WE DO\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We Provide Quality\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We Provide Quality\"})}),className:\"framer-1gq9qkh\",\"data-framer-name\":\"We Provide Quality\",fonts:[\"Inter-Bold\"],name:\"We Provide Quality\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Roofing Services\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Roofing Services\"})}),className:\"framer-k0tfjs\",\"data-framer-name\":\"Roofing Services\",fonts:[\"Inter-Bold\"],name:\"Roofing Services\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"At Bright View Exteriors, we uphold the highest quality roofing services, ensuring you and your family are well protected.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Trusted by over 1000 families in the DMV area.\"})]}),fonts:[\"Inter-SemiBold\"],transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"At Bright View Exteriors, we uphold the highest quality roofing services, ensuring you and your family are well protected.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Trusted by over 1000 families in the DMV area.\"})]}),className:\"framer-lx71m8\",\"data-framer-name\":\"At XYZ company, we uphold the highest quality roofing services, making sure you and your family are well protected. Trusted by over XYZ families across the XYZ area.\",fonts:[\"Inter\"],name:\"At XYZ company, we uphold the highest quality roofing services, making sure you and your family are well protected. Trusted by over XYZ families across the XYZ area.\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2grv0i\",\"data-framer-name\":\"Group 11\",name:\"Group 11\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3wqje3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-49nxz8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12q5qqu\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gw6m7s\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:36,name:\"Vector\",svg:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.24 15.58C10.12 21.24 14.76 25.86 20.42 28.76L24.82 24.36C25.36 23.82 26.16 23.64 26.86 23.88C29.1 24.62 31.52 25.02 34 25.02C35.1 25.02 36 25.92 36 27.02V34C36 35.1 35.1 36 34 36C15.22 36 0 20.78 0 2C0 0.9 0.9 0 2 0H9C10.1 0 11 0.9 11 2C11 4.5 11.4 6.9 12.14 9.14C12.36 9.84 12.2 10.62 11.64 11.18L7.24 15.58Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-110g75k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"FREE QUOTE TODAY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"FREE QUOTE TODAY\"})}),className:\"framer-19y0vv1\",\"data-framer-name\":\"CALL FOR SERVICES\",fonts:[\"Inter-Bold\"],name:\"CALL FOR SERVICES\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"tel:+12405997793\",nodeId:\"KDVAJfFh6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36.5,intrinsicWidth:322.5,loading:getLoadingLazyAtYPosition(9607.5),pixelHeight:73,pixelWidth:645,src:\"https://framerusercontent.com/images/gLahCoEo7UccyCQOLGqAoKSRQl0.png\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36.5,intrinsicWidth:322.5,loading:getLoadingLazyAtYPosition(9782.300000000001),pixelHeight:73,pixelWidth:645,src:\"https://framerusercontent.com/images/gLahCoEo7UccyCQOLGqAoKSRQl0.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:36.5,intrinsicWidth:322.5,loading:getLoadingLazyAtYPosition(6741.5),pixelHeight:73,pixelWidth:645,src:\"https://framerusercontent.com/images/gLahCoEo7UccyCQOLGqAoKSRQl0.png\"},className:\"framer-qmnzzi framer-15p6hxb\",\"data-framer-name\":\"$240_599_7793\",name:\"$240_599_7793\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y3ekbm\",\"data-framer-name\":\"Rectangle 10\",name:\"Rectangle 10\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tla7ts\",\"data-framer-name\":\"Group 832\",name:\"Group 832\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22.25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"+\"})}),className:\"framer-4dpy2l\",\"data-framer-name\":\"+\",fonts:[\"Inter-SemiBold\"],name:\"+\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"47.42px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"45\"})}),className:\"framer-ypoh3t\",\"data-framer-name\":\"45\",fonts:[\"Inter-SemiBold\"],name:\"45\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13.75px\",\"--framer-line-height\":\"91%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Years of Combined\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13.75px\",\"--framer-line-height\":\"91%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Experience\"})]}),className:\"framer-12n5mf9\",\"data-framer-name\":\"Years of Combined Experience\",fonts:[\"Inter\"],name:\"Years of Combined Experience\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pek9xi\",\"data-framer-name\":\"Photos\",name:\"Photos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:720,loading:getLoadingLazyAtYPosition(9681),pixelHeight:960,pixelWidth:720,src:\"https://framerusercontent.com/images/yrBd4JPctvdJHC1J9zElSesMn78.jpeg\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:720,loading:getLoadingLazyAtYPosition(10002.7),pixelHeight:960,pixelWidth:720,src:\"https://framerusercontent.com/images/yrBd4JPctvdJHC1J9zElSesMn78.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:720,loading:getLoadingLazyAtYPosition(6214),pixelHeight:960,pixelWidth:720,src:\"https://framerusercontent.com/images/yrBd4JPctvdJHC1J9zElSesMn78.jpeg\"},className:\"framer-ad8fzs\",\"data-framer-name\":\"Rectangle 10\",name:\"Rectangle 10\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:731,intrinsicWidth:735,loading:getLoadingLazyAtYPosition(9953),pixelHeight:731,pixelWidth:735,src:\"https://framerusercontent.com/images/rm4BzcRujS6Wk0zwxVILbS1NfOw.jpeg\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:731,intrinsicWidth:735,loading:getLoadingLazyAtYPosition(10282.7),pixelHeight:731,pixelWidth:735,src:\"https://framerusercontent.com/images/rm4BzcRujS6Wk0zwxVILbS1NfOw.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:731,intrinsicWidth:735,loading:getLoadingLazyAtYPosition(6486),pixelHeight:731,pixelWidth:735,src:\"https://framerusercontent.com/images/rm4BzcRujS6Wk0zwxVILbS1NfOw.jpeg\"},className:\"framer-6dgfvt\",\"data-framer-name\":\"Rectangle 11\",name:\"Rectangle 11\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:552,intrinsicWidth:736,loading:getLoadingLazyAtYPosition(9678),pixelHeight:552,pixelWidth:736,src:\"https://framerusercontent.com/images/9L2b9HiwSOklfjiqnuegAmipLao.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:552,intrinsicWidth:736,loading:getLoadingLazyAtYPosition(6211),pixelHeight:552,pixelWidth:736,src:\"https://framerusercontent.com/images/9L2b9HiwSOklfjiqnuegAmipLao.jpeg\"},className:\"framer-gto6zh hidden-ne0j4j\",\"data-framer-name\":\"Rectangle 12\",name:\"Rectangle 12\"})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aocif1\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10265),positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png\",srcSet:\"https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png 2880w\"}},yQFoMl4v5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10592.2),sizes:\"390px\",src:\"https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png\",srcSet:\"https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6797),positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png\",srcSet:\"https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dl71Iw0PTWq5ZSnNClg3y1zP8j8.png 2880w\"},className:\"framer-hxlv32\",\"data-framer-name\":\"Rectangle 18\",name:\"Rectangle 18\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hhjakq\",\"data-framer-name\":\"Frame 860\",name:\"Frame 860\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7gdyf0\",\"data-framer-name\":\"Frame 859\",name:\"Frame 859\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bi2q75\",\"data-framer-name\":\"Frame 52\",name:\"Frame 52\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1n1ddvg\",\"data-framer-name\":\"Vector 2\",layout:\"position\",name:\"Vector 2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3 23\"><path d=\"M 4.918 397.285 L 4.918 2.128\" fill=\"transparent\" stroke-width=\"21.43\" stroke=\"rgb(216,104,100)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9553074516,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 91, 28)\",\"--framer-text-transform\":\"uppercase\"},children:\"WHERE AFFORDABILITY MEETS SUSTAINABILITY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(243, 91, 28)\",\"--framer-text-transform\":\"uppercase\"},children:\"WHERE AFFORDABILITY MEETS SUSTAINABILITY\"})}),className:\"framer-1l5ar2v\",\"data-framer-name\":\"high VAlue you can expect\",fonts:[\"Inter-SemiBold\"],name:\"high VAlue you can expect\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j4vjk8\",\"data-framer-name\":\"Frame 51\",name:\"Frame 51\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contact Us For A Free Roofing Inspection and Quote!\"})})},yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contact Us For A Free Roofing Inspection and Quote!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contact Us For A Free Roofing Inspection and Quote!\"})}),className:\"framer-q7jn8x\",\"data-framer-name\":\"Get In Touch For A Free Roofing Inspection and Quote!\",fonts:[\"Inter-Bold\"],name:\"Get In Touch For A Free Roofing Inspection and Quote!\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Looking for a reliable service to fix your damaged roof? Let the experts at Bright View Exteriors restore your home to its original glory!\"})})},yQFoMl4v5:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Looking for a reliable service to fix your damaged roof?\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let the experts at Bright View Exteriors restore your home to its original glory!\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Looking for a reliable service to fix your damaged roof? Let the experts at Bright View Exteriors restore your home to its original glory!\"})}),className:\"framer-1jz63de\",\"data-framer-name\":\"Looking for a reliable roofer to fix your damaged roof? Let the experts and Bright View Exteriors restore your home to its original glory!\",fonts:[\"Inter-SemiBold\"],name:\"Looking for a reliable roofer to fix your damaged roof? Let the experts and Bright View Exteriors restore your home to its original glory!\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XJQnsKNAR\"},nodeId:\"qqRCWNA2m\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-221wr3 framer-15p6hxb\",\"data-framer-name\":\"Group 2\",name:\"Group 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1393g65\",\"data-framer-name\":\"Rectangle 2\",name:\"Rectangle 2\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UBimYW7cG:{transformTemplate:transformTemplate1},yQFoMl4v5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Free Estimate Today\"})}),transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Free Estimate Today\"})}),className:\"framer-sn26jx\",\"data-framer-name\":\"Get My Free Estimate\",fonts:[\"Inter-Bold\"],name:\"Get My Free Estimate\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6884.894485473633),sizes:\"428px\",src:\"https://framerusercontent.com/images/ELveHJgWptNENH0vj8v5gE38IU.jpg\",srcSet:\"https://framerusercontent.com/images/ELveHJgWptNENH0vj8v5gE38IU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ELveHJgWptNENH0vj8v5gE38IU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ELveHJgWptNENH0vj8v5gE38IU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ELveHJgWptNENH0vj8v5gE38IU.jpg 4096w\"},className:\"framer-1aupdzf hidden-1fd5piu hidden-ne0j4j\",\"data-framer-name\":\"Rectangle 26\",name:\"Rectangle 26\"})]})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-rdRAF { background: white; }`,\".framer-rdRAF.framer-15p6hxb, .framer-rdRAF .framer-15p6hxb { display: block; }\",\".framer-rdRAF.framer-6nw8ye { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-rdRAF .framer-htdft3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-z9pwm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 500px; height: 103px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1234px; }\",\".framer-rdRAF .framer-13qnp8t { aspect-ratio: 1.7424242424242424 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 89px); position: relative; text-decoration: none; width: 155px; }\",\".framer-rdRAF .framer-tv8u1q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-kfe60d { aspect-ratio: 7.791666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; text-decoration: none; width: 190px; }\",\".framer-rdRAF .framer-1asf2g6, .framer-rdRAF .framer-221wr3 { flex: none; height: 70px; overflow: visible; position: relative; text-decoration: none; width: 296px; }\",\".framer-rdRAF .framer-2zi2q6, .framer-rdRAF .framer-1393g65 { background-color: #f35b1c; border-bottom-left-radius: 33px; border-bottom-right-radius: 33px; border-top-left-radius: 33px; border-top-right-radius: 33px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-rdRAF .framer-10ie2ye, .framer-rdRAF .framer-sn26jx { --framer-paragraph-spacing: 0px; flex: none; height: 24px; left: calc(50.00000000000002% - 243px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); white-space: pre-wrap; width: 243px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-mkqbjb { flex: none; height: 696px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-1y5fyts { background-color: rgba(22, 21, 21, 0.55); bottom: 0px; flex: none; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-rdRAF .framer-1pnpl2f { align-content: center; align-items: center; bottom: 80px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 174px; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; }\",\".framer-rdRAF .framer-deuctb { background-color: rgba(39, 39, 39, 0.8); flex: none; height: 174px; position: relative; width: 718px; }\",\".framer-rdRAF .framer-1efeq1f { flex: none; height: 70px; left: 61px; overflow: visible; position: absolute; right: 63px; text-decoration: none; top: 17px; }\",\".framer-rdRAF .framer-7letku { --border-bottom-width: 3px; --border-color: #f35b1c; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; background-color: rgba(243, 91, 28, 0.5); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: center; left: 0px; padding: 0px; position: absolute; top: 0px; width: 594px; }\",\".framer-rdRAF .framer-1lgfazi { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 24px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-rdRAF .framer-1jmcihr { bottom: 11px; flex: none; height: 58px; left: calc(49.86072423398331% - 636px / 2); overflow: hidden; position: absolute; width: 636px; }\",\".framer-rdRAF .framer-15k6kf1 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 450px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 186px; }\",\".framer-rdRAF .framer-5x8359 { flex: none; height: 58px; overflow: visible; position: relative; width: 186px; }\",\".framer-rdRAF .framer-nl7hrt { background: linear-gradient(180deg, #d86864 0%, rgb(133, 72, 69) 100%); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 55px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-rdRAF .framer-1rixjqf { --framer-paragraph-spacing: 0px; flex: none; height: 34px; left: 23px; position: absolute; right: 101px; top: 10px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-tysbvt { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 94px; position: absolute; right: 19px; top: 7px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-n99v3w { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 11px; position: absolute; top: 0px; white-space: pre-wrap; width: 18px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1rh148y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 52px / 2); width: 436px; }\",\".framer-rdRAF .framer-onf64c { flex: none; height: 48px; overflow: visible; position: relative; width: 199px; }\",\".framer-rdRAF .framer-8md16n { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-rdRAF .framer-qek2um { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 85px; position: absolute; top: 2px; white-space: pre; width: auto; }\",\".framer-rdRAF .framer-1nzulhm, .framer-rdRAF .framer-hqnfwj { flex: none; height: 51px; position: relative; width: 5px; }\",\".framer-rdRAF .framer-wtr6k6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 46px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 184px; }\",\".framer-rdRAF .framer-dc66gi, .framer-rdRAF .framer-h3octk, .framer-rdRAF .framer-7d5h2w, .framer-rdRAF .framer-i9tdmr, .framer-rdRAF .framer-1174q7d, .framer-rdRAF .framer-1gq9qkh, .framer-rdRAF .framer-k0tfjs, .framer-rdRAF .framer-1l5ar2v { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rdRAF .framer-1kzskne { flex: none; height: 20px; position: relative; width: 132px; }\",\".framer-rdRAF .framer-j3g4zz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 52px; transform: translateX(-50%); width: min-content; }\",\".framer-rdRAF .framer-tuzs9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1234px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-110lz2v { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 830px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1ugt2l7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 55px; height: 113px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 979px; }\",\".framer-rdRAF .framer-t71orh { aspect-ratio: 2.404255319148936 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 94px); mix-blend-mode: darken; position: relative; width: 226px; }\",\".framer-rdRAF .framer-plxd28 { aspect-ratio: 2.838137472283814 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 320px; }\",\".framer-rdRAF .framer-1kw8m6x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 53px; height: 1304px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-4b2u0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 67px; height: 1271px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 573px; }\",\".framer-rdRAF .framer-1hj7gm5, .framer-rdRAF .framer-1fmy5fe, .framer-rdRAF .framer-py2mwm, .framer-rdRAF .framer-155k5a4 { flex: none; height: 477px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-1a3e87l { flex: none; height: 175px; overflow: hidden; position: relative; width: 573px; }\",\".framer-rdRAF .framer-1nv368t { flex: none; height: 8px; left: calc(49.91273996509601% - 573px / 2); position: absolute; top: 0px; width: 573px; }\",\".framer-rdRAF .framer-16g691v { bottom: 0px; flex: none; height: 100px; left: calc(49.91273996509601% - 573px / 2); overflow: visible; position: absolute; width: 573px; }\",\".framer-rdRAF .framer-14833fb { background-color: rgba(243, 91, 28, 0.92); border-bottom-left-radius: 47px; border-bottom-right-radius: 47px; border-top-left-radius: 47px; border-top-right-radius: 47px; flex: none; height: 100px; left: 0px; position: absolute; text-decoration: none; top: 0px; width: 569px; }\",\".framer-rdRAF .framer-1v6gwsl { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 32px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-rdRAF .framer-1bpqiiz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 53px; height: 1304px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 579px; }\",\".framer-rdRAF .framer-14l7e25 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-1e8gm7s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 555px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-vb961k { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 579px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-m3eqwp { flex: none; height: 650px; overflow: visible; position: relative; width: 100%; }\",\".framer-rdRAF .framer-19pvgb { background-color: #242121; bottom: 0px; flex: none; left: -5px; position: absolute; right: -4px; top: 0px; }\",\".framer-rdRAF .framer-18bzui1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 67px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 1427px; }\",\".framer-rdRAF .framer-6t68ah, .framer-rdRAF .framer-b2cezw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-1bpiz69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-1lfrcy1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-12daxnx { flex: none; height: 48px; overflow: hidden; position: relative; width: 199px; }\",\".framer-rdRAF .framer-77pfbl { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-rdRAF .framer-1twbdcp { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 85px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-rdRAF .framer-3r3v6r { flex: none; height: 39px; position: relative; width: 4px; }\",\".framer-rdRAF .framer-apjvrz { flex: none; height: 46px; overflow: hidden; position: relative; width: 185px; }\",\".framer-rdRAF .framer-huqf84, .framer-rdRAF .framer-9k10fz { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-rdRAF .framer-17wy4sg { bottom: 0px; flex: none; height: 20px; left: 1px; position: absolute; width: 133px; }\",\".framer-rdRAF .framer-g1sb73-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-1wcbfsv { -webkit-backdrop-filter: blur(1.1658897399902344px); backdrop-filter: blur(1.1658897399902344px); background-color: #ffffff; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0px 1.1658897399902344px 3.4976694583892822px 0px rgba(0, 0, 0, 0.1), 0px 0px 0px 1.1658897399902344px rgba(30, 41, 59, 1), 0px 6.21807861328125px 6.21807861328125px 0px rgba(0, 0, 0, 0.25); height: 221px; overflow: hidden; position: relative; width: 440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rdRAF .framer-pgh4a6, .framer-rdRAF .framer-147xi7g { -webkit-filter: blur(49.74462890625px); background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #d5fcf5 0%, rgba(157, 255, 237, 0.25) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(49.74462890625px); flex: none; height: 138px; left: 295px; position: absolute; top: 124px; width: 191px; }\",\".framer-rdRAF .framer-1iyzxad, .framer-rdRAF .framer-1nlgv4v { flex: none; height: 101px; left: 28px; overflow: visible; position: absolute; top: 23px; width: 364px; }\",\".framer-rdRAF .framer-ybdv3h, .framer-rdRAF .framer-gspox8 { --framer-paragraph-spacing: 0px; flex: none; height: 101px; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 364px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1mjpwkq, .framer-rdRAF .framer-hqz02o { --framer-paragraph-spacing: 0px; flex: none; height: 47px; left: 90px; position: absolute; top: 147px; white-space: pre-wrap; width: 194px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1qkw4p1, .framer-rdRAF .framer-1jjr4te { border-bottom-left-radius: 23px; border-bottom-right-radius: 23px; border-top-left-radius: 23px; border-top-right-radius: 23px; flex: none; height: 47px; left: 28px; overflow: hidden; position: absolute; top: 147px; width: 47px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rdRAF .framer-41p95m, .framer-rdRAF .framer-yigr6m { flex: none; height: 20px; left: 59px; position: absolute; top: 172px; width: 19px; }\",\".framer-rdRAF .framer-18ybn5m, .framer-rdRAF .framer-i7tzi5 { flex: none; height: 22px; left: calc(68.60680948604238% - 22px / 2); position: absolute; top: 170px; width: 22px; }\",\".framer-rdRAF .framer-qqnfez, .framer-rdRAF .framer-1d9lztf { flex: none; height: 22px; left: calc(73.64098917354237% - 22px / 2); position: absolute; top: 170px; width: 22px; }\",\".framer-rdRAF .framer-12won3k, .framer-rdRAF .framer-74eg4q { flex: none; height: 22px; left: calc(78.67605664513327% - 22px / 2); position: absolute; top: 170px; width: 22px; }\",\".framer-rdRAF .framer-1kcp39j, .framer-rdRAF .framer-w00q2y { flex: none; height: 22px; left: calc(83.71023633263329% - 22px / 2); position: absolute; top: 170px; width: 22px; }\",\".framer-rdRAF .framer-1jay7ui, .framer-rdRAF .framer-lg41dt { flex: none; height: 22px; left: calc(88.74485991217873% - 22px / 2); position: absolute; top: 170px; width: 22px; }\",\".framer-rdRAF .framer-oeku5b { background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 1.075032353401184px 2.150064706802368px -1.075032353401184px rgba(0, 0, 0, 0.1), 0px 1.075032353401184px 3.225097179412842px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 0px 0px 1.075032353401184px rgba(30, 41, 59, 1); height: 221px; overflow: hidden; position: relative; width: 440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rdRAF .framer-1a8b4t4 { -webkit-filter: blur(45.86804962158203px); background: radial-gradient(44.715447797598614% 85.40588216397549% at 49.99999935696453% 49.99999392158292%, #f5cdfc 0%, rgba(247, 203, 255, 0.25) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(45.86804962158203px); flex: none; height: 172px; left: -39px; position: absolute; top: -86px; width: 176px; }\",\".framer-rdRAF .framer-1guwvew, .framer-rdRAF .framer-1xgw5t0, .framer-rdRAF .framer-1p0kv2z { flex: none; height: 125px; left: 27px; overflow: visible; position: absolute; top: 17px; width: 335px; }\",\".framer-rdRAF .framer-1w0mawp, .framer-rdRAF .framer-1u0u1du, .framer-rdRAF .framer-1a0j7t5 { --framer-paragraph-spacing: 0px; flex: none; height: 125px; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 335px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-qihv9v, .framer-rdRAF .framer-y02fe6, .framer-rdRAF .framer-uevyzu { --framer-paragraph-spacing: 0px; flex: none; height: 43px; left: 85px; position: absolute; top: 151px; white-space: pre-wrap; width: 178px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-131gjo8 { flex: none; height: 20px; left: calc(67.2584115375172% - 20px / 2); position: absolute; top: 172px; width: 20px; }\",\".framer-rdRAF .framer-7cx88q { flex: none; height: 20px; left: calc(71.90063454888083% - 21px / 2); position: absolute; top: 172px; width: 21px; }\",\".framer-rdRAF .framer-fin0c0 { flex: none; height: 20px; left: calc(76.37994917956266% - 20px / 2); position: absolute; top: 172px; width: 20px; }\",\".framer-rdRAF .framer-1iptt6v { flex: none; height: 20px; left: calc(81.18463667956266% - 20px / 2); position: absolute; top: 172px; width: 20px; }\",\".framer-rdRAF .framer-14mejo9 { flex: none; height: 20px; left: calc(85.8268596909263% - 21px / 2); position: absolute; top: 172px; width: 21px; }\",\".framer-rdRAF .framer-213ku1 { border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; flex: none; height: 43px; left: 27px; overflow: hidden; position: absolute; top: 151px; width: 43px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rdRAF .framer-1qkm72x { flex: none; height: 18px; left: 53px; position: absolute; top: 179px; width: 18px; }\",\".framer-rdRAF .framer-p0huyn, .framer-rdRAF .framer-84agiy { background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 1.0750324726104736px 2.1500649452209473px -1.0750324726104736px rgba(0, 0, 0, 0.1), 0px 1.0750324726104736px 3.225097417831421px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 0px 0px 1.0750324726104736px rgba(30, 41, 59, 1); height: 221px; overflow: hidden; position: relative; width: 440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rdRAF .framer-ence96, .framer-rdRAF .framer-1ks24eo { -webkit-filter: blur(45.8680534362793px); background: radial-gradient(44.715447797598614% 85.40588216397549% at 49.99999935696453% 49.99999392158292%, #ffddb6 0%, rgba(255, 225, 180, 0.25) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(45.8680534362793px); flex: none; height: 146px; left: 282px; position: absolute; top: -36px; width: 192px; }\",\".framer-rdRAF .framer-zq84qu, .framer-rdRAF .framer-w6tr2n { flex: none; height: 20px; left: calc(67.27661111138083% - 20px / 2); position: absolute; top: 172px; width: 20px; }\",\".framer-rdRAF .framer-14rgew1, .framer-rdRAF .framer-1u3ne95 { flex: none; height: 20px; left: calc(71.91883412274447% - 21px / 2); position: absolute; top: 172px; width: 21px; }\",\".framer-rdRAF .framer-ua5e71, .framer-rdRAF .framer-1es0kx7 { flex: none; height: 20px; left: calc(76.39814875342628% - 20px / 2); position: absolute; top: 172px; width: 20px; }\",\".framer-rdRAF .framer-g282we, .framer-rdRAF .framer-4fh90d { flex: none; height: 20px; left: calc(81.20328014547175% - 20px / 2); position: absolute; top: 172px; width: 20px; }\",\".framer-rdRAF .framer-1dki9ax, .framer-rdRAF .framer-80rvou { flex: none; height: 20px; left: calc(85.84550315683538% - 20px / 2); position: absolute; top: 172px; width: 20px; }\",\".framer-rdRAF .framer-1xtfbrb, .framer-rdRAF .framer-18efi7 { border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; flex: none; height: 43px; left: 27px; overflow: hidden; position: absolute; top: 149px; width: 43px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rdRAF .framer-eebxty, .framer-rdRAF .framer-1rtjt6d { flex: none; height: 18px; left: 53px; position: absolute; top: 176px; width: 18px; }\",\".framer-rdRAF .framer-1y8y8w3 { -webkit-backdrop-filter: blur(1.1658897399902344px); backdrop-filter: blur(1.1658897399902344px); background-color: #ffffff; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0px 1.1658897399902344px 3.4976694583892822px 0px rgba(0, 0, 0, 0.1), 0px 0px 0px 1.1658897399902344px rgba(30, 41, 59, 1), 0px 6.21807861328125px 6.21807861328125px 0px rgba(0, 0, 0, 0.25); flex: none; height: 221px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rdRAF .framer-7drfvp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; min-height: 10px; min-width: 10px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-1fkbsgd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: 704px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-tdky20 { --framer-paragraph-spacing: 0px; flex: none; height: 29px; position: relative; white-space: pre-wrap; width: 327px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-ibeq7h { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 648px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1g5xiwx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-12wt94l { flex: none; height: 468px; overflow: visible; position: relative; width: 381px; }\",\".framer-rdRAF .framer-b3y90p { flex: none; height: 285px; left: 0px; overflow: visible; position: absolute; top: 183px; width: 381px; }\",\".framer-rdRAF .framer-1mdb9m, .framer-rdRAF .framer-48y4st { background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 285px; left: 0px; position: absolute; top: 0px; width: 381px; }\",\".framer-rdRAF .framer-1bq5xos { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 51px; position: absolute; top: 63px; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1rnsxw { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 79px; position: absolute; top: 88px; white-space: pre; width: auto; }\",\".framer-rdRAF .framer-151sq9o { flex: none; height: 72px; left: 155px; position: absolute; top: 0px; width: 73px; }\",\".framer-rdRAF .framer-q4exas { flex: none; height: 467px; overflow: visible; position: relative; width: 381px; }\",\".framer-rdRAF .framer-d4sk5h { flex: none; height: 280px; left: 0px; overflow: visible; position: absolute; top: 187px; width: 381px; }\",\".framer-rdRAF .framer-mq20ka { background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 280px; left: 0px; position: absolute; top: 0px; width: 381px; }\",\".framer-rdRAF .framer-cv77ug { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 51px; position: absolute; top: 59px; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1oat3y8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 3px; position: absolute; top: 88px; white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1yzxhc6 { flex: none; height: 72px; left: 150px; position: absolute; top: 0px; width: 81px; }\",\".framer-rdRAF .framer-1w9y6k1 { flex: none; height: 472px; overflow: visible; position: relative; width: 381px; }\",\".framer-rdRAF .framer-114ti4n { flex: none; height: 285px; left: 0px; overflow: visible; position: absolute; top: 187px; width: 381px; }\",\".framer-rdRAF .framer-1d0flnp { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 49px; position: absolute; top: 59px; white-space: pre-wrap; width: 283px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-17oaba5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 22px; position: absolute; top: 92px; white-space: pre-wrap; width: 339px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-3nlt2v { bottom: 392px; flex: none; left: 158px; position: absolute; right: 158px; top: 0px; }\",\".framer-rdRAF .framer-13f7ckx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-1hlv3yt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-kz5mff { flex: none; height: 190px; overflow: hidden; position: relative; width: 802px; }\",\".framer-rdRAF .framer-16kg3tc { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 51px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-rdRAF .framer-1xrzgml { bottom: 0px; flex: none; height: 70px; left: calc(50.00000000000002% - 273px / 2); overflow: visible; position: absolute; width: 273px; }\",\".framer-rdRAF .framer-4sl1td { flex: none; height: 70px; left: 0px; overflow: visible; position: absolute; text-decoration: none; top: 0px; width: 273px; }\",\".framer-rdRAF .framer-piraa9 { background-color: #f35b1c; border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; bottom: 0px; flex: none; left: -14px; position: absolute; right: -14px; top: 0px; }\",\".framer-rdRAF .framer-5da7qj { --framer-paragraph-spacing: 0px; flex: none; height: 27px; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-rdRAF .framer-xi223c-container { flex: none; height: 575px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-pyeav0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-147pnp7, .framer-rdRAF .framer-k9c36a, .framer-rdRAF .framer-antbp0 { flex: none; height: 575px; position: relative; width: 724px; }\",\".framer-rdRAF .framer-kdcgw7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 109px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-w1h6am { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-17q1hng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-1hfzxdx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1413px; }\",\".framer-rdRAF .framer-1uqm5nw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 30px; min-width: 282px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-1jmhtmy { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-n63t36 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-5v0975-container, .framer-rdRAF .framer-1ywc6yf-container, .framer-rdRAF .framer-hv0rhh-container, .framer-rdRAF .framer-lrf1kl-container, .framer-rdRAF .framer-rrqb89-container { flex: none; height: auto; position: relative; width: 1200px; }\",\".framer-rdRAF .framer-ziiqmg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1146px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rdRAF .framer-1od6gfw { flex: none; height: 654px; overflow: visible; position: relative; width: 100%; }\",\".framer-rdRAF .framer-1u0derx { align-content: center; align-items: center; background-color: #242121; bottom: -2px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 81px; height: min-content; justify-content: center; left: 0px; padding: 68px 0px 68px 0px; position: absolute; width: 100%; }\",\".framer-rdRAF .framer-11z0ei0 { flex: none; height: 520px; overflow: hidden; position: relative; width: 575px; }\",\".framer-rdRAF .framer-1l5zwdk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 144px; justify-content: center; left: calc(49.913043478260896% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: 2px; width: 100%; }\",\".framer-rdRAF .framer-1wza8aq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 31px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 191px; }\",\".framer-rdRAF .framer-3g54rw, .framer-rdRAF .framer-1n1ddvg { flex: none; height: 23px; position: relative; width: 3px; }\",\".framer-rdRAF .framer-lx71m8 { --framer-paragraph-spacing: 0px; bottom: 162px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 575px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-2grv0i { align-content: center; align-items: center; bottom: 2px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 43px; height: 68px; justify-content: center; left: calc(49.913043478260896% - 100% / 2); overflow: visible; padding: 0px; position: absolute; width: 100%; }\",\".framer-rdRAF .framer-3wqje3 { flex: none; height: 68px; overflow: hidden; position: relative; width: 315px; }\",\".framer-rdRAF .framer-49nxz8 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 68px; }\",\".framer-rdRAF .framer-12q5qqu { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-rdRAF .framer-1gw6m7s { flex: none; height: 36px; left: calc(50.00000000000002% - 36px / 2); position: absolute; top: calc(50.00000000000002% - 36px / 2); width: 36px; }\",\".framer-rdRAF .framer-110g75k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: calc(50.00000000000002% - 56px / 2); width: 204px; }\",\".framer-rdRAF .framer-19y0vv1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-qmnzzi { aspect-ratio: 8.835616438356164 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; text-decoration: none; width: 80%; }\",\".framer-rdRAF .framer-1y3ekbm { align-content: center; align-items: center; background: linear-gradient(180deg, #d86864 0%, rgba(247, 69, 30, 1) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 67px; justify-content: space-around; padding: 0px; position: relative; width: 211px; }\",\".framer-rdRAF .framer-1tla7ts { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 39px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 156px; }\",\".framer-rdRAF .framer-4dpy2l { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 18px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-ypoh3t { --framer-paragraph-spacing: 0px; flex: none; height: 34px; position: relative; white-space: pre-wrap; width: 62px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-12n5mf9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 74px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1pek9xi { flex: none; height: 520px; overflow: hidden; position: relative; width: 593px; }\",\".framer-rdRAF .framer-ad8fzs { flex: none; height: 243px; left: 3px; position: absolute; top: 3px; width: 336px; }\",\".framer-rdRAF .framer-6dgfvt { bottom: 2px; flex: none; height: 243px; left: 3px; position: absolute; width: 336px; }\",\".framer-rdRAF .framer-gto6zh { bottom: 0px; flex: none; left: 376px; position: absolute; top: 0px; width: 214px; }\",\".framer-rdRAF .framer-aocif1 { flex: none; height: 502px; overflow: visible; position: relative; width: 100%; }\",\".framer-rdRAF .framer-hxlv32 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 502px; justify-content: center; left: 0px; padding: 0px; position: absolute; top: calc(50.00000000000002% - 502px / 2); width: 100%; }\",\".framer-rdRAF .framer-hhjakq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1201px; }\",\".framer-rdRAF .framer-7gdyf0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-1bi2q75 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-1j4vjk8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rdRAF .framer-q7jn8x { --framer-paragraph-spacing: 0px; flex: none; height: 77px; position: relative; white-space: pre-wrap; width: 554px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1jz63de { --framer-paragraph-spacing: 0px; flex: none; height: 55px; position: relative; white-space: pre-wrap; width: 723px; word-break: break-word; word-wrap: break-word; }\",\".framer-rdRAF .framer-1aupdzf { flex: none; height: 326px; position: relative; width: 428px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rdRAF.framer-6nw8ye, .framer-rdRAF .framer-htdft3, .framer-rdRAF .framer-z9pwm, .framer-rdRAF .framer-tv8u1q, .framer-rdRAF .framer-1pnpl2f, .framer-rdRAF .framer-7letku, .framer-rdRAF .framer-15k6kf1, .framer-rdRAF .framer-1rh148y, .framer-rdRAF .framer-wtr6k6, .framer-rdRAF .framer-j3g4zz, .framer-rdRAF .framer-1ugt2l7, .framer-rdRAF .framer-1kw8m6x, .framer-rdRAF .framer-4b2u0i, .framer-rdRAF .framer-1bpqiiz, .framer-rdRAF .framer-14l7e25, .framer-rdRAF .framer-18bzui1, .framer-rdRAF .framer-6t68ah, .framer-rdRAF .framer-1bpiz69, .framer-rdRAF .framer-1lfrcy1, .framer-rdRAF .framer-7drfvp, .framer-rdRAF .framer-1fkbsgd, .framer-rdRAF .framer-b2cezw, .framer-rdRAF .framer-1g5xiwx, .framer-rdRAF .framer-13f7ckx, .framer-rdRAF .framer-1hlv3yt, .framer-rdRAF .framer-pyeav0, .framer-rdRAF .framer-kdcgw7, .framer-rdRAF .framer-w1h6am, .framer-rdRAF .framer-17q1hng, .framer-rdRAF .framer-1hfzxdx, .framer-rdRAF .framer-1uqm5nw, .framer-rdRAF .framer-n63t36, .framer-rdRAF .framer-ziiqmg, .framer-rdRAF .framer-1u0derx, .framer-rdRAF .framer-1l5zwdk, .framer-rdRAF .framer-1wza8aq, .framer-rdRAF .framer-2grv0i, .framer-rdRAF .framer-110g75k, .framer-rdRAF .framer-1tla7ts, .framer-rdRAF .framer-hxlv32, .framer-rdRAF .framer-hhjakq, .framer-rdRAF .framer-7gdyf0, .framer-rdRAF .framer-1bi2q75, .framer-rdRAF .framer-1j4vjk8 { gap: 0px; } .framer-rdRAF.framer-6nw8ye > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-rdRAF.framer-6nw8ye > :first-child, .framer-rdRAF .framer-htdft3 > :first-child, .framer-rdRAF .framer-wtr6k6 > :first-child, .framer-rdRAF .framer-j3g4zz > :first-child, .framer-rdRAF .framer-4b2u0i > :first-child, .framer-rdRAF .framer-1bpqiiz > :first-child, .framer-rdRAF .framer-14l7e25 > :first-child, .framer-rdRAF .framer-18bzui1 > :first-child, .framer-rdRAF .framer-6t68ah > :first-child, .framer-rdRAF .framer-1bpiz69 > :first-child, .framer-rdRAF .framer-1fkbsgd > :first-child, .framer-rdRAF .framer-b2cezw > :first-child, .framer-rdRAF .framer-13f7ckx > :first-child, .framer-rdRAF .framer-1hlv3yt > :first-child, .framer-rdRAF .framer-kdcgw7 > :first-child, .framer-rdRAF .framer-w1h6am > :first-child, .framer-rdRAF .framer-17q1hng > :first-child, .framer-rdRAF .framer-1hfzxdx > :first-child, .framer-rdRAF .framer-n63t36 > :first-child, .framer-rdRAF .framer-ziiqmg > :first-child, .framer-rdRAF .framer-1l5zwdk > :first-child, .framer-rdRAF .framer-110g75k > :first-child, .framer-rdRAF .framer-7gdyf0 > :first-child, .framer-rdRAF .framer-1j4vjk8 > :first-child { margin-top: 0px; } .framer-rdRAF.framer-6nw8ye > :last-child, .framer-rdRAF .framer-htdft3 > :last-child, .framer-rdRAF .framer-wtr6k6 > :last-child, .framer-rdRAF .framer-j3g4zz > :last-child, .framer-rdRAF .framer-4b2u0i > :last-child, .framer-rdRAF .framer-1bpqiiz > :last-child, .framer-rdRAF .framer-14l7e25 > :last-child, .framer-rdRAF .framer-18bzui1 > :last-child, .framer-rdRAF .framer-6t68ah > :last-child, .framer-rdRAF .framer-1bpiz69 > :last-child, .framer-rdRAF .framer-1fkbsgd > :last-child, .framer-rdRAF .framer-b2cezw > :last-child, .framer-rdRAF .framer-13f7ckx > :last-child, .framer-rdRAF .framer-1hlv3yt > :last-child, .framer-rdRAF .framer-kdcgw7 > :last-child, .framer-rdRAF .framer-w1h6am > :last-child, .framer-rdRAF .framer-17q1hng > :last-child, .framer-rdRAF .framer-1hfzxdx > :last-child, .framer-rdRAF .framer-n63t36 > :last-child, .framer-rdRAF .framer-ziiqmg > :last-child, .framer-rdRAF .framer-1l5zwdk > :last-child, .framer-rdRAF .framer-110g75k > :last-child, .framer-rdRAF .framer-7gdyf0 > :last-child, .framer-rdRAF .framer-1j4vjk8 > :last-child { margin-bottom: 0px; } .framer-rdRAF .framer-htdft3 > *, .framer-rdRAF .framer-1hfzxdx > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-rdRAF .framer-z9pwm > * { margin: 0px; margin-left: calc(500px / 2); margin-right: calc(500px / 2); } .framer-rdRAF .framer-z9pwm > :first-child, .framer-rdRAF .framer-tv8u1q > :first-child, .framer-rdRAF .framer-1pnpl2f > :first-child, .framer-rdRAF .framer-7letku > :first-child, .framer-rdRAF .framer-15k6kf1 > :first-child, .framer-rdRAF .framer-1rh148y > :first-child, .framer-rdRAF .framer-1ugt2l7 > :first-child, .framer-rdRAF .framer-1kw8m6x > :first-child, .framer-rdRAF .framer-1lfrcy1 > :first-child, .framer-rdRAF .framer-7drfvp > :first-child, .framer-rdRAF .framer-1g5xiwx > :first-child, .framer-rdRAF .framer-pyeav0 > :first-child, .framer-rdRAF .framer-1uqm5nw > :first-child, .framer-rdRAF .framer-1u0derx > :first-child, .framer-rdRAF .framer-1wza8aq > :first-child, .framer-rdRAF .framer-2grv0i > :first-child, .framer-rdRAF .framer-1tla7ts > :first-child, .framer-rdRAF .framer-hxlv32 > :first-child, .framer-rdRAF .framer-hhjakq > :first-child, .framer-rdRAF .framer-1bi2q75 > :first-child { margin-left: 0px; } .framer-rdRAF .framer-z9pwm > :last-child, .framer-rdRAF .framer-tv8u1q > :last-child, .framer-rdRAF .framer-1pnpl2f > :last-child, .framer-rdRAF .framer-7letku > :last-child, .framer-rdRAF .framer-15k6kf1 > :last-child, .framer-rdRAF .framer-1rh148y > :last-child, .framer-rdRAF .framer-1ugt2l7 > :last-child, .framer-rdRAF .framer-1kw8m6x > :last-child, .framer-rdRAF .framer-1lfrcy1 > :last-child, .framer-rdRAF .framer-7drfvp > :last-child, .framer-rdRAF .framer-1g5xiwx > :last-child, .framer-rdRAF .framer-pyeav0 > :last-child, .framer-rdRAF .framer-1uqm5nw > :last-child, .framer-rdRAF .framer-1u0derx > :last-child, .framer-rdRAF .framer-1wza8aq > :last-child, .framer-rdRAF .framer-2grv0i > :last-child, .framer-rdRAF .framer-1tla7ts > :last-child, .framer-rdRAF .framer-hxlv32 > :last-child, .framer-rdRAF .framer-hhjakq > :last-child, .framer-rdRAF .framer-1bi2q75 > :last-child { margin-right: 0px; } .framer-rdRAF .framer-tv8u1q > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-rdRAF .framer-1pnpl2f > *, .framer-rdRAF .framer-7letku > *, .framer-rdRAF .framer-15k6kf1 > *, .framer-rdRAF .framer-1rh148y > *, .framer-rdRAF .framer-1lfrcy1 > *, .framer-rdRAF .framer-1wza8aq > *, .framer-rdRAF .framer-hxlv32 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rdRAF .framer-wtr6k6 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-rdRAF .framer-j3g4zz > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-rdRAF .framer-1ugt2l7 > * { margin: 0px; margin-left: calc(55px / 2); margin-right: calc(55px / 2); } .framer-rdRAF .framer-1kw8m6x > * { margin: 0px; margin-left: calc(53px / 2); margin-right: calc(53px / 2); } .framer-rdRAF .framer-4b2u0i > *, .framer-rdRAF .framer-18bzui1 > * { margin: 0px; margin-bottom: calc(67px / 2); margin-top: calc(67px / 2); } .framer-rdRAF .framer-1bpqiiz > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-rdRAF .framer-14l7e25 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-rdRAF .framer-6t68ah > *, .framer-rdRAF .framer-b2cezw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-rdRAF .framer-1bpiz69 > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-rdRAF .framer-7drfvp > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-rdRAF .framer-1fkbsgd > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-rdRAF .framer-1g5xiwx > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-rdRAF .framer-13f7ckx > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-rdRAF .framer-1hlv3yt > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-rdRAF .framer-pyeav0 > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-rdRAF .framer-kdcgw7 > * { margin: 0px; margin-bottom: calc(109px / 2); margin-top: calc(109px / 2); } .framer-rdRAF .framer-w1h6am > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-rdRAF .framer-17q1hng > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-rdRAF .framer-1uqm5nw > *, .framer-rdRAF .framer-1bi2q75 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-rdRAF .framer-n63t36 > *, .framer-rdRAF .framer-1l5zwdk > *, .framer-rdRAF .framer-110g75k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-rdRAF .framer-ziiqmg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rdRAF .framer-1u0derx > * { margin: 0px; margin-left: calc(81px / 2); margin-right: calc(81px / 2); } .framer-rdRAF .framer-2grv0i > * { margin: 0px; margin-left: calc(43px / 2); margin-right: calc(43px / 2); } .framer-rdRAF .framer-1tla7ts > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-rdRAF .framer-hhjakq > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-rdRAF .framer-7gdyf0 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-rdRAF .framer-1j4vjk8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",'.framer-rdRAF[data-border=\"true\"]::after, .framer-rdRAF [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: 1439px) { .${metadata.bodyClassName}-framer-rdRAF { background: white; } .framer-rdRAF.framer-6nw8ye { gap: 50px; width: 810px; } .framer-rdRAF .framer-htdft3 { gap: 5px; padding: 0px; } .framer-rdRAF .framer-z9pwm { gap: 28px; width: 83%; } .framer-rdRAF .framer-13qnp8t { height: var(--framer-aspect-ratio-supported, 71px); width: 125px; } .framer-rdRAF .framer-tv8u1q { gap: 30px; width: 491px; } .framer-rdRAF .framer-kfe60d, .framer-rdRAF .framer-h3octk, .framer-rdRAF .framer-1bpqiiz { order: 0; } .framer-rdRAF .framer-1asf2g6 { flex: 1 0 0px; order: 1; width: 1px; } .framer-rdRAF .framer-10ie2ye, .framer-rdRAF .framer-sn26jx { left: 49%; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; } .framer-rdRAF .framer-mkqbjb { height: 925px; } .framer-rdRAF .framer-1y5fyts { bottom: unset; height: 925px; left: calc(50.00000000000002% - 100% / 2); } .framer-rdRAF .framer-1pnpl2f { bottom: 92px; } .framer-rdRAF .framer-1lgfazi { left: 50%; top: 53%; transform: translate(-50%, -50%); } .framer-rdRAF .framer-1jmcihr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; } .framer-rdRAF .framer-15k6kf1 { bottom: unset; height: 58px; left: unset; order: 1; position: relative; top: unset; } .framer-rdRAF .framer-1rh148y { left: unset; order: 0; position: relative; top: unset; } .framer-rdRAF .framer-j3g4zz { top: 83px; width: 100%; } .framer-rdRAF .framer-tuzs9 { order: 1; width: 810px; } .framer-rdRAF .framer-110lz2v { order: 2; width: 658px; } .framer-rdRAF .framer-1ugt2l7 { gap: 15px; width: 100%; } .framer-rdRAF .framer-t71orh { height: var(--framer-aspect-ratio-supported, 83px); width: 200px; } .framer-rdRAF .framer-1kw8m6x { align-content: center; align-items: center; flex-direction: column; height: 2628px; width: 810px; } .framer-rdRAF .framer-4b2u0i, .framer-rdRAF .framer-xi223c-container { order: 1; } .framer-rdRAF .framer-1a3e87l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; padding: 0px; } .framer-rdRAF .framer-1nv368t { left: unset; position: relative; top: unset; width: 100%; } .framer-rdRAF .framer-16g691v { bottom: unset; left: unset; position: relative; width: 100%; } .framer-rdRAF .framer-19pvgb { right: unset; width: 100%; } .framer-rdRAF .framer-1bpiz69 { width: 776px; } .framer-rdRAF .framer-i9tdmr { white-space: pre-wrap; width: 553px; word-break: break-word; word-wrap: break-word; } .framer-rdRAF .framer-1fkbsgd { height: 1667px; } .framer-rdRAF .framer-b2cezw { gap: 5px; } .framer-rdRAF .framer-1g5xiwx { flex-direction: column; } .framer-rdRAF .framer-1hlv3yt { gap: 43px; order: 0; } .framer-rdRAF .framer-kz5mff { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 0; padding: 0px 15px 0px 15px; } .framer-rdRAF .framer-9k10fz, .framer-rdRAF .framer-16kg3tc { left: unset; position: relative; top: unset; transform: unset; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-rdRAF .framer-1xrzgml { bottom: unset; left: unset; position: relative; } .framer-rdRAF .framer-piraa9 { left: -19px; right: -20px; } .framer-rdRAF .framer-w1h6am { gap: 41px; width: 810px; } .framer-rdRAF .framer-17q1hng { order: 0; width: 810px; } .framer-rdRAF .framer-1hfzxdx, .framer-rdRAF .framer-5v0975-container, .framer-rdRAF .framer-1ywc6yf-container, .framer-rdRAF .framer-hv0rhh-container, .framer-rdRAF .framer-lrf1kl-container, .framer-rdRAF .framer-rrqb89-container { width: 100%; } .framer-rdRAF .framer-n63t36 { order: 1; padding: 0px 50px 0px 50px; } .framer-rdRAF .framer-ziiqmg { height: min-content; } .framer-rdRAF .framer-1od6gfw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; } .framer-rdRAF .framer-1u0derx { bottom: unset; flex-direction: column; left: unset; order: 0; position: relative; } .framer-rdRAF .framer-qmnzzi { height: var(--framer-aspect-ratio-supported, 19px); } .framer-rdRAF .framer-1y3ekbm { background: linear-gradient(180deg, #f35b1c 0%, rgba(247, 69, 30, 1) 100%); } .framer-rdRAF .framer-hxlv32 { bottom: 1px; height: unset; left: calc(50.00000000000002% - 100% / 2); top: -1px; } .framer-rdRAF .framer-hhjakq { flex-direction: column; height: 329px; width: 723px; } .framer-rdRAF .framer-7gdyf0, .framer-rdRAF .framer-1j4vjk8 { align-content: center; align-items: center; } .framer-rdRAF .framer-221wr3 { width: 312px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rdRAF.framer-6nw8ye, .framer-rdRAF .framer-htdft3, .framer-rdRAF .framer-z9pwm, .framer-rdRAF .framer-tv8u1q, .framer-rdRAF .framer-1jmcihr, .framer-rdRAF .framer-1ugt2l7, .framer-rdRAF .framer-1kw8m6x, .framer-rdRAF .framer-1a3e87l, .framer-rdRAF .framer-b2cezw, .framer-rdRAF .framer-1g5xiwx, .framer-rdRAF .framer-1hlv3yt, .framer-rdRAF .framer-kz5mff, .framer-rdRAF .framer-w1h6am, .framer-rdRAF .framer-1od6gfw, .framer-rdRAF .framer-1u0derx, .framer-rdRAF .framer-hhjakq { gap: 0px; } .framer-rdRAF.framer-6nw8ye > *, .framer-rdRAF .framer-hhjakq > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-rdRAF.framer-6nw8ye > :first-child, .framer-rdRAF .framer-htdft3 > :first-child, .framer-rdRAF .framer-1kw8m6x > :first-child, .framer-rdRAF .framer-1a3e87l > :first-child, .framer-rdRAF .framer-b2cezw > :first-child, .framer-rdRAF .framer-1g5xiwx > :first-child, .framer-rdRAF .framer-1hlv3yt > :first-child, .framer-rdRAF .framer-kz5mff > :first-child, .framer-rdRAF .framer-w1h6am > :first-child, .framer-rdRAF .framer-1u0derx > :first-child, .framer-rdRAF .framer-hhjakq > :first-child { margin-top: 0px; } .framer-rdRAF.framer-6nw8ye > :last-child, .framer-rdRAF .framer-htdft3 > :last-child, .framer-rdRAF .framer-1kw8m6x > :last-child, .framer-rdRAF .framer-1a3e87l > :last-child, .framer-rdRAF .framer-b2cezw > :last-child, .framer-rdRAF .framer-1g5xiwx > :last-child, .framer-rdRAF .framer-1hlv3yt > :last-child, .framer-rdRAF .framer-kz5mff > :last-child, .framer-rdRAF .framer-w1h6am > :last-child, .framer-rdRAF .framer-1u0derx > :last-child, .framer-rdRAF .framer-hhjakq > :last-child { margin-bottom: 0px; } .framer-rdRAF .framer-htdft3 > *, .framer-rdRAF .framer-b2cezw > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-rdRAF .framer-z9pwm > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-rdRAF .framer-z9pwm > :first-child, .framer-rdRAF .framer-tv8u1q > :first-child, .framer-rdRAF .framer-1jmcihr > :first-child, .framer-rdRAF .framer-1ugt2l7 > :first-child, .framer-rdRAF .framer-1od6gfw > :first-child { margin-left: 0px; } .framer-rdRAF .framer-z9pwm > :last-child, .framer-rdRAF .framer-tv8u1q > :last-child, .framer-rdRAF .framer-1jmcihr > :last-child, .framer-rdRAF .framer-1ugt2l7 > :last-child, .framer-rdRAF .framer-1od6gfw > :last-child { margin-right: 0px; } .framer-rdRAF .framer-tv8u1q > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-rdRAF .framer-1jmcihr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rdRAF .framer-1ugt2l7 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-rdRAF .framer-1kw8m6x > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-rdRAF .framer-1a3e87l > *, .framer-rdRAF .framer-1hlv3yt > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-rdRAF .framer-1g5xiwx > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-rdRAF .framer-kz5mff > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-rdRAF .framer-w1h6am > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-rdRAF .framer-1od6gfw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-rdRAF .framer-1u0derx > * { margin: 0px; margin-bottom: calc(81px / 2); margin-top: calc(81px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-rdRAF { background: white; } .framer-rdRAF.framer-6nw8ye { gap: 20px; width: 390px; } .framer-rdRAF .framer-htdft3 { gap: 10px; padding: 0px; } .framer-rdRAF .framer-z9pwm { gap: 30px; height: 109px; padding: 5px 0px 0px 0px; width: 100%; } .framer-rdRAF .framer-13qnp8t { height: var(--framer-aspect-ratio-supported, 58px); width: 100px; } .framer-rdRAF .framer-tv8u1q { flex-direction: column; gap: 9px; width: 190px; } .framer-rdRAF .framer-kfe60d { height: var(--framer-aspect-ratio-supported, 16px); width: 120px; } .framer-rdRAF .framer-1asf2g6 { height: 59px; width: 100%; } .framer-rdRAF .framer-2zi2q6, .framer-rdRAF .framer-1393g65 { bottom: unset; height: 57px; left: -12px; right: -7px; } .framer-rdRAF .framer-10ie2ye, .framer-rdRAF .framer-sn26jx { height: auto; left: 49%; top: 49%; transform: translate(-50%, -50%); white-space: pre; width: auto; } .framer-rdRAF .framer-mkqbjb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-rdRAF .framer-1y5fyts { align-content: center; align-items: center; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; top: unset; } .framer-rdRAF .framer-1pnpl2f { bottom: unset; height: min-content; left: unset; order: 1; position: relative; transform: unset; width: 100%; } .framer-rdRAF .framer-deuctb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 15px 0px 15px 0px; width: 90%; } .framer-rdRAF .framer-1efeq1f { left: unset; position: relative; right: unset; top: unset; width: 85%; } .framer-rdRAF .framer-7letku { bottom: 0px; height: unset; left: calc(50.00000000000002% - 100% / 2); width: 100%; } .framer-rdRAF .framer-1jmcihr { align-content: center; align-items: center; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; width: 100%; } .framer-rdRAF .framer-15k6kf1 { bottom: unset; height: 58px; left: unset; order: 1; position: relative; top: unset; } .framer-rdRAF .framer-1rh148y, .framer-rdRAF .framer-ad8fzs { left: unset; order: 0; position: relative; top: unset; } .framer-rdRAF .framer-onf64c { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; padding: 0px; width: 154px; } .framer-rdRAF .framer-8md16n, .framer-rdRAF .framer-qek2um { left: unset; position: relative; top: unset; } .framer-rdRAF .framer-wtr6k6 { width: min-content; } .framer-rdRAF .framer-dc66gi, .framer-rdRAF .framer-1uqm5nw { order: 0; } .framer-rdRAF .framer-1kzskne, .framer-rdRAF .framer-py2mwm, .framer-rdRAF .framer-3r3v6r { order: 1; } .framer-rdRAF .framer-j3g4zz { gap: 14px; left: unset; order: 0; padding: 30px 0px 0px 0px; position: relative; top: unset; transform: unset; width: 100%; } .framer-rdRAF .framer-h3octk { white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; } .framer-rdRAF .framer-tuzs9, .framer-rdRAF .framer-110lz2v, .framer-rdRAF .framer-1e8gm7s, .framer-rdRAF .framer-vb961k, .framer-rdRAF .framer-18bzui1, .framer-rdRAF .framer-1bpiz69, .framer-rdRAF .framer-1lfrcy1, .framer-rdRAF .framer-ibeq7h, .framer-rdRAF .framer-q7jn8x { width: 100%; } .framer-rdRAF .framer-1ugt2l7 { gap: 25px; width: 390px; } .framer-rdRAF .framer-t71orh { height: var(--framer-aspect-ratio-supported, 42px); width: 100px; } .framer-rdRAF .framer-plxd28 { height: var(--framer-aspect-ratio-supported, 35px); width: 100px; } .framer-rdRAF .framer-1kw8m6x { flex-direction: column; gap: 60px; height: min-content; width: 390px; } .framer-rdRAF .framer-4b2u0i { height: 1231px; order: 1; padding: 0px 15px 0px 15px; width: 100%; } .framer-rdRAF .framer-1a3e87l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-rdRAF .framer-1nv368t { left: unset; position: relative; top: unset; width: 100%; } .framer-rdRAF .framer-16g691v { bottom: unset; height: 68px; left: unset; position: relative; width: 100%; } .framer-rdRAF .framer-14833fb { height: 68px; width: 100%; } .framer-rdRAF .framer-1v6gwsl { left: 50%; top: 51%; transform: translate(-50%, -50%); } .framer-rdRAF .framer-1bpqiiz { order: 0; padding: 0px 15px 0px 15px; width: 100%; } .framer-rdRAF .framer-14l7e25 { align-content: center; align-items: center; gap: 15px; height: 244px; order: 0; width: 100%; } .framer-rdRAF .framer-155k5a4 { order: 2; } .framer-rdRAF .framer-19pvgb { right: unset; width: 100%; } .framer-rdRAF .framer-6t68ah { gap: 29px; padding: 0px 10px 0px 10px; width: 100%; } .framer-rdRAF .framer-i9tdmr { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-rdRAF .framer-12daxnx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 46px; justify-content: center; order: 0; padding: 0px; width: 176px; } .framer-rdRAF .framer-77pfbl, .framer-rdRAF .framer-1twbdcp { left: unset; position: relative; top: unset; transform: unset; } .framer-rdRAF .framer-apjvrz { flex: 1 0 0px; order: 2; width: 1px; } .framer-rdRAF .framer-1fkbsgd { gap: 69px; height: min-content; padding: 0px 20px 0px 20px; } .framer-rdRAF .framer-b2cezw { gap: 10px; width: 100%; } .framer-rdRAF .framer-tdky20 { height: auto; white-space: pre; width: auto; } .framer-rdRAF .framer-1g5xiwx { flex-direction: column; } .framer-rdRAF .framer-1hlv3yt { gap: 75px; order: 0; } .framer-rdRAF .framer-kz5mff { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; order: 0; padding: 0px; width: 390px; } .framer-rdRAF .framer-9k10fz { left: unset; position: relative; top: unset; transform: unset; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; } .framer-rdRAF .framer-16kg3tc { left: unset; position: relative; top: unset; transform: unset; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-rdRAF .framer-1xrzgml { align-content: flex-start; align-items: flex-start; bottom: unset; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 59px; justify-content: center; left: unset; padding: 0px; position: relative; width: 244px; } .framer-rdRAF .framer-4sl1td { height: 100%; left: unset; position: relative; top: unset; } .framer-rdRAF .framer-piraa9 { bottom: unset; height: 58px; left: calc(49.89281847389228% - 215px / 2); right: unset; width: 215px; } .framer-rdRAF .framer-5da7qj { height: 15px; left: 50%; top: 19px; transform: translateX(-50%); } .framer-rdRAF .framer-xi223c-container { height: 570px; order: 1; } .framer-rdRAF .framer-w1h6am { padding: 0px 10px 0px 10px; width: 390px; } .framer-rdRAF .framer-1hfzxdx { gap: 8px; order: 0; padding: 0px 15px 0px 15px; width: 100%; } .framer-rdRAF .framer-1jmhtmy, .framer-rdRAF .framer-1ywc6yf-container { order: 1; width: 100%; } .framer-rdRAF .framer-n63t36 { gap: 33px; padding: 0px 10px 0px 10px; } .framer-rdRAF .framer-5v0975-container { order: 0; width: 100%; } .framer-rdRAF .framer-hv0rhh-container { order: 2; width: 100%; } .framer-rdRAF .framer-lrf1kl-container { order: 3; width: 100%; } .framer-rdRAF .framer-rrqb89-container { order: 4; width: 100%; } .framer-rdRAF .framer-ziiqmg { height: min-content; } .framer-rdRAF .framer-1od6gfw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; } .framer-rdRAF .framer-1u0derx { bottom: unset; flex-direction: column; left: unset; position: relative; } .framer-rdRAF .framer-11z0ei0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; order: 0; padding: 0px; width: 100%; } .framer-rdRAF .framer-1l5zwdk { align-content: center; align-items: center; gap: 6px; left: unset; position: relative; top: unset; } .framer-rdRAF .framer-lx71m8 { bottom: unset; left: unset; position: relative; transform: unset; width: 342px; } .framer-rdRAF .framer-2grv0i { bottom: unset; flex-direction: column; gap: 39px; height: min-content; left: unset; position: relative; } .framer-rdRAF .framer-3wqje3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-rdRAF .framer-49nxz8 { bottom: unset; height: 62px; left: unset; position: relative; top: unset; width: 62px; } .framer-rdRAF .framer-12q5qqu { bottom: unset; height: 61px; right: unset; width: 61px; } .framer-rdRAF .framer-1gw6m7s { height: 33px; left: calc(47.05882352941179% - 33px / 2); top: calc(47.05882352941179% - 33px / 2); width: 33px; } .framer-rdRAF .framer-110g75k { position: relative; right: unset; top: unset; width: min-content; } .framer-rdRAF .framer-19y0vv1 { white-space: pre; width: auto; } .framer-rdRAF .framer-qmnzzi { height: var(--framer-aspect-ratio-supported, 14px); } .framer-rdRAF .framer-1y3ekbm { background: linear-gradient(180deg, #f35b1c 0%, rgba(247, 69, 30, 1) 100%); } .framer-rdRAF .framer-1pek9xi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 37px; justify-content: center; order: 1; padding: 0px; width: min-content; } .framer-rdRAF .framer-6dgfvt { bottom: unset; left: unset; order: 1; position: relative; } .framer-rdRAF .framer-aocif1, .framer-rdRAF .framer-hhjakq { width: 390px; } .framer-rdRAF .framer-7gdyf0 { align-content: center; align-items: center; width: 100%; } .framer-rdRAF .framer-1bi2q75 { padding: 0px 15px 0px 15px; width: 100%; } .framer-rdRAF .framer-1l5ar2v { white-space: pre-wrap; width: 71%; word-break: break-word; word-wrap: break-word; } .framer-rdRAF .framer-1j4vjk8 { align-content: center; align-items: center; gap: 51px; padding: 0px 20px 0px 20px; width: 100%; } .framer-rdRAF .framer-1jz63de { height: 99px; width: 90%; } .framer-rdRAF .framer-221wr3 { height: 59px; width: 215px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rdRAF.framer-6nw8ye, .framer-rdRAF .framer-htdft3, .framer-rdRAF .framer-z9pwm, .framer-rdRAF .framer-tv8u1q, .framer-rdRAF .framer-mkqbjb, .framer-rdRAF .framer-1y5fyts, .framer-rdRAF .framer-deuctb, .framer-rdRAF .framer-1jmcihr, .framer-rdRAF .framer-onf64c, .framer-rdRAF .framer-j3g4zz, .framer-rdRAF .framer-1ugt2l7, .framer-rdRAF .framer-1kw8m6x, .framer-rdRAF .framer-1a3e87l, .framer-rdRAF .framer-14l7e25, .framer-rdRAF .framer-6t68ah, .framer-rdRAF .framer-12daxnx, .framer-rdRAF .framer-1fkbsgd, .framer-rdRAF .framer-b2cezw, .framer-rdRAF .framer-1g5xiwx, .framer-rdRAF .framer-1hlv3yt, .framer-rdRAF .framer-kz5mff, .framer-rdRAF .framer-1xrzgml, .framer-rdRAF .framer-1hfzxdx, .framer-rdRAF .framer-n63t36, .framer-rdRAF .framer-1od6gfw, .framer-rdRAF .framer-1u0derx, .framer-rdRAF .framer-11z0ei0, .framer-rdRAF .framer-1l5zwdk, .framer-rdRAF .framer-2grv0i, .framer-rdRAF .framer-3wqje3, .framer-rdRAF .framer-1pek9xi, .framer-rdRAF .framer-1j4vjk8 { gap: 0px; } .framer-rdRAF.framer-6nw8ye > *, .framer-rdRAF .framer-kz5mff > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-rdRAF.framer-6nw8ye > :first-child, .framer-rdRAF .framer-htdft3 > :first-child, .framer-rdRAF .framer-tv8u1q > :first-child, .framer-rdRAF .framer-1y5fyts > :first-child, .framer-rdRAF .framer-deuctb > :first-child, .framer-rdRAF .framer-1jmcihr > :first-child, .framer-rdRAF .framer-j3g4zz > :first-child, .framer-rdRAF .framer-1kw8m6x > :first-child, .framer-rdRAF .framer-1a3e87l > :first-child, .framer-rdRAF .framer-14l7e25 > :first-child, .framer-rdRAF .framer-6t68ah > :first-child, .framer-rdRAF .framer-1fkbsgd > :first-child, .framer-rdRAF .framer-b2cezw > :first-child, .framer-rdRAF .framer-1g5xiwx > :first-child, .framer-rdRAF .framer-1hlv3yt > :first-child, .framer-rdRAF .framer-kz5mff > :first-child, .framer-rdRAF .framer-1hfzxdx > :first-child, .framer-rdRAF .framer-n63t36 > :first-child, .framer-rdRAF .framer-1od6gfw > :first-child, .framer-rdRAF .framer-1u0derx > :first-child, .framer-rdRAF .framer-11z0ei0 > :first-child, .framer-rdRAF .framer-1l5zwdk > :first-child, .framer-rdRAF .framer-2grv0i > :first-child, .framer-rdRAF .framer-1pek9xi > :first-child, .framer-rdRAF .framer-1j4vjk8 > :first-child { margin-top: 0px; } .framer-rdRAF.framer-6nw8ye > :last-child, .framer-rdRAF .framer-htdft3 > :last-child, .framer-rdRAF .framer-tv8u1q > :last-child, .framer-rdRAF .framer-1y5fyts > :last-child, .framer-rdRAF .framer-deuctb > :last-child, .framer-rdRAF .framer-1jmcihr > :last-child, .framer-rdRAF .framer-j3g4zz > :last-child, .framer-rdRAF .framer-1kw8m6x > :last-child, .framer-rdRAF .framer-1a3e87l > :last-child, .framer-rdRAF .framer-14l7e25 > :last-child, .framer-rdRAF .framer-6t68ah > :last-child, .framer-rdRAF .framer-1fkbsgd > :last-child, .framer-rdRAF .framer-b2cezw > :last-child, .framer-rdRAF .framer-1g5xiwx > :last-child, .framer-rdRAF .framer-1hlv3yt > :last-child, .framer-rdRAF .framer-kz5mff > :last-child, .framer-rdRAF .framer-1hfzxdx > :last-child, .framer-rdRAF .framer-n63t36 > :last-child, .framer-rdRAF .framer-1od6gfw > :last-child, .framer-rdRAF .framer-1u0derx > :last-child, .framer-rdRAF .framer-11z0ei0 > :last-child, .framer-rdRAF .framer-1l5zwdk > :last-child, .framer-rdRAF .framer-2grv0i > :last-child, .framer-rdRAF .framer-1pek9xi > :last-child, .framer-rdRAF .framer-1j4vjk8 > :last-child { margin-bottom: 0px; } .framer-rdRAF .framer-htdft3 > *, .framer-rdRAF .framer-1y5fyts > *, .framer-rdRAF .framer-deuctb > *, .framer-rdRAF .framer-1jmcihr > *, .framer-rdRAF .framer-b2cezw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-rdRAF .framer-z9pwm > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-rdRAF .framer-z9pwm > :first-child, .framer-rdRAF .framer-mkqbjb > :first-child, .framer-rdRAF .framer-onf64c > :first-child, .framer-rdRAF .framer-1ugt2l7 > :first-child, .framer-rdRAF .framer-12daxnx > :first-child, .framer-rdRAF .framer-1xrzgml > :first-child, .framer-rdRAF .framer-3wqje3 > :first-child { margin-left: 0px; } .framer-rdRAF .framer-z9pwm > :last-child, .framer-rdRAF .framer-mkqbjb > :last-child, .framer-rdRAF .framer-onf64c > :last-child, .framer-rdRAF .framer-1ugt2l7 > :last-child, .framer-rdRAF .framer-12daxnx > :last-child, .framer-rdRAF .framer-1xrzgml > :last-child, .framer-rdRAF .framer-3wqje3 > :last-child { margin-right: 0px; } .framer-rdRAF .framer-tv8u1q > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-rdRAF .framer-mkqbjb > *, .framer-rdRAF .framer-1xrzgml > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rdRAF .framer-onf64c > *, .framer-rdRAF .framer-12daxnx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-rdRAF .framer-j3g4zz > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-rdRAF .framer-1ugt2l7 > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-rdRAF .framer-1kw8m6x > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-rdRAF .framer-1a3e87l > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-rdRAF .framer-14l7e25 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-rdRAF .framer-6t68ah > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-rdRAF .framer-1fkbsgd > * { margin: 0px; margin-bottom: calc(69px / 2); margin-top: calc(69px / 2); } .framer-rdRAF .framer-1g5xiwx > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-rdRAF .framer-1hlv3yt > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-rdRAF .framer-1hfzxdx > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-rdRAF .framer-n63t36 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-rdRAF .framer-1od6gfw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rdRAF .framer-1u0derx > * { margin: 0px; margin-bottom: calc(81px / 2); margin-top: calc(81px / 2); } .framer-rdRAF .framer-11z0ei0 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-rdRAF .framer-1l5zwdk > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-rdRAF .framer-2grv0i > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-rdRAF .framer-3wqje3 > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-rdRAF .framer-1pek9xi > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-rdRAF .framer-1j4vjk8 > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7094\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UBimYW7cG\":{\"layout\":[\"fixed\",\"auto\"]},\"yQFoMl4v5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerzRaZuUqVa=withCSS(Component,css,\"framer-rdRAF\");export default FramerzRaZuUqVa;FramerzRaZuUqVa.displayName=\"Home\";FramerzRaZuUqVa.defaultProps={height:7094,width:1440};addFonts(FramerzRaZuUqVa,[{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/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:\"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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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:\"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:\"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:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...TickerFonts,...SlideshowFonts,...Question1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzRaZuUqVa\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"7094\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UBimYW7cG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yQFoMl4v5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapbqk1ob", "args", "onTapduz2ai", "onTapsv5vld", "onTap1qr5c92", "onTapzshunl", "onTapnajpee", "onTap919glr", "onTap1r6b8z6", "onTap1ld5ue8", "onTap15t58nh", "onTap1n7jbv0", "onTap1byjetz", "onTap18ncvkc", "onTapco0lv", "onTap1fiexwm", "onTap1sb4xs5", "onTap15ci5kq", "onTap1uzxash", "onTapkvy30z", "onTapawtt1w", "onTapcyvn84", "onTap12e6nzs", "onTap1r6hcm8", "onTap1k5x5ed", "onTap8510qw", "onTap1xs53at", "onTap6yw6d5", "onTapg9yyig", "onTap18z3ftu", "onTap1fbwkp6", "onTap1cwlgbx", "onTap16fs1ee", "onTap4gtco7", "onTap5w07kd", "onTap31ruvz", "onTap57jjio", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "SVG", "css", "FramerwlxpCGdQK", "withCSS", "wlxpCGdQK_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFonts", "Ticker", "SlideshowFonts", "Slideshow", "Question1Fonts", "wlxpCGdQK_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "Link", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "RichText2", "SVG", "ComponentViewportProvider", "Container", "css", "FramerzRaZuUqVa", "withCSS", "zRaZuUqVa_default", "addFonts", "__FramerMetadata__"]
}
