{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/ncbpoXpUTrpxDoWwZVlN/ew0fq0iPyaQ2U8wcxaRo/P5Q9ZQ8nB.js", "ssg:https://framerusercontent.com/modules/2ecjaqFwtQXmdRc1M8TP/4z4hfV0uFUzdyj9hEKDm/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},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:0,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:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ 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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.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 (edb532b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wc1UbqGK9kns2MY2z2em/ucBGCtif3ezxpIFavM2x/djTAVS0n5.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2Tantrlgp4eDGk9bAbtE/oIAOLTZ0vei0PlRdF9BM/NoJyA2GLQ.js\";import Button from\"https://framerusercontent.com/modules/uLNW4RoSr4Ah5413rja0/p5PlBx4rpx0nKpyj8igT/lBK69eXLg.js\";const ButtonFonts=getFonts(Button);const SlideshowFonts=getFonts(Slideshow);const ButtonControls=getPropertyControls(Button);const cycleOrder=[\"EyJXdyL3I\",\"eVY9bwmdB\",\"QXcS1DDv1\"];const serializationHash=\"framer-dWr4A\";const variantClassNames={eVY9bwmdB:\"framer-v-1a27zy2\",EyJXdyL3I:\"framer-v-h5zo1o\",QXcS1DDv1:\"framer-v-w4m6du\"};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 isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"large-reverse\":\"ojqMfr0_s\",\"large-secondary\":\"wsUhKnWfr\",\"medium-reverse\":\"gBvtCop8O\",\"medium-secondary\":\"W65WaJAgz\",large:\"BaWftJW6j\",medium:\"ZVkn65BR2\"};const humanReadableVariantMap={Desktop:\"EyJXdyL3I\",Mobile:\"QXcS1DDv1\",Tablet:\"eVY9bwmdB\"};const getProps=({buttonLink,buttonText,buttonType,heading,height,heroImage,heroImage2,heroImage3,heroImage4,heroImage5,heroImage6,heroImage7,id,secondaryButtonLink,secondaryButtonText,secondaryButtonType,showButton,showSecondaryButton,showSubheading,subheading,width,...props})=>{var _humanReadableEnumMap_secondaryButtonType,_ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_humanReadableEnumMap_buttonType,_ref9,_ref10,_ref11,_ref12,_ref13,_ref14,_humanReadableVariantMap_props_variant,_ref15,_ref16,_ref17,_ref18;return{...props,ceWL6HutY:(_ref1=(_ref=(_humanReadableEnumMap_secondaryButtonType=humanReadableEnumMap[secondaryButtonType])!==null&&_humanReadableEnumMap_secondaryButtonType!==void 0?_humanReadableEnumMap_secondaryButtonType:secondaryButtonType)!==null&&_ref!==void 0?_ref:props.ceWL6HutY)!==null&&_ref1!==void 0?_ref1:\"ojqMfr0_s\",cgsI6ovFC:(_ref2=showSubheading!==null&&showSubheading!==void 0?showSubheading:props.cgsI6ovFC)!==null&&_ref2!==void 0?_ref2:true,JYYdYatkF:(_ref3=subheading!==null&&subheading!==void 0?subheading:props.JYYdYatkF)!==null&&_ref3!==void 0?_ref3:\"Papich Construction is a full-service general contractor specializing in large scale infrastructure improvements.\",KVP6M4f0t:(_ref4=heading!==null&&heading!==void 0?heading:props.KVP6M4f0t)!==null&&_ref4!==void 0?_ref4:\"Page Title\",M9k4VMiYx:(_ref5=heroImage4!==null&&heroImage4!==void 0?heroImage4:props.M9k4VMiYx)!==null&&_ref5!==void 0?_ref5:{src:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png 2880w\"},mGvkVHW0R:(_ref6=heroImage!==null&&heroImage!==void 0?heroImage:props.mGvkVHW0R)!==null&&_ref6!==void 0?_ref6:{src:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png 2880w\"},MQevuQImT:(_ref7=buttonText!==null&&buttonText!==void 0?buttonText:props.MQevuQImT)!==null&&_ref7!==void 0?_ref7:\"Plan Your Project\",myQ6KvU_8:(_ref8=secondaryButtonText!==null&&secondaryButtonText!==void 0?secondaryButtonText:props.myQ6KvU_8)!==null&&_ref8!==void 0?_ref8:\"View Our Services\",OqQEmwgaJ:buttonLink!==null&&buttonLink!==void 0?buttonLink:props.OqQEmwgaJ,pbPe7sRiX:(_ref10=(_ref9=(_humanReadableEnumMap_buttonType=humanReadableEnumMap[buttonType])!==null&&_humanReadableEnumMap_buttonType!==void 0?_humanReadableEnumMap_buttonType:buttonType)!==null&&_ref9!==void 0?_ref9:props.pbPe7sRiX)!==null&&_ref10!==void 0?_ref10:\"BaWftJW6j\",rGbDtRoCJ:(_ref11=heroImage6!==null&&heroImage6!==void 0?heroImage6:props.rGbDtRoCJ)!==null&&_ref11!==void 0?_ref11:{src:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png 2880w\"},RIIdyEdPX:secondaryButtonLink!==null&&secondaryButtonLink!==void 0?secondaryButtonLink:props.RIIdyEdPX,s40x0nq9O:(_ref12=heroImage7!==null&&heroImage7!==void 0?heroImage7:props.s40x0nq9O)!==null&&_ref12!==void 0?_ref12:{src:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png 2880w\"},uf9rYUxjJ:(_ref13=heroImage2!==null&&heroImage2!==void 0?heroImage2:props.uf9rYUxjJ)!==null&&_ref13!==void 0?_ref13:{src:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png 2880w\"},Ui5kHAkgU:(_ref14=heroImage3!==null&&heroImage3!==void 0?heroImage3:props.Ui5kHAkgU)!==null&&_ref14!==void 0?_ref14:{src:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png 2880w\"},variant:(_ref15=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref15!==void 0?_ref15:\"EyJXdyL3I\",vuAgaVYMS:(_ref16=heroImage5!==null&&heroImage5!==void 0?heroImage5:props.vuAgaVYMS)!==null&&_ref16!==void 0?_ref16:{src:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tFpV4eOonsT6lIudbE3WMoodtI.png 2880w\"},vuv8wKglh:(_ref17=showSecondaryButton!==null&&showSecondaryButton!==void 0?showSecondaryButton:props.vuv8wKglh)!==null&&_ref17!==void 0?_ref17:true,Zy4oXhCl0:(_ref18=showButton!==null&&showButton!==void 0?showButton:props.Zy4oXhCl0)!==null&&_ref18!==void 0?_ref18:true};};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,KVP6M4f0t,JYYdYatkF,cgsI6ovFC,Zy4oXhCl0,vuv8wKglh,MQevuQImT,myQ6KvU_8,mGvkVHW0R,uf9rYUxjJ,Ui5kHAkgU,M9k4VMiYx,vuAgaVYMS,rGbDtRoCJ,s40x0nq9O,OqQEmwgaJ,RIIdyEdPX,pbPe7sRiX,ceWL6HutY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EyJXdyL3I\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(OqQEmwgaJ);const visible1=negate(isSet(uf9rYUxjJ));const visible2=isSet(uf9rYUxjJ);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-h5zo1o\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"EyJXdyL3I\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(15, 80, 117)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(3, 26, 39)\",...style},...addPropertyOverrides({eVY9bwmdB:{\"data-framer-name\":\"Tablet\"},QXcS1DDv1:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bgtwzs\",\"data-framer-name\":\"hero-content\",layoutDependency:layoutDependency,layoutId:\"zTVgQA6TK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1ch03wj\",\"data-styles-preset\":\"djTAVS0n5\",children:\"ROADWORK, PAVING & INFRASTRUCTURE EXPERTS\"})}),className:\"framer-6qhsp7\",\"data-framer-name\":\"ROADWORK, PAVING & INFRASTRUCTURE EXPERTS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"opD81kVoe\",style:{textShadow:\"0px 1px 20px rgba(0, 0, 0, 0.5)\"},text:KVP6M4f0t,verticalAlignment:\"top\",withExternalLayout:true}),cgsI6ovFC&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-xiqzyx\",\"data-styles-preset\":\"NoJyA2GLQ\",children:\"Papich Construction is a full-service general contractor specializing in large scale infrastructure improvements.\"})}),className:\"framer-1wcpzwp\",\"data-framer-name\":\"Papich Construction is a full-service general contractor specializing in large scale infrastructure improvements.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TVOsXLjxf\",style:{textShadow:\"0px 1px 20px rgba(0, 0, 0, 0.6)\"},text:JYYdYatkF,verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18aafs3\",\"data-framer-name\":\"cta-row\",layoutDependency:layoutDependency,layoutId:\"qDSPjY5Xy\",children:[Zy4oXhCl0&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ew624g-container\",layoutDependency:layoutDependency,layoutId:\"DZpiERT1z-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"DZpiERT1z\",layoutId:\"DZpiERT1z\",q072X1eG4:MQevuQImT,ria8Mv090:false,TnAKvfhMt:true,variant:pbPe7sRiX,width:\"100%\",ZPbcjitDT:OqQEmwgaJ})})}),vuv8wKglh&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7mk08j-container\",layoutDependency:layoutDependency,layoutId:\"wqszCDOT5-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"wqszCDOT5\",layoutId:\"wqszCDOT5\",q072X1eG4:myQ6KvU_8,ria8Mv090:false,TnAKvfhMt:true,variant:ceWL6HutY,width:\"100%\",ZPbcjitDT:RIIdyEdPX})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bcjlvx\",\"data-framer-name\":\"hero-bg\",layoutDependency:layoutDependency,layoutId:\"bndXYIIBd\",children:[visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(mGvkVHW0R)},className:\"framer-1sbucsr\",\"data-framer-name\":\"hero-bg-img\",layoutDependency:layoutDependency,layoutId:\"zQ1ucctM9\"}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ssxnwe-container\",layoutDependency:layoutDependency,layoutId:\"Oz37Qb870-container\",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:false},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:1,height:\"100%\",id:\"Oz37Qb870\",intervalControl:3.5,itemAmount:1,layoutId:\"Oz37Qb870\",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:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"540px\",...toResponsiveImage(mGvkVHW0R)},className:\"framer-1g5t68j\",\"data-framer-name\":\"hero-img-1\",layoutDependency:layoutDependency,layoutId:\"FwMlriQux\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"540px\",...toResponsiveImage(uf9rYUxjJ)},className:\"framer-1lbmtnq\",\"data-framer-name\":\"hero-img-2\",layoutDependency:layoutDependency,layoutId:\"u1Tg5d0nA\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"540px\",...toResponsiveImage(Ui5kHAkgU)},className:\"framer-1qjqcsq\",\"data-framer-name\":\"hero-img-3\",layoutDependency:layoutDependency,layoutId:\"rMc5_c8SR\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"540px\",...toResponsiveImage(M9k4VMiYx)},className:\"framer-2kyyff\",\"data-framer-name\":\"hero-img-4\",layoutDependency:layoutDependency,layoutId:\"Lebpt8ayI\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"540px\",...toResponsiveImage(vuAgaVYMS)},className:\"framer-1x9t5ro\",\"data-framer-name\":\"hero-img-5\",layoutDependency:layoutDependency,layoutId:\"xXGN6IPnk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"540px\",...toResponsiveImage(rGbDtRoCJ)},className:\"framer-6lz6y8\",\"data-framer-name\":\"hero-img-6\",layoutDependency:layoutDependency,layoutId:\"kps8RIccU\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"540px\",...toResponsiveImage(s40x0nq9O)},className:\"framer-pd8kcq\",\"data-framer-name\":\"hero-img-7\",layoutDependency:layoutDependency,layoutId:\"QopsfZ1Lq\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14v30xj\",\"data-framer-name\":\"bg-color\",layoutDependency:layoutDependency,layoutId:\"xdPPRKNy0\",style:{background:\"linear-gradient(180deg, rgb(3, 22, 32) 5%, rgba(0, 0, 0, 0.3) 55.00000000000001%)\",opacity:.65}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dWr4A.framer-orydi7, .framer-dWr4A .framer-orydi7 { display: block; }\",\".framer-dWr4A.framer-h5zo1o { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 360px 100px 100px 100px; position: relative; width: 1440px; }\",\".framer-dWr4A .framer-bgtwzs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-dWr4A .framer-6qhsp7 { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 840px; position: relative; width: 100%; }\",\".framer-dWr4A .framer-1wcpzwp { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 880px; position: relative; width: 100%; }\",\".framer-dWr4A .framer-18aafs3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-dWr4A .framer-1ew624g-container, .framer-dWr4A .framer-7mk08j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dWr4A .framer-bcjlvx { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-dWr4A .framer-1sbucsr { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-dWr4A .framer-1ssxnwe-container { bottom: 0px; flex: none; height: 100%; left: 0px; position: absolute; width: 100%; }\",\".framer-dWr4A .framer-1g5t68j, .framer-dWr4A .framer-1lbmtnq, .framer-dWr4A .framer-1qjqcsq, .framer-dWr4A .framer-2kyyff, .framer-dWr4A .framer-1x9t5ro, .framer-dWr4A .framer-6lz6y8, .framer-dWr4A .framer-pd8kcq { height: 270px; position: relative; width: 540px; }\",\".framer-dWr4A .framer-14v30xj { flex: none; height: 100%; left: 0px; mix-blend-mode: multiply; position: absolute; top: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dWr4A.framer-h5zo1o, .framer-dWr4A .framer-bgtwzs, .framer-dWr4A .framer-18aafs3 { gap: 0px; } .framer-dWr4A.framer-h5zo1o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-dWr4A.framer-h5zo1o > :first-child, .framer-dWr4A .framer-bgtwzs > :first-child { margin-top: 0px; } .framer-dWr4A.framer-h5zo1o > :last-child, .framer-dWr4A .framer-bgtwzs > :last-child { margin-bottom: 0px; } .framer-dWr4A .framer-bgtwzs > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-dWr4A .framer-18aafs3 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-dWr4A .framer-18aafs3 > :first-child { margin-left: 0px; } .framer-dWr4A .framer-18aafs3 > :last-child { margin-right: 0px; } }\",\".framer-dWr4A.framer-v-1a27zy2.framer-h5zo1o { padding: 300px 60px 80px 60px; width: 780px; }\",\".framer-dWr4A.framer-v-w4m6du.framer-h5zo1o { padding: 240px 40px 60px 40px; width: 390px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-dWr4A[data-border=\"true\"]::after, .framer-dWr4A [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 637\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eVY9bwmdB\":{\"layout\":[\"fixed\",\"auto\"]},\"QXcS1DDv1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KVP6M4f0t\":\"heading\",\"JYYdYatkF\":\"subheading\",\"cgsI6ovFC\":\"showSubheading\",\"Zy4oXhCl0\":\"showButton\",\"vuv8wKglh\":\"showSecondaryButton\",\"MQevuQImT\":\"buttonText\",\"myQ6KvU_8\":\"secondaryButtonText\",\"mGvkVHW0R\":\"heroImage\",\"uf9rYUxjJ\":\"heroImage2\",\"Ui5kHAkgU\":\"heroImage3\",\"M9k4VMiYx\":\"heroImage4\",\"vuAgaVYMS\":\"heroImage5\",\"rGbDtRoCJ\":\"heroImage6\",\"s40x0nq9O\":\"heroImage7\",\"OqQEmwgaJ\":\"buttonLink\",\"RIIdyEdPX\":\"secondaryButtonLink\",\"pbPe7sRiX\":\"buttonType\",\"ceWL6HutY\":\"secondaryButtonType\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP5Q9ZQ8nB=withCSS(Component,css,\"framer-dWr4A\");export default FramerP5Q9ZQ8nB;FramerP5Q9ZQ8nB.displayName=\"slide-hero\";FramerP5Q9ZQ8nB.defaultProps={height:637,width:1440};addPropertyControls(FramerP5Q9ZQ8nB,{variant:{options:[\"EyJXdyL3I\",\"eVY9bwmdB\",\"QXcS1DDv1\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},KVP6M4f0t:{defaultValue:\"Page Title\",displayTextArea:false,placeholder:\"Page Title\",title:\"Heading\",type:ControlType.String},JYYdYatkF:{defaultValue:\"Papich Construction is a full-service general contractor specializing in large scale infrastructure improvements.\",displayTextArea:true,placeholder:\"Page Subheading\",title:\"Subheading\",type:ControlType.String},cgsI6ovFC:{defaultValue:true,title:\"Show Subheading\",type:ControlType.Boolean},Zy4oXhCl0:{defaultValue:true,title:\"Show Button\",type:ControlType.Boolean},vuv8wKglh:{defaultValue:true,title:\"Show Secondary Button\",type:ControlType.Boolean},MQevuQImT:{defaultValue:\"Plan Your Project\",displayTextArea:false,title:\"Button Text\",type:ControlType.String},myQ6KvU_8:{defaultValue:\"View Our Services\",displayTextArea:false,title:\"Secondary Button Text\",type:ControlType.String},mGvkVHW0R:{__defaultAssetReference:\"data:framer/asset-reference,tFpV4eOonsT6lIudbE3WMoodtI.png?originalFilename=video-bg.png&preferredSize=auto\",title:\"Hero Image\",type:ControlType.ResponsiveImage},uf9rYUxjJ:{__defaultAssetReference:\"data:framer/asset-reference,tFpV4eOonsT6lIudbE3WMoodtI.png?originalFilename=video-bg.png&preferredSize=auto\",title:\"Hero Image 2\",type:ControlType.ResponsiveImage},Ui5kHAkgU:{__defaultAssetReference:\"data:framer/asset-reference,tFpV4eOonsT6lIudbE3WMoodtI.png?originalFilename=video-bg.png&preferredSize=auto\",title:\"Hero Image 3\",type:ControlType.ResponsiveImage},M9k4VMiYx:{__defaultAssetReference:\"data:framer/asset-reference,tFpV4eOonsT6lIudbE3WMoodtI.png?originalFilename=video-bg.png&preferredSize=auto\",title:\"Hero Image 4\",type:ControlType.ResponsiveImage},vuAgaVYMS:{__defaultAssetReference:\"data:framer/asset-reference,tFpV4eOonsT6lIudbE3WMoodtI.png?originalFilename=video-bg.png&preferredSize=auto\",title:\"Hero Image 5\",type:ControlType.ResponsiveImage},rGbDtRoCJ:{__defaultAssetReference:\"data:framer/asset-reference,tFpV4eOonsT6lIudbE3WMoodtI.png?originalFilename=video-bg.png&preferredSize=auto\",title:\"Hero Image 6\",type:ControlType.ResponsiveImage},s40x0nq9O:{__defaultAssetReference:\"data:framer/asset-reference,tFpV4eOonsT6lIudbE3WMoodtI.png?originalFilename=video-bg.png&preferredSize=auto\",title:\"Hero Image 7\",type:ControlType.ResponsiveImage},OqQEmwgaJ:{title:\"Button Link\",type:ControlType.Link},RIIdyEdPX:{title:\"Secondary Button Link\",type:ControlType.Link},pbPe7sRiX:(ButtonControls===null||ButtonControls===void 0?void 0:ButtonControls[\"variant\"])&&{...ButtonControls[\"variant\"],defaultValue:\"BaWftJW6j\",description:undefined,hidden:undefined,title:\"Button Type\"},ceWL6HutY:(ButtonControls===null||ButtonControls===void 0?void 0:ButtonControls[\"variant\"])&&{...ButtonControls[\"variant\"],defaultValue:\"ojqMfr0_s\",description:undefined,hidden:undefined,title:\"Secondary Button Type\"}});addFonts(FramerP5Q9ZQ8nB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP5Q9ZQ8nB\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"637\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"KVP6M4f0t\\\":\\\"heading\\\",\\\"JYYdYatkF\\\":\\\"subheading\\\",\\\"cgsI6ovFC\\\":\\\"showSubheading\\\",\\\"Zy4oXhCl0\\\":\\\"showButton\\\",\\\"vuv8wKglh\\\":\\\"showSecondaryButton\\\",\\\"MQevuQImT\\\":\\\"buttonText\\\",\\\"myQ6KvU_8\\\":\\\"secondaryButtonText\\\",\\\"mGvkVHW0R\\\":\\\"heroImage\\\",\\\"uf9rYUxjJ\\\":\\\"heroImage2\\\",\\\"Ui5kHAkgU\\\":\\\"heroImage3\\\",\\\"M9k4VMiYx\\\":\\\"heroImage4\\\",\\\"vuAgaVYMS\\\":\\\"heroImage5\\\",\\\"rGbDtRoCJ\\\":\\\"heroImage6\\\",\\\"s40x0nq9O\\\":\\\"heroImage7\\\",\\\"OqQEmwgaJ\\\":\\\"buttonLink\\\",\\\"RIIdyEdPX\\\":\\\"secondaryButtonLink\\\",\\\"pbPe7sRiX\\\":\\\"buttonType\\\",\\\"ceWL6HutY\\\":\\\"secondaryButtonType\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eVY9bwmdB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QXcS1DDv1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P5Q9ZQ8nB.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import FeaturedClientsBlock from\"#framer/local/canvasComponent/acvgRDxNc/acvgRDxNc.js\";import Footer from\"#framer/local/canvasComponent/D40qp8T6D/D40qp8T6D.js\";import Button from\"#framer/local/canvasComponent/lBK69eXLg/lBK69eXLg.js\";import ProjectInquiryForm from\"#framer/local/canvasComponent/Nq4cRL0HF/Nq4cRL0HF.js\";import Testimonial from\"#framer/local/canvasComponent/nrlIxOg2Y/nrlIxOg2Y.js\";import SlideHero from\"#framer/local/canvasComponent/P5Q9ZQ8nB/P5Q9ZQ8nB.js\";import AffiliateLogos from\"#framer/local/canvasComponent/PGkuaz8py/PGkuaz8py.js\";import BackToTopLink from\"#framer/local/canvasComponent/qb0wCWbxF/qb0wCWbxF.js\";import Nav from\"#framer/local/canvasComponent/SaJahMmWD/SaJahMmWD.js\";import{withShuffledItems}from\"#framer/local/codeFile/nzFmD0e/RandomlyChooseOneFromCMS.js\";import News from\"#framer/local/collection/GQ6BKkeyE/GQ6BKkeyE.js\";import Quotes from\"#framer/local/collection/SHuAvwbCX/SHuAvwbCX.js\";import*as sharedStyle from\"#framer/local/css/Ee8Jroyt5/Ee8Jroyt5.js\";import*as sharedStyle3 from\"#framer/local/css/lIBsTnclk/lIBsTnclk.js\";import*as sharedStyle1 from\"#framer/local/css/M7ZrDYUGc/M7ZrDYUGc.js\";import*as sharedStyle2 from\"#framer/local/css/mW0isVz_u/mW0isVz_u.js\";import*as sharedStyle6 from\"#framer/local/css/NoJyA2GLQ/NoJyA2GLQ.js\";import*as sharedStyle7 from\"#framer/local/css/oEw5cB4W5/oEw5cB4W5.js\";import*as sharedStyle5 from\"#framer/local/css/Tl7xdJyD0/Tl7xdJyD0.js\";import*as sharedStyle4 from\"#framer/local/css/UNTYfIWnu/UNTYfIWnu.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavFonts=getFonts(Nav);const NavWithVariantAppearEffect=withVariantAppearEffect(Nav);const SlideHeroFonts=getFonts(SlideHero);const FeaturedClientsBlockFonts=getFonts(FeaturedClientsBlock);const ContainerWithFX=withFX(Container);const TestimonialFonts=getFonts(Testimonial);const MotionDivWithShuffledItems=withShuffledItems(motion.div);const ButtonFonts=getFonts(Button);const AffiliateLogosFonts=getFonts(AffiliateLogos);const CarouselFonts=getFonts(Carousel);const FooterFonts=getFonts(Footer);const ProjectInquiryFormFonts=getFonts(ProjectInquiryForm);const BackToTopLinkFonts=getFonts(BackToTopLink);const MotionDivWithFX=withFX(motion.div);const breakpoints={EN2Byzstt:\"(min-width: 780px) and (max-width: 1079px)\",NBMlB54py:\"(max-width: 779px)\",WQLkyLRf1:\"(min-width: 1440px)\",zvlcDJgFN:\"(min-width: 1080px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-boVxf\";const variantClassNames={EN2Byzstt:\"framer-v-btnzqh\",NBMlB54py:\"framer-v-fpriej\",WQLkyLRf1:\"framer-v-72rtr7\",zvlcDJgFN:\"framer-v-1ab78bi\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop Large\":\"WQLkyLRf1\",Desktop:\"zvlcDJgFN\",Phone:\"NBMlB54py\",Tablet:\"EN2Byzstt\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,zdBkfVl_MLRYp_PaxI,ZiRd2CpszLRYp_PaxI,os6CDnWvILRYp_PaxI,qbTnQ3FskLRYp_PaxI,idLRYp_PaxI,lq2mhsdPcKNqsYf9NM,lWQA0VN28KNqsYf9NM,LjYM379auKNqsYf9NM,kHB30KvsiKNqsYf9NM,bove0_T0YKNqsYf9NM,idKNqsYf9NM,lq2mhsdPcGPAGMn0S2,lWQA0VN28GPAGMn0S2,LjYM379auGPAGMn0S2,kHB30KvsiGPAGMn0S2,bove0_T0YGPAGMn0S2,idGPAGMn0S2,lq2mhsdPcyyf60rYkI,lWQA0VN28yyf60rYkI,LjYM379auyyf60rYkI,kHB30Kvsiyyf60rYkI,bove0_T0Yyyf60rYkI,idyyf60rYkI,lq2mhsdPcKbY2U9_sD,lWQA0VN28KbY2U9_sD,LjYM379auKbY2U9_sD,kHB30KvsiKbY2U9_sD,bove0_T0YKbY2U9_sD,idKbY2U9_sD,...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-boVxf`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-boVxf`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const vxe4wdSP13bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const hPjGeELUw1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const router=useRouter();const ref2=React.useRef(null);const elementId=useRouteElementId(\"q3fbjvRq2\");const activeLocaleCode=useLocaleCode();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-52pg59-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EN2Byzstt:{__framer__variantAppearEffectEnabled:undefined,oJK6FIeks:resolvedLinks[2],variant:\"vSnY2jC_d\"},NBMlB54py:{__framer__variantAppearEffectEnabled:undefined,oJK6FIeks:resolvedLinks[3],variant:\"vSnY2jC_d\"},zvlcDJgFN:{__framer__targets:undefined,oJK6FIeks:resolvedLinks[1],variant:\"nAXpEEkJx\"}},children:/*#__PURE__*/_jsx(NavWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"aQ24Oyy8J\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"nIj1kBGAY\",layoutId:\"nIj1kBGAY\",oJK6FIeks:resolvedLinks[0],style:{width:\"100%\"},variant:\"zMjWI0X9o\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:637,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-enskig-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EN2Byzstt:{variant:\"eVY9bwmdB\"},NBMlB54py:{variant:\"QXcS1DDv1\"}},children:/*#__PURE__*/_jsx(SlideHero,{ceWL6HutY:\"ojqMfr0_s\",cgsI6ovFC:true,height:\"100%\",id:\"xXHrpDTj1\",JYYdYatkF:\"Specializing in Road & Highway, Emergency Response, Railway Infrastructure, Utility Infrastructure, Alternative Energy, Airport, Environmental Remediation, and Heavy Equipment Rental\",KVP6M4f0t:\"A vertically integrated Heavy Civil Contractor\",layoutId:\"xXHrpDTj1\",M9k4VMiYx:addImageAlt({src:\"https://framerusercontent.com/images/fHi8lnZV0JZUrew22i4S45u6pk.jpg\",srcSet:\"https://framerusercontent.com/images/fHi8lnZV0JZUrew22i4S45u6pk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fHi8lnZV0JZUrew22i4S45u6pk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fHi8lnZV0JZUrew22i4S45u6pk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fHi8lnZV0JZUrew22i4S45u6pk.jpg 3000w\"},\"\"),mGvkVHW0R:addImageAlt({src:\"https://framerusercontent.com/images/myPnMiArEtuJs2gp4bDfM4oRVQ.jpg\",srcSet:\"https://framerusercontent.com/images/myPnMiArEtuJs2gp4bDfM4oRVQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/myPnMiArEtuJs2gp4bDfM4oRVQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/myPnMiArEtuJs2gp4bDfM4oRVQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/myPnMiArEtuJs2gp4bDfM4oRVQ.jpg 3000w\"},\"\"),MQevuQImT:\"Get in Touch\",myQ6KvU_8:\"View Our Services\",pbPe7sRiX:\"BaWftJW6j\",rGbDtRoCJ:addImageAlt({src:\"https://framerusercontent.com/images/jvxkssSX3sTh59wGSW3fKTNU.jpg\",srcSet:\"https://framerusercontent.com/images/jvxkssSX3sTh59wGSW3fKTNU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jvxkssSX3sTh59wGSW3fKTNU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jvxkssSX3sTh59wGSW3fKTNU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jvxkssSX3sTh59wGSW3fKTNU.jpg 3000w\"},\"\"),s40x0nq9O:addImageAlt({src:\"https://framerusercontent.com/images/ggG9arVKJ2ZLJfspp36wdzau5SI.jpg\",srcSet:\"https://framerusercontent.com/images/ggG9arVKJ2ZLJfspp36wdzau5SI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ggG9arVKJ2ZLJfspp36wdzau5SI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ggG9arVKJ2ZLJfspp36wdzau5SI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ggG9arVKJ2ZLJfspp36wdzau5SI.jpg 3000w\"},\"\"),style:{width:\"100%\"},uf9rYUxjJ:addImageAlt({src:\"https://framerusercontent.com/images/arpIicgHBZKDsZxuWkEkH47pU.jpg\",srcSet:\"https://framerusercontent.com/images/arpIicgHBZKDsZxuWkEkH47pU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/arpIicgHBZKDsZxuWkEkH47pU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/arpIicgHBZKDsZxuWkEkH47pU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/arpIicgHBZKDsZxuWkEkH47pU.jpg 3000w\"},\"\"),Ui5kHAkgU:addImageAlt({src:\"https://framerusercontent.com/images/tIfkMyMqcPadpHd9fUkbGF6IM.jpg\",srcSet:\"https://framerusercontent.com/images/tIfkMyMqcPadpHd9fUkbGF6IM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tIfkMyMqcPadpHd9fUkbGF6IM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tIfkMyMqcPadpHd9fUkbGF6IM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tIfkMyMqcPadpHd9fUkbGF6IM.jpg 3000w\"},\"\"),variant:\"EyJXdyL3I\",vuAgaVYMS:addImageAlt({src:\"https://framerusercontent.com/images/SHakKkgbu00215FwPW2TtWxaUDI.jpg\",srcSet:\"https://framerusercontent.com/images/SHakKkgbu00215FwPW2TtWxaUDI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SHakKkgbu00215FwPW2TtWxaUDI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SHakKkgbu00215FwPW2TtWxaUDI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SHakKkgbu00215FwPW2TtWxaUDI.jpg 3000w\"},\"\"),vuv8wKglh:false,width:\"100%\",Zy4oXhCl0:false})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d7dpl2\",\"data-framer-name\":\"featured-clients\",id:elementId,name:\"featured-clients\",ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EN2Byzstt:{width:\"calc(100vw - 120px)\"},NBMlB54py:{width:\"calc(100vw - 80px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:\"calc(100vw - 200px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uo6enf-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EN2Byzstt:{variant:\"SQnjstVMg\"},NBMlB54py:{variant:\"RgAu_9is8\"},zvlcDJgFN:{variant:\"ZtbIxvxHf\"}},children:/*#__PURE__*/_jsx(FeaturedClientsBlock,{height:\"100%\",id:\"PrBzj1gSL\",layoutId:\"PrBzj1gSL\",mh3zeMy5m:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"For over 25 years, Papich Construction has successfully served clients and agencies across California and beyond.\"})}),SKDS7Vf08:\"NOTABLE Clients\",style:{width:\"100%\"},variant:\"mMrqkc0U9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nj7qe9\",\"data-framer-name\":\"quote\",name:\"quote\",children:/*#__PURE__*/_jsx(MotionDivWithShuffledItems,{className:\"framer-13fae7r\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LRYp_PaxI\",data:Quotes,type:\"Collection\"},select:[{collection:\"LRYp_PaxI\",name:\"zdBkfVl_M\",type:\"Identifier\"},{collection:\"LRYp_PaxI\",name:\"ZiRd2Cpsz\",type:\"Identifier\"},{collection:\"LRYp_PaxI\",name:\"os6CDnWvI\",type:\"Identifier\"},{collection:\"LRYp_PaxI\",name:\"qbTnQ3Fsk\",type:\"Identifier\"},{collection:\"LRYp_PaxI\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"LRYp_PaxI\",name:\"os6CDnWvI\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"LRYp_PaxI\",name:\"os6CDnWvI\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection===null||collection===void 0?void 0:collection.map(({id:idLRYp_PaxI,os6CDnWvI:os6CDnWvILRYp_PaxI,qbTnQ3Fsk:qbTnQ3FskLRYp_PaxI,zdBkfVl_M:zdBkfVl_MLRYp_PaxI,ZiRd2Cpsz:ZiRd2CpszLRYp_PaxI},i)=>{zdBkfVl_MLRYp_PaxI!==null&&zdBkfVl_MLRYp_PaxI!==void 0?zdBkfVl_MLRYp_PaxI:zdBkfVl_MLRYp_PaxI=\"\";ZiRd2CpszLRYp_PaxI!==null&&ZiRd2CpszLRYp_PaxI!==void 0?ZiRd2CpszLRYp_PaxI:ZiRd2CpszLRYp_PaxI=\"\";os6CDnWvILRYp_PaxI!==null&&os6CDnWvILRYp_PaxI!==void 0?os6CDnWvILRYp_PaxI:os6CDnWvILRYp_PaxI=\"\";qbTnQ3FskLRYp_PaxI!==null&&qbTnQ3FskLRYp_PaxI!==void 0?qbTnQ3FskLRYp_PaxI:qbTnQ3FskLRYp_PaxI=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LRYp_PaxI-${idLRYp_PaxI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qbTnQ3Fsk:qbTnQ3FskLRYp_PaxI},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4vay0y\",\"data-framer-name\":\"Post\",name:\"Post\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EN2Byzstt:{width:\"min(100vw - 120px, 1400px)\"},NBMlB54py:{width:\"min(100vw - 80px, 1400px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:332,width:\"min(100vw - 200px, 1400px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3y098-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EN2Byzstt:{variant:\"Uo6yB8HAG\"},NBMlB54py:{variant:\"t_vOHKJBw\"}},children:/*#__PURE__*/_jsx(Testimonial,{e7TqpvuMn:ZiRd2CpszLRYp_PaxI,height:\"100%\",id:\"sc2sn1BcF\",layoutId:\"sc2sn1BcF\",somTWk2bx:zdBkfVl_MLRYp_PaxI,style:{width:\"100%\"},tMIXnLyCh:os6CDnWvILRYp_PaxI,variant:\"YBFAY9jsN\",width:\"100%\"})})})})})})})},idLRYp_PaxI);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cyvys\",\"data-framer-name\":\"stats-row\",name:\"stats-row\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-splgif\",\"data-border\":true,\"data-framer-name\":\"stats\",name:\"stats\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8o9dwl\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1qb9m9s\",\"data-styles-preset\":\"Ee8Jroyt5\",children:\"SINCE\"})}),className:\"framer-6uqzhe\",\"data-framer-name\":\"SINCE\",fonts:[\"Inter\"],name:\"SINCE\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-eo9b0u\",\"data-styles-preset\":\"M7ZrDYUGc\",children:\"1997\"})}),className:\"framer-h7kpz9\",\"data-framer-name\":\"1997\",fonts:[\"Inter\"],name:\"1997\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18uklyp\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-eo9b0u\",\"data-styles-preset\":\"M7ZrDYUGc\",children:\"25M CY\"})}),className:\"framer-cqw9zu\",\"data-framer-name\":\"25M CY\",fonts:[\"Inter\"],name:\"25M CY\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1qb9m9s\",\"data-styles-preset\":\"Ee8Jroyt5\",children:\"Earthwork Moved\"})}),className:\"framer-33txxo\",\"data-framer-name\":\"Earthwork Moved\",fonts:[\"Inter\"],name:\"Earthwork Moved\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-22p3ck\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-eo9b0u\",\"data-styles-preset\":\"M7ZrDYUGc\",children:\"1.9M\"})}),className:\"framer-pvwuh8\",\"data-framer-name\":\"1.9M\",fonts:[\"Inter\"],name:\"1.9M\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1qb9m9s\",\"data-styles-preset\":\"Ee8Jroyt5\",children:\"TONS PAVING\"})}),className:\"framer-wk5onc\",\"data-framer-name\":\"TONS PAVING\",fonts:[\"Inter\"],name:\"TONS PAVING\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3z0u8r\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-eo9b0u\",\"data-styles-preset\":\"M7ZrDYUGc\",children:\"66 MILES\"})}),className:\"framer-dd1cqq\",\"data-framer-name\":\"66 MILES\",fonts:[\"Inter\"],name:\"66 MILES\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1qb9m9s\",\"data-styles-preset\":\"Ee8Jroyt5\",children:\"UTILITIES\"})}),className:\"framer-154yc0l\",\"data-framer-name\":\"UTILITIES\",fonts:[\"Inter\"],name:\"UTILITIES\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i4cbq6\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-eo9b0u\",\"data-styles-preset\":\"M7ZrDYUGc\",children:\"500+\"})}),className:\"framer-umz4qo\",\"data-framer-name\":\"500+\",fonts:[\"Inter\"],name:\"500+\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1qb9m9s\",\"data-styles-preset\":\"Ee8Jroyt5\",children:\"PROJECtS dELIVERED\"})}),className:\"framer-1d3wxa\",\"data-framer-name\":\"PROJECtS dELIVERED\",fonts:[\"Inter\"],name:\"PROJECtS dELIVERED\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uhh9tu\",\"data-framer-name\":\"assoc-wrapper\",name:\"assoc-wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c5codm\",\"data-framer-name\":\"associations\",name:\"associations\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17gac1f\",\"data-framer-name\":\"assoc\",name:\"assoc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lk3nmv\",\"data-framer-name\":\"overline\",name:\"overline\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-wfxi64\",\"data-styles-preset\":\"mW0isVz_u\",children:\"Expertise. Trust. Accountability.\"})}),className:\"framer-15jsb5k\",\"data-framer-name\":\"Expertise. Trust. Accountability.\",fonts:[\"Inter\"],name:\"Expertise. Trust. Accountability.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y1lt97\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1npz6i\",\"data-styles-preset\":\"lIBsTnclk\",children:\"Papich Construction is affiliated with these well-known organizations and companies.\"})}),className:\"framer-1nr4ojt\",\"data-framer-name\":\"Papich Construction is affiliated with these well-known organizations and companies.\",fonts:[\"Inter\"],name:\"Papich Construction is affiliated with these well-known organizations and companies.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kj98sp\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"geotDEZRz\"},implicitPathVariables:undefined},{href:{webPageId:\"geotDEZRz\"},implicitPathVariables:undefined},{href:{webPageId:\"geotDEZRz\"},implicitPathVariables:undefined},{href:{webPageId:\"geotDEZRz\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o2ntpa-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EN2Byzstt:{ZPbcjitDT:resolvedLinks1[2]},NBMlB54py:{ZPbcjitDT:resolvedLinks1[3]},zvlcDJgFN:{ZPbcjitDT:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"KmJqcgz55\",layoutId:\"KmJqcgz55\",q072X1eG4:\"Get to Know Us\",ria8Mv090:false,TnAKvfhMt:false,variant:\"W65WaJAgz\",width:\"100%\",ZPbcjitDT:resolvedLinks1[0]})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zu3lbz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NBMlB54py:{style:{width:\"100%\"},variant:\"n0cT0If8i\"},zvlcDJgFN:{style:{width:\"100%\"},variant:\"fiDSfVrVd\"}},children:/*#__PURE__*/_jsx(AffiliateLogos,{height:\"100%\",id:\"nkULx5bBF\",layoutId:\"nkULx5bBF\",style:{height:\"100%\",width:\"100%\"},variant:\"cltU5o8sN\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1curi3i\",\"data-framer-name\":\"news\",name:\"news\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16js10w\",\"data-framer-name\":\"news--copy\",name:\"news--copy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ykzl7x\",\"data-framer-name\":\"overline\",name:\"overline\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-x8hvha\",\"data-styles-preset\":\"UNTYfIWnu\",children:\"The LAteSt\"})}),className:\"framer-16y6rzo\",\"data-framer-name\":\"The LAteSt\",fonts:[\"Inter\"],name:\"The LAteSt\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-114ucjy\",\"data-styles-preset\":\"Tl7xdJyD0\",children:\"Here\u2019s a few notable company news items and press mentions featuring our work.\"})}),className:\"framer-19y8mkn\",\"data-framer-name\":\"Here\u2019s a few notable company news items and press mentions featuring our work.\",fonts:[\"Inter\"],name:\"Here\u2019s a few notable company news items and press mentions featuring our work.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12qxmme-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EN2Byzstt:{arrowObject:{arrowFill:\"var(--token-8169b89b-868d-482b-9d30-bc6fc7671a27, rgb(31, 108, 153))\",arrowPadding:10,arrowRadius:40,arrowSize:30,showMouseControls:true},snapObject:{fluid:false,snap:true,snapEdge:\"start\"}},NBMlB54py:{arrowObject:{arrowFill:\"var(--token-8169b89b-868d-482b-9d30-bc6fc7671a27, rgb(31, 108, 153))\",arrowPadding:10,arrowRadius:40,arrowSize:40,showMouseControls:false},fadeObject:{fadeAlpha:.5,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},paddingBottom:70,paddingLeft:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"var(--token-75038250-9fc2-448f-9f9f-dd68046e45c9, rgb(4, 26, 39))\",dotsBlur:4,dotsFill:\"var(--token-1ec8ce63-1b77-4902-9b7b-11dfa78fd3e3, rgb(93, 169, 213))\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"auto\"}},zvlcDJgFN:{snapObject:{fluid:false,snap:true,snapEdge:\"start\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"Latest News\",arrowObject:{arrowFill:\"var(--token-8169b89b-868d-482b-9d30-bc6fc7671a27, rgb(31, 108, 153))\",arrowPadding:10,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.5,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:0,height:\"100%\",id:\"hjZhU8aVB\",layoutId:\"hjZhU8aVB\",padding:0,paddingBottom:0,paddingLeft:20,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l3uio0\",\"data-framer-name\":\"article 1\",name:\"article 1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KNqsYf9NM\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"KNqsYf9NM\",direction:\"desc\",name:\"lq2mhsdPc\",type:\"Identifier\"}],select:[{collection:\"KNqsYf9NM\",name:\"lq2mhsdPc\",type:\"Identifier\"},{collection:\"KNqsYf9NM\",name:\"lWQA0VN28\",type:\"Identifier\"},{collection:\"KNqsYf9NM\",name:\"LjYM379au\",type:\"Identifier\"},{collection:\"KNqsYf9NM\",name:\"kHB30Kvsi\",type:\"Identifier\"},{collection:\"KNqsYf9NM\",name:\"bove0_T0Y\",type:\"Identifier\"},{collection:\"KNqsYf9NM\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1===null||collection1===void 0?void 0:collection1.map(({bove0_T0Y:bove0_T0YKNqsYf9NM,id:idKNqsYf9NM,kHB30Kvsi:kHB30KvsiKNqsYf9NM,LjYM379au:LjYM379auKNqsYf9NM,lq2mhsdPc:lq2mhsdPcKNqsYf9NM,lWQA0VN28:lWQA0VN28KNqsYf9NM},i1)=>{lWQA0VN28KNqsYf9NM!==null&&lWQA0VN28KNqsYf9NM!==void 0?lWQA0VN28KNqsYf9NM:lWQA0VN28KNqsYf9NM=\"\";LjYM379auKNqsYf9NM!==null&&LjYM379auKNqsYf9NM!==void 0?LjYM379auKNqsYf9NM:LjYM379auKNqsYf9NM=\"\";bove0_T0YKNqsYf9NM!==null&&bove0_T0YKNqsYf9NM!==void 0?bove0_T0YKNqsYf9NM:bove0_T0YKNqsYf9NM=\"\";const textContent=toDateString(lq2mhsdPcKNqsYf9NM,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible=isSet(kHB30KvsiKNqsYf9NM);return /*#__PURE__*/_jsx(LayoutGroup,{id:`KNqsYf9NM-${idKNqsYf9NM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{bove0_T0Y:bove0_T0YKNqsYf9NM},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vvxjni\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p44pqm\",\"data-border\":true,\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1qb9m9s\",\"data-styles-preset\":\"Ee8Jroyt5\",children:\"Content\"})}),className:\"framer-1pdqxqo\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-xiqzyx\",\"data-styles-preset\":\"NoJyA2GLQ\",children:\"Title\"})}),className:\"framer-1yu0uqe\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:lWQA0VN28KNqsYf9NM,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q23k8m\",\"data-styles-preset\":\"oEw5cB4W5\",style:{\"--framer-text-color\":\"var(--token-43e5e399-d705-42e0-a9a1-fb91493119e1, rgb(160, 200, 224))\"},children:\"Summary\"})}),className:\"framer-1upytfa\",\"data-framer-name\":\"Summary\",fonts:[\"Inter\"],name:\"Summary\",text:LjYM379auKNqsYf9NM,verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"320px\",...toResponsiveImage(kHB30KvsiKNqsYf9NM)},className:\"framer-1gmjy9x\",\"data-border\":true})]})})},idKNqsYf9NM);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9k5xxi\",\"data-framer-name\":\"article 2\",name:\"article 2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GPAGMn0S2\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"GPAGMn0S2\",direction:\"desc\",name:\"lq2mhsdPc\",type:\"Identifier\"}],select:[{collection:\"GPAGMn0S2\",name:\"lq2mhsdPc\",type:\"Identifier\"},{collection:\"GPAGMn0S2\",name:\"lWQA0VN28\",type:\"Identifier\"},{collection:\"GPAGMn0S2\",name:\"LjYM379au\",type:\"Identifier\"},{collection:\"GPAGMn0S2\",name:\"kHB30Kvsi\",type:\"Identifier\"},{collection:\"GPAGMn0S2\",name:\"bove0_T0Y\",type:\"Identifier\"},{collection:\"GPAGMn0S2\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2===null||collection2===void 0?void 0:collection2.map(({bove0_T0Y:bove0_T0YGPAGMn0S2,id:idGPAGMn0S2,kHB30Kvsi:kHB30KvsiGPAGMn0S2,LjYM379au:LjYM379auGPAGMn0S2,lq2mhsdPc:lq2mhsdPcGPAGMn0S2,lWQA0VN28:lWQA0VN28GPAGMn0S2},i2)=>{lWQA0VN28GPAGMn0S2!==null&&lWQA0VN28GPAGMn0S2!==void 0?lWQA0VN28GPAGMn0S2:lWQA0VN28GPAGMn0S2=\"\";LjYM379auGPAGMn0S2!==null&&LjYM379auGPAGMn0S2!==void 0?LjYM379auGPAGMn0S2:LjYM379auGPAGMn0S2=\"\";bove0_T0YGPAGMn0S2!==null&&bove0_T0YGPAGMn0S2!==void 0?bove0_T0YGPAGMn0S2:bove0_T0YGPAGMn0S2=\"\";const textContent1=toDateString(lq2mhsdPcGPAGMn0S2,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible1=isSet(kHB30KvsiGPAGMn0S2);return /*#__PURE__*/_jsx(LayoutGroup,{id:`GPAGMn0S2-${idGPAGMn0S2}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{bove0_T0Y:bove0_T0YGPAGMn0S2},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6u9oap\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q8pew6\",\"data-border\":true,\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1qb9m9s\",\"data-styles-preset\":\"Ee8Jroyt5\",children:\"Content\"})}),className:\"framer-4as4qk\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-xiqzyx\",\"data-styles-preset\":\"NoJyA2GLQ\",children:\"Title\"})}),className:\"framer-t0p3qb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:lWQA0VN28GPAGMn0S2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q23k8m\",\"data-styles-preset\":\"oEw5cB4W5\",style:{\"--framer-text-color\":\"var(--token-43e5e399-d705-42e0-a9a1-fb91493119e1, rgb(160, 200, 224))\"},children:\"Summary\"})}),className:\"framer-17qq4mf\",\"data-framer-name\":\"Summary\",fonts:[\"Inter\"],name:\"Summary\",text:LjYM379auGPAGMn0S2,verticalAlignment:\"top\",withExternalLayout:true})]}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"320px\",...toResponsiveImage(kHB30KvsiGPAGMn0S2)},className:\"framer-5hwn9w\",\"data-border\":true})]})})},idGPAGMn0S2);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a81164\",\"data-framer-name\":\"article 3\",name:\"article 3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yyf60rYkI\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"yyf60rYkI\",direction:\"desc\",name:\"lq2mhsdPc\",type:\"Identifier\"}],select:[{collection:\"yyf60rYkI\",name:\"lq2mhsdPc\",type:\"Identifier\"},{collection:\"yyf60rYkI\",name:\"lWQA0VN28\",type:\"Identifier\"},{collection:\"yyf60rYkI\",name:\"LjYM379au\",type:\"Identifier\"},{collection:\"yyf60rYkI\",name:\"kHB30Kvsi\",type:\"Identifier\"},{collection:\"yyf60rYkI\",name:\"bove0_T0Y\",type:\"Identifier\"},{collection:\"yyf60rYkI\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3===null||collection3===void 0?void 0:collection3.map(({bove0_T0Y:bove0_T0Yyyf60rYkI,id:idyyf60rYkI,kHB30Kvsi:kHB30Kvsiyyf60rYkI,LjYM379au:LjYM379auyyf60rYkI,lq2mhsdPc:lq2mhsdPcyyf60rYkI,lWQA0VN28:lWQA0VN28yyf60rYkI},i3)=>{lWQA0VN28yyf60rYkI!==null&&lWQA0VN28yyf60rYkI!==void 0?lWQA0VN28yyf60rYkI:lWQA0VN28yyf60rYkI=\"\";LjYM379auyyf60rYkI!==null&&LjYM379auyyf60rYkI!==void 0?LjYM379auyyf60rYkI:LjYM379auyyf60rYkI=\"\";bove0_T0Yyyf60rYkI!==null&&bove0_T0Yyyf60rYkI!==void 0?bove0_T0Yyyf60rYkI:bove0_T0Yyyf60rYkI=\"\";const textContent2=toDateString(lq2mhsdPcyyf60rYkI,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible2=isSet(kHB30Kvsiyyf60rYkI);return /*#__PURE__*/_jsx(LayoutGroup,{id:`yyf60rYkI-${idyyf60rYkI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{bove0_T0Y:bove0_T0Yyyf60rYkI},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1swtfyn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wgy0hc\",\"data-border\":true,\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1qb9m9s\",\"data-styles-preset\":\"Ee8Jroyt5\",children:\"Content\"})}),className:\"framer-1ggmkn2\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-xiqzyx\",\"data-styles-preset\":\"NoJyA2GLQ\",children:\"Title\"})}),className:\"framer-rpjbqj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:lWQA0VN28yyf60rYkI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q23k8m\",\"data-styles-preset\":\"oEw5cB4W5\",style:{\"--framer-text-color\":\"var(--token-43e5e399-d705-42e0-a9a1-fb91493119e1, rgb(160, 200, 224))\"},children:\"Summary\"})}),className:\"framer-14uwhvm\",\"data-framer-name\":\"Summary\",fonts:[\"Inter\"],name:\"Summary\",text:LjYM379auyyf60rYkI,verticalAlignment:\"top\",withExternalLayout:true})]}),visible2&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"320px\",...toResponsiveImage(kHB30Kvsiyyf60rYkI)},className:\"framer-1qyaab1\",\"data-border\":true})]})})},idyyf60rYkI);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mbkifz\",\"data-framer-name\":\"article 4\",name:\"article 4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KbY2U9_sD\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"KbY2U9_sD\",direction:\"desc\",name:\"lq2mhsdPc\",type:\"Identifier\"}],select:[{collection:\"KbY2U9_sD\",name:\"lq2mhsdPc\",type:\"Identifier\"},{collection:\"KbY2U9_sD\",name:\"lWQA0VN28\",type:\"Identifier\"},{collection:\"KbY2U9_sD\",name:\"LjYM379au\",type:\"Identifier\"},{collection:\"KbY2U9_sD\",name:\"kHB30Kvsi\",type:\"Identifier\"},{collection:\"KbY2U9_sD\",name:\"bove0_T0Y\",type:\"Identifier\"},{collection:\"KbY2U9_sD\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4===null||collection4===void 0?void 0:collection4.map(({bove0_T0Y:bove0_T0YKbY2U9_sD,id:idKbY2U9_sD,kHB30Kvsi:kHB30KvsiKbY2U9_sD,LjYM379au:LjYM379auKbY2U9_sD,lq2mhsdPc:lq2mhsdPcKbY2U9_sD,lWQA0VN28:lWQA0VN28KbY2U9_sD},i4)=>{lWQA0VN28KbY2U9_sD!==null&&lWQA0VN28KbY2U9_sD!==void 0?lWQA0VN28KbY2U9_sD:lWQA0VN28KbY2U9_sD=\"\";LjYM379auKbY2U9_sD!==null&&LjYM379auKbY2U9_sD!==void 0?LjYM379auKbY2U9_sD:LjYM379auKbY2U9_sD=\"\";bove0_T0YKbY2U9_sD!==null&&bove0_T0YKbY2U9_sD!==void 0?bove0_T0YKbY2U9_sD:bove0_T0YKbY2U9_sD=\"\";const textContent3=toDateString(lq2mhsdPcKbY2U9_sD,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible3=isSet(kHB30KvsiKbY2U9_sD);return /*#__PURE__*/_jsx(LayoutGroup,{id:`KbY2U9_sD-${idKbY2U9_sD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{bove0_T0Y:bove0_T0YKbY2U9_sD},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18x65be\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dimzzk\",\"data-border\":true,\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1qb9m9s\",\"data-styles-preset\":\"Ee8Jroyt5\",children:\"Content\"})}),className:\"framer-1wu74gp\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-xiqzyx\",\"data-styles-preset\":\"NoJyA2GLQ\",children:\"Title\"})}),className:\"framer-9y5v5e\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:lWQA0VN28KbY2U9_sD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q23k8m\",\"data-styles-preset\":\"oEw5cB4W5\",style:{\"--framer-text-color\":\"var(--token-43e5e399-d705-42e0-a9a1-fb91493119e1, rgb(160, 200, 224))\"},children:\"Summary\"})}),className:\"framer-k183c6\",\"data-framer-name\":\"Summary\",fonts:[\"Inter\"],name:\"Summary\",text:LjYM379auKbY2U9_sD,verticalAlignment:\"top\",withExternalLayout:true})]}),visible3&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"320px\",...toResponsiveImage(kHB30KvsiKbY2U9_sD)},className:\"framer-3yta4j\",\"data-border\":true})]})})},idKbY2U9_sD);})})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1nfjn4m-container\",id:\"1nfjn4m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EN2Byzstt:{variant:\"XG8CloQTf\"},NBMlB54py:{variant:\"pHpAHsMZ3\"},zvlcDJgFN:{variant:\"XG8CloQTf\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Z0Oy0jElY\",layoutId:\"Z0Oy0jElY\",style:{width:\"100%\"},variant:\"QWlvsead0\",vxe4wdSP1:vxe4wdSP13bnx0g({overlay}),width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1gv4pgo\",\"data-framer-portal-id\":\"1nfjn4m\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"z8W1EijqC\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NBMlB54py:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Container,{animate:animation2,className:\"framer-1reprqb-container\",\"data-framer-portal-id\":\"1nfjn4m\",exit:animation1,initial:animation,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NBMlB54py:{style:{width:\"100%\"},variant:\"eAdUaTvbH\"}},children:/*#__PURE__*/_jsx(ProjectInquiryForm,{height:\"100%\",hPjGeELUw:hPjGeELUw1wnntms({overlay}),id:\"eQohz9LZj\",layoutId:\"eQohz9LZj\",style:{height:\"100%\",width:\"100%\"},variant:\"DQU60Cswb\",width:\"100%\"})})})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hi583v\",\"data-framer-name\":\"top-top-wrapper\",name:\"top-top-wrapper\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xhxoxx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EN2Byzstt:{nhTBVoTJ6:resolvedLinks2[2]},NBMlB54py:{nhTBVoTJ6:resolvedLinks2[3],variant:\"GATMVsRzP\"},zvlcDJgFN:{nhTBVoTJ6:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(BackToTopLink,{height:\"100%\",id:\"LKusRr6H2\",layoutId:\"LKusRr6H2\",nhTBVoTJ6:resolvedLinks2[0],variant:\"YYS2qUlSg\",vKAEaKkBB:\"to top\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-boVxf { background: white; }`,\".framer-boVxf.framer-lux5qc, .framer-boVxf .framer-lux5qc { display: block; }\",\".framer-boVxf.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-boVxf .framer-52pg59-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-boVxf .framer-enskig-container, .framer-boVxf .framer-1uo6enf-container, .framer-boVxf .framer-3y098-container, .framer-boVxf .framer-1nfjn4m-container { flex: none; height: auto; position: relative; width: 100%; }\",'.framer-boVxf .framer-d7dpl2 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-a4213013-4134-4618-a98c-41d220c5b222, #03293f) /* {\"name\":\"Papich Blue - 700\"} */ 0%, var(--token-cec85d84-e7bc-4eff-9de4-ccbbebf5cebd, rgb(5, 33, 49)) /* {\"name\":\"Papich Blue - 800\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px 100px 120px 100px; position: relative; width: 100%; }',\".framer-boVxf .framer-1nj7qe9 { align-content: center; align-items: center; background-color: var(--token-cec85d84-e7bc-4eff-9de4-ccbbebf5cebd, #052131); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-boVxf .framer-13fae7r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1400px; padding: 0px; position: relative; width: 100%; }\",\".framer-boVxf .framer-4vay0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-boVxf .framer-cyvys { align-content: center; align-items: center; background-color: var(--token-cec85d84-e7bc-4eff-9de4-ccbbebf5cebd, #052131); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-boVxf .framer-splgif { --border-bottom-width: 2px; --border-color: var(--token-f6bb8498-d249-485a-ab52-291790aedbbe, #063f60); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-boVxf .framer-8o9dwl { --border-bottom-width: 0px; --border-color: var(--token-f6bb8498-d249-485a-ab52-291790aedbbe, #063f60); --border-left-width: 2px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: var(--token-cec85d84-e7bc-4eff-9de4-ccbbebf5cebd, #052131); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: min-content; }\",\".framer-boVxf .framer-6uqzhe, .framer-boVxf .framer-h7kpz9, .framer-boVxf .framer-cqw9zu, .framer-boVxf .framer-33txxo, .framer-boVxf .framer-pvwuh8, .framer-boVxf .framer-wk5onc, .framer-boVxf .framer-dd1cqq, .framer-boVxf .framer-154yc0l, .framer-boVxf .framer-umz4qo, .framer-boVxf .framer-1d3wxa { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-boVxf .framer-18uklyp, .framer-boVxf .framer-22p3ck, .framer-boVxf .framer-3z0u8r { --border-bottom-width: 0px; --border-color: var(--token-f6bb8498-d249-485a-ab52-291790aedbbe, #063f60); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: var(--token-cec85d84-e7bc-4eff-9de4-ccbbebf5cebd, #052131); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: min-content; }\",\".framer-boVxf .framer-1i4cbq6 { --border-bottom-width: 0px; --border-color: var(--token-f6bb8498-d249-485a-ab52-291790aedbbe, #063f60); --border-left-width: 1px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: var(--token-cec85d84-e7bc-4eff-9de4-ccbbebf5cebd, #052131); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: min-content; }\",\".framer-boVxf .framer-uhh9tu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px; position: relative; width: 100%; }\",\".framer-boVxf .framer-1c5codm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-boVxf .framer-17gac1f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 40%; }\",\".framer-boVxf .framer-lk3nmv { background-color: #dab227; flex: none; height: 7px; position: relative; width: 80px; }\",\".framer-boVxf .framer-15jsb5k, .framer-boVxf .framer-19y8mkn, .framer-boVxf .framer-1pdqxqo, .framer-boVxf .framer-1yu0uqe, .framer-boVxf .framer-1upytfa, .framer-boVxf .framer-4as4qk, .framer-boVxf .framer-t0p3qb, .framer-boVxf .framer-17qq4mf, .framer-boVxf .framer-1ggmkn2, .framer-boVxf .framer-rpjbqj, .framer-boVxf .framer-14uwhvm, .framer-boVxf .framer-1wu74gp, .framer-boVxf .framer-9y5v5e, .framer-boVxf .framer-k183c6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-boVxf .framer-y1lt97 { 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: 12px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-boVxf .framer-1nr4ojt { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-boVxf .framer-kj98sp { 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: 24px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-boVxf .framer-o2ntpa-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-boVxf .framer-zu3lbz-container { flex: 1 0 0px; height: 207px; position: relative; width: 1px; }\",'.framer-boVxf .framer-1curi3i { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, var(--token-df9048cf-82d6-42e8-b452-fc21dd432af6, #043450) /* {\"name\":\"Papich Blue - 600\"} */ 0%, var(--token-cec85d84-e7bc-4eff-9de4-ccbbebf5cebd, rgb(5, 33, 49)) /* {\"name\":\"Papich Blue - 800\"} */ 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 0px 120px 120px; position: relative; width: 100%; }',\".framer-boVxf .framer-16js10w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 320px; }\",\".framer-boVxf .framer-1ykzl7x { background-color: #f5c930; flex: none; height: 7px; position: relative; width: 101px; }\",\".framer-boVxf .framer-16y6rzo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 228px; word-break: break-word; word-wrap: break-word; }\",\".framer-boVxf .framer-12qxmme-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-boVxf .framer-l3uio0, .framer-boVxf .framer-9k5xxi, .framer-boVxf .framer-1a81164, .framer-boVxf .framer-1mbkifz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-boVxf .framer-1vvxjni, .framer-boVxf .framer-6u9oap, .framer-boVxf .framer-1swtfyn, .framer-boVxf .framer-18x65be { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 20px 0px 20px; position: relative; width: min-content; }\",\".framer-boVxf .framer-p44pqm, .framer-boVxf .framer-1q8pew6, .framer-boVxf .framer-wgy0hc, .framer-boVxf .framer-1dimzzk { --border-bottom-width: 1px; --border-color: var(--token-1ec8ce63-1b77-4902-9b7b-11dfa78fd3e3, #5da9d5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; 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; gap: 10px; height: 360px; justify-content: flex-end; padding: 30px; position: relative; width: 320px; }\",\".framer-boVxf .framer-1gmjy9x, .framer-boVxf .framer-5hwn9w, .framer-boVxf .framer-1qyaab1, .framer-boVxf .framer-3yta4j { --border-bottom-width: 1px; --border-color: var(--token-1ec8ce63-1b77-4902-9b7b-11dfa78fd3e3, #5da9d5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 360px; position: relative; width: 320px; }\",\".framer-boVxf .framer-1gv4pgo { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-boVxf .framer-1reprqb-container { flex: none; height: 620px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: calc(50.00000000000002% - 620px / 2); width: 100%; z-index: 10; }\",\".framer-boVxf .framer-hi583v { align-content: center; align-items: center; bottom: 110px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: fixed; right: 30px; width: min-content; z-index: 1; }\",\".framer-boVxf .framer-1xhxoxx-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-boVxf.framer-72rtr7, .framer-boVxf .framer-d7dpl2, .framer-boVxf .framer-1nj7qe9, .framer-boVxf .framer-13fae7r, .framer-boVxf .framer-4vay0y, .framer-boVxf .framer-cyvys, .framer-boVxf .framer-splgif, .framer-boVxf .framer-8o9dwl, .framer-boVxf .framer-18uklyp, .framer-boVxf .framer-22p3ck, .framer-boVxf .framer-3z0u8r, .framer-boVxf .framer-1i4cbq6, .framer-boVxf .framer-uhh9tu, .framer-boVxf .framer-1c5codm, .framer-boVxf .framer-17gac1f, .framer-boVxf .framer-y1lt97, .framer-boVxf .framer-kj98sp, .framer-boVxf .framer-1curi3i, .framer-boVxf .framer-16js10w, .framer-boVxf .framer-l3uio0, .framer-boVxf .framer-1vvxjni, .framer-boVxf .framer-p44pqm, .framer-boVxf .framer-9k5xxi, .framer-boVxf .framer-6u9oap, .framer-boVxf .framer-1q8pew6, .framer-boVxf .framer-1a81164, .framer-boVxf .framer-1swtfyn, .framer-boVxf .framer-wgy0hc, .framer-boVxf .framer-1mbkifz, .framer-boVxf .framer-18x65be, .framer-boVxf .framer-1dimzzk, .framer-boVxf .framer-hi583v { gap: 0px; } .framer-boVxf.framer-72rtr7 > *, .framer-boVxf .framer-d7dpl2 > *, .framer-boVxf .framer-1nj7qe9 > *, .framer-boVxf .framer-cyvys > *, .framer-boVxf .framer-uhh9tu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-boVxf.framer-72rtr7 > :first-child, .framer-boVxf .framer-d7dpl2 > :first-child, .framer-boVxf .framer-1nj7qe9 > :first-child, .framer-boVxf .framer-13fae7r > :first-child, .framer-boVxf .framer-4vay0y > :first-child, .framer-boVxf .framer-cyvys > :first-child, .framer-boVxf .framer-8o9dwl > :first-child, .framer-boVxf .framer-18uklyp > :first-child, .framer-boVxf .framer-22p3ck > :first-child, .framer-boVxf .framer-3z0u8r > :first-child, .framer-boVxf .framer-1i4cbq6 > :first-child, .framer-boVxf .framer-uhh9tu > :first-child, .framer-boVxf .framer-17gac1f > :first-child, .framer-boVxf .framer-16js10w > :first-child, .framer-boVxf .framer-l3uio0 > :first-child, .framer-boVxf .framer-p44pqm > :first-child, .framer-boVxf .framer-9k5xxi > :first-child, .framer-boVxf .framer-1q8pew6 > :first-child, .framer-boVxf .framer-1a81164 > :first-child, .framer-boVxf .framer-wgy0hc > :first-child, .framer-boVxf .framer-1mbkifz > :first-child, .framer-boVxf .framer-1dimzzk > :first-child { margin-top: 0px; } .framer-boVxf.framer-72rtr7 > :last-child, .framer-boVxf .framer-d7dpl2 > :last-child, .framer-boVxf .framer-1nj7qe9 > :last-child, .framer-boVxf .framer-13fae7r > :last-child, .framer-boVxf .framer-4vay0y > :last-child, .framer-boVxf .framer-cyvys > :last-child, .framer-boVxf .framer-8o9dwl > :last-child, .framer-boVxf .framer-18uklyp > :last-child, .framer-boVxf .framer-22p3ck > :last-child, .framer-boVxf .framer-3z0u8r > :last-child, .framer-boVxf .framer-1i4cbq6 > :last-child, .framer-boVxf .framer-uhh9tu > :last-child, .framer-boVxf .framer-17gac1f > :last-child, .framer-boVxf .framer-16js10w > :last-child, .framer-boVxf .framer-l3uio0 > :last-child, .framer-boVxf .framer-p44pqm > :last-child, .framer-boVxf .framer-9k5xxi > :last-child, .framer-boVxf .framer-1q8pew6 > :last-child, .framer-boVxf .framer-1a81164 > :last-child, .framer-boVxf .framer-wgy0hc > :last-child, .framer-boVxf .framer-1mbkifz > :last-child, .framer-boVxf .framer-1dimzzk > :last-child { margin-bottom: 0px; } .framer-boVxf .framer-13fae7r > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-boVxf .framer-4vay0y > *, .framer-boVxf .framer-p44pqm > *, .framer-boVxf .framer-1q8pew6 > *, .framer-boVxf .framer-wgy0hc > *, .framer-boVxf .framer-1dimzzk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-boVxf .framer-splgif > *, .framer-boVxf .framer-hi583v > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-boVxf .framer-splgif > :first-child, .framer-boVxf .framer-1c5codm > :first-child, .framer-boVxf .framer-y1lt97 > :first-child, .framer-boVxf .framer-kj98sp > :first-child, .framer-boVxf .framer-1curi3i > :first-child, .framer-boVxf .framer-1vvxjni > :first-child, .framer-boVxf .framer-6u9oap > :first-child, .framer-boVxf .framer-1swtfyn > :first-child, .framer-boVxf .framer-18x65be > :first-child, .framer-boVxf .framer-hi583v > :first-child { margin-left: 0px; } .framer-boVxf .framer-splgif > :last-child, .framer-boVxf .framer-1c5codm > :last-child, .framer-boVxf .framer-y1lt97 > :last-child, .framer-boVxf .framer-kj98sp > :last-child, .framer-boVxf .framer-1curi3i > :last-child, .framer-boVxf .framer-1vvxjni > :last-child, .framer-boVxf .framer-6u9oap > :last-child, .framer-boVxf .framer-1swtfyn > :last-child, .framer-boVxf .framer-18x65be > :last-child, .framer-boVxf .framer-hi583v > :last-child { margin-right: 0px; } .framer-boVxf .framer-8o9dwl > *, .framer-boVxf .framer-18uklyp > *, .framer-boVxf .framer-22p3ck > *, .framer-boVxf .framer-3z0u8r > *, .framer-boVxf .framer-1i4cbq6 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-boVxf .framer-1c5codm > *, .framer-boVxf .framer-y1lt97 > *, .framer-boVxf .framer-kj98sp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-boVxf .framer-17gac1f > *, .framer-boVxf .framer-16js10w > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-boVxf .framer-1curi3i > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-boVxf .framer-l3uio0 > *, .framer-boVxf .framer-9k5xxi > *, .framer-boVxf .framer-1a81164 > *, .framer-boVxf .framer-1mbkifz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-boVxf .framer-1vvxjni > *, .framer-boVxf .framer-6u9oap > *, .framer-boVxf .framer-1swtfyn > *, .framer-boVxf .framer-18x65be > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-boVxf[data-border=\"true\"]::after, .framer-boVxf [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: 1080px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-boVxf { background: white; } .framer-boVxf.framer-72rtr7 { width: 1080px; } .framer-boVxf .framer-uhh9tu { padding: 120px 100px 120px 100px; } .framer-boVxf .framer-17gac1f { width: 39%; } .framer-boVxf .framer-zu3lbz-container { height: auto; } .framer-boVxf .framer-1curi3i { padding: 120px 0px 120px 100px; } .framer-boVxf .framer-16js10w { justify-content: flex-start; width: 310px; }}`,`@media (min-width: 780px) and (max-width: 1079px) { .${metadata.bodyClassName}-framer-boVxf { background: white; } .framer-boVxf.framer-72rtr7 { width: 780px; } .framer-boVxf .framer-52pg59-container { position: absolute; } .framer-boVxf .framer-d7dpl2 { padding: 90px 60px 80px 60px; } .framer-boVxf .framer-1nj7qe9 { padding: 0px 60px 0px 60px; } .framer-boVxf .framer-cyvys { padding: 60px 0px 60px 0px; } .framer-boVxf .framer-8o9dwl, .framer-boVxf .framer-18uklyp, .framer-boVxf .framer-22p3ck, .framer-boVxf .framer-3z0u8r, .framer-boVxf .framer-1i4cbq6 { padding: 20px; } .framer-boVxf .framer-uhh9tu { padding: 100px 60px 100px 60px; } .framer-boVxf .framer-17gac1f { padding: 0px 0px 30px 0px; width: 100%; } .framer-boVxf .framer-1curi3i { gap: 10px; padding: 100px 0px 100px 60px; } .framer-boVxf .framer-16js10w { justify-content: flex-start; width: 290px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-boVxf .framer-1curi3i { gap: 0px; } .framer-boVxf .framer-1curi3i > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-boVxf .framer-1curi3i > :first-child { margin-left: 0px; } .framer-boVxf .framer-1curi3i > :last-child { margin-right: 0px; } }}`,`@media (max-width: 779px) { .${metadata.bodyClassName}-framer-boVxf { background: white; } .framer-boVxf.framer-72rtr7 { width: 390px; } .framer-boVxf .framer-52pg59-container { position: absolute; } .framer-boVxf .framer-d7dpl2 { padding: 60px 40px 60px 40px; } .framer-boVxf .framer-1nj7qe9 { padding: 0px 40px 0px 40px; } .framer-boVxf .framer-cyvys { padding: 40px 0px 40px 0px; } .framer-boVxf .framer-splgif { --border-bottom-width: 0px; --border-top-width: 0px; gap: 10px; } .framer-boVxf .framer-8o9dwl { --border-bottom-width: 1px; --border-left-width: 1px; --border-top-width: 1px; padding: 20px; } .framer-boVxf .framer-18uklyp, .framer-boVxf .framer-22p3ck, .framer-boVxf .framer-3z0u8r { --border-bottom-width: 1px; --border-top-width: 1px; padding: 20px; } .framer-boVxf .framer-1i4cbq6 { --border-bottom-width: 1px; --border-right-width: 1px; --border-top-width: 1px; padding: 20px; } .framer-boVxf .framer-uhh9tu { padding: 80px 40px 80px 40px; } .framer-boVxf .framer-1c5codm { justify-content: center; } .framer-boVxf .framer-17gac1f { max-width: 100%; padding: 0px 0px 20px 0px; width: 100%; } .framer-boVxf .framer-zu3lbz-container { height: auto; } .framer-boVxf .framer-1curi3i { flex-direction: column; gap: 10px; justify-content: center; padding: 80px 0px 80px 0px; } .framer-boVxf .framer-16js10w { padding: 0px 40px 40px 40px; width: 100%; } .framer-boVxf .framer-12qxmme-container { flex: none; width: 100%; } .framer-boVxf .framer-1reprqb-container { height: auto; left: 50%; top: 50%; transform: translate(-50%, -50%); } .framer-boVxf .framer-hi583v { bottom: 40px; justify-content: center; left: 0px; right: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-boVxf .framer-splgif, .framer-boVxf .framer-1curi3i { gap: 0px; } .framer-boVxf .framer-splgif > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-boVxf .framer-splgif > :first-child { margin-left: 0px; } .framer-boVxf .framer-splgif > :last-child { margin-right: 0px; } .framer-boVxf .framer-1curi3i > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-boVxf .framer-1curi3i > :first-child { margin-top: 0px; } .framer-boVxf .framer-1curi3i > :last-child { margin-bottom: 0px; } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4490\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zvlcDJgFN\":{\"layout\":[\"fixed\",\"auto\"]},\"EN2Byzstt\":{\"layout\":[\"fixed\",\"auto\"]},\"NBMlB54py\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-boVxf\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4490,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavFonts,...SlideHeroFonts,...FeaturedClientsBlockFonts,...TestimonialFonts,...ButtonFonts,...AffiliateLogosFonts,...CarouselFonts,...FooterFonts,...ProjectInquiryFormFonts,...BackToTopLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4490\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zvlcDJgFN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EN2Byzstt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NBMlB54py\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "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", "ButtonFonts", "getFonts", "lBK69eXLg_default", "SlideshowFonts", "Slideshow", "ButtonControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "negate", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "buttonLink", "buttonText", "buttonType", "heading", "height", "heroImage", "heroImage2", "heroImage3", "heroImage4", "heroImage5", "heroImage6", "heroImage7", "id", "secondaryButtonLink", "secondaryButtonText", "secondaryButtonType", "showButton", "showSecondaryButton", "showSubheading", "subheading", "width", "props", "_humanReadableEnumMap_secondaryButtonType", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_humanReadableEnumMap_buttonType", "_ref9", "_ref10", "_ref11", "_ref12", "_ref13", "_ref14", "_humanReadableVariantMap_props_variant", "_ref15", "_ref16", "_ref17", "_ref18", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "KVP6M4f0t", "JYYdYatkF", "cgsI6ovFC", "Zy4oXhCl0", "vuv8wKglh", "MQevuQImT", "myQ6KvU_8", "mGvkVHW0R", "uf9rYUxjJ", "Ui5kHAkgU", "M9k4VMiYx", "vuAgaVYMS", "rGbDtRoCJ", "s40x0nq9O", "OqQEmwgaJ", "RIIdyEdPX", "pbPe7sRiX", "ceWL6HutY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "visible1", "visible2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "Image2", "css", "FramerP5Q9ZQ8nB", "withCSS", "P5Q9ZQ8nB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavFonts", "getFonts", "SaJahMmWD_default", "NavWithVariantAppearEffect", "withVariantAppearEffect", "SlideHeroFonts", "P5Q9ZQ8nB_default", "FeaturedClientsBlockFonts", "acvgRDxNc_default", "ContainerWithFX", "withFX", "Container", "TestimonialFonts", "nrlIxOg2Y_default", "MotionDivWithShuffledItems", "withShuffledItems", "motion", "ButtonFonts", "lBK69eXLg_default", "AffiliateLogosFonts", "PGkuaz8py_default", "CarouselFonts", "Carousel", "FooterFonts", "D40qp8T6D_default", "ProjectInquiryFormFonts", "Nq4cRL0HF_default", "BackToTopLinkFonts", "qb0wCWbxF_default", "MotionDivWithFX", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "animation", "transition1", "animation1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "isSet", "toResponsiveImage", "animation2", "transformTemplate2", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "zdBkfVl_MLRYp_PaxI", "ZiRd2CpszLRYp_PaxI", "os6CDnWvILRYp_PaxI", "qbTnQ3FskLRYp_PaxI", "idLRYp_PaxI", "lq2mhsdPcKNqsYf9NM", "lWQA0VN28KNqsYf9NM", "LjYM379auKNqsYf9NM", "kHB30KvsiKNqsYf9NM", "bove0_T0YKNqsYf9NM", "idKNqsYf9NM", "lq2mhsdPcGPAGMn0S2", "lWQA0VN28GPAGMn0S2", "LjYM379auGPAGMn0S2", "kHB30KvsiGPAGMn0S2", "bove0_T0YGPAGMn0S2", "idGPAGMn0S2", "lq2mhsdPcyyf60rYkI", "lWQA0VN28yyf60rYkI", "LjYM379auyyf60rYkI", "kHB30Kvsiyyf60rYkI", "bove0_T0Yyyf60rYkI", "idyyf60rYkI", "lq2mhsdPcKbY2U9_sD", "lWQA0VN28KbY2U9_sD", "LjYM379auKbY2U9_sD", "kHB30KvsiKbY2U9_sD", "bove0_T0YKbY2U9_sD", "idKbY2U9_sD", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "vxe4wdSP13bnx0g", "overlay", "loadMore", "args", "hPjGeELUw1wnntms", "ref1", "pe", "router", "useRouter", "ref2", "elementId", "useRouteElementId", "activeLocaleCode", "useLocaleCode", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "NavWithVariantAppearEffect", "P5Q9ZQ8nB_default", "ContainerWithFX", "acvgRDxNc_default", "x", "MotionDivWithShuffledItems", "ChildrenCanSuspend", "SHuAvwbCX_default", "collection", "paginationInfo", "l", "i", "PathVariablesContext", "nrlIxOg2Y_default", "RichText2", "resolvedLinks1", "lBK69eXLg_default", "PGkuaz8py_default", "Carousel", "GQ6BKkeyE_default", "collection1", "paginationInfo1", "loadMore1", "i1", "textContent", "Image2", "collection2", "paginationInfo2", "loadMore2", "i2", "textContent1", "visible1", "collection3", "paginationInfo3", "loadMore3", "i3", "textContent2", "visible2", "collection4", "paginationInfo4", "loadMore4", "i4", "textContent3", "visible3", "D40qp8T6D_default", "AnimatePresence", "Ga", "Nq4cRL0HF_default", "MotionDivWithFX", "resolvedLinks2", "qb0wCWbxF_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavFonts", "SlideHeroFonts", "FeaturedClientsBlockFonts", "TestimonialFonts", "ButtonFonts", "AffiliateLogosFonts", "CarouselFonts", "FooterFonts", "ProjectInquiryFormFonts", "BackToTopLinkFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
