{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/1OcDZE7IzktoYPhMDH4m/eOJYBfV4S2VryfvsfxLP/PpHXtFq9G.js", "ssg:https://framerusercontent.com/modules/ioIr1xgfkfnL5fT4QZFt/Z673CcfjKKwWy33jfq1t/yxDFAI3Tb.js", "ssg:https://framerusercontent.com/modules/1LkpOsQeicYXkwIwA8Qh/mz4dSczi3q14lX9ps4J2/AdDJosGOn.js", "ssg:https://framerusercontent.com/modules/t2xrJ1wp5Jpbsd9UQ4JX/Mscj19yp2GpJdEwLgPMO/E6WMa2NSq.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "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", "// Generated by Framer (b0f2619)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"GaNWfu5Ke\"];const serializationHash=\"framer-WUxnt\";const variantClassNames={GaNWfu5Ke:\"framer-v-16d8wmg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"GaNWfu5Ke\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-16d8wmg\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:variant,layoutDependency:layoutDependency,layoutId:\"GaNWfu5Ke\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vlbg6z\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"bX5h93RSx\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 23\"><path d=\"M 11.5 1.222 L 14.88 7.989 L 22.437 9.074 L 16.969 14.341 L 18.26 21.778 L 11.5 18.267 L 4.74 21.778 L 6.031 14.341 L 0.563 9.074 L 8.12 7.989 Z\" fill=\"var(--token-166627c8-7594-4f19-ac20-a7948fdcf1a8, rgb(255, 168, 241)) /* {&quot;name&quot;:&quot;Pink light&quot;} */\" stroke=\"var(--token-4570af87-4015-4ad9-924e-60132c4fb969, rgb(255, 132, 235)) /* {&quot;name&quot;:&quot;Pink medium&quot;} */\"></path></svg>',svgContentId:1773846583,withExternalLayout:true})})})});});const css=['.framer-WUxnt[data-border=\"true\"]::after, .framer-WUxnt [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WUxnt.framer-xmmqzi, .framer-WUxnt .framer-xmmqzi { display: block; }\",\".framer-WUxnt.framer-16d8wmg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-WUxnt .framer-1vlbg6z { flex: none; height: 23px; position: relative; width: 23px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WUxnt.framer-16d8wmg { gap: 0px; } .framer-WUxnt.framer-16d8wmg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WUxnt.framer-16d8wmg > :first-child { margin-left: 0px; } .framer-WUxnt.framer-16d8wmg > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 23\n * @framerIntrinsicWidth 23\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerPpHXtFq9G=withCSS(Component,css,\"framer-WUxnt\");export default FramerPpHXtFq9G;FramerPpHXtFq9G.displayName=\"star\";FramerPpHXtFq9G.defaultProps={height:23,width:23};addFonts(FramerPpHXtFq9G,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPpHXtFq9G\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"23\",\"framerIntrinsicWidth\":\"23\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PpHXtFq9G.map", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gPfmFHAovF9k4pKRPNkN/4svBwsvxP73Y5P7rIlMs/jaK18Xqh0.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hEs0376ZoRyUKm28q2QF/IztJflM9WmCBbTl1bwTY/M5K5Cm3Nw.js\";import Star from\"https://framerusercontent.com/modules/1OcDZE7IzktoYPhMDH4m/eOJYBfV4S2VryfvsfxLP/PpHXtFq9G.js\";import*as localizedValues from\"./yxDFAI3Tb-0.js\";const StarFonts=getFonts(Star);const serializationHash=\"framer-Wk8vT\";const variantClassNames={eGP3JCt7q:\"framer-v-1b30ob4\"};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 valuesByLocaleId={j23cjtXQ6:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 getProps=({height,id,testimonialBodyText,testimonialImg,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,lIWFZzEGe:(_ref=title!==null&&title!==void 0?title:props.lIWFZzEGe)!==null&&_ref!==void 0?_ref:\"Viktoria Zhdanova\",wYsNVVF8c:(_ref1=testimonialImg!==null&&testimonialImg!==void 0?testimonialImg:props.wYsNVVF8c)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/UHckvkuAK0fgmatbuQOtFGYV4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UHckvkuAK0fgmatbuQOtFGYV4.jpg?scale-down-to=1024 885w,https://framerusercontent.com/images/UHckvkuAK0fgmatbuQOtFGYV4.jpg 1500w\"},yMzvllG11:(_ref2=testimonialBodyText!==null&&testimonialBodyText!==void 0?testimonialBodyText:props.yMzvllG11)!==null&&_ref2!==void 0?_ref2:\"\u041A\u043E\u043C\u0444\u043E\u0440\u0442\u043D\u0430\u044F \u0441\u0442\u0443\u0434\u0438\u044F, \u0443\u0434\u043E\u0431\u043D\u043E\u0435 \u043C\u0435\u0441\u0442\u043E \u0440\u0430\u0441\u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u0435, \u043F\u0440\u0438\u044F\u0442\u043D\u0430\u044F \u0430\u0442\u043C\u043E\u0441\u0444\u0435\u0440\u0430! \u0411\u044B\u043B\u0430 \u043D\u0430 \u043C\u0430\u043A\u0438\u044F\u0436\u0435 \u0443 \u0412\u0438\u043A\u0442\u043E\u0440\u0438\u0438, \u043E\u0447\u0435\u043D\u044C \u043F\u043E\u043D\u0440\u0430\u0432\u0438\u043B\u043E\u0441\u044C, \u043F\u0440\u0438\u044F\u0442\u043D\u0430\u044F \u0434\u0435\u0432\u0443\u0448\u043A\u0430 \u0438 \u043D\u0430\u0441\u0442\u043E\u044F\u0449\u0438\u0439 \u043F\u0440\u043E\u0444\u0435\u0441\u0441\u0438\u043E\u043D\u0430\u043B \u0441\u0432\u043E\u0435\u0433\u043E \u0434\u0435\u043B\u0430! \u0420\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u044E!\"};};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,yMzvllG11,lIWFZzEGe,wYsNVVF8c,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"eGP3JCt7q\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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-1b30ob4\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"eGP3JCt7q\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-93f5a03e-e27a-48d6-95a5-a6c9132db3c6, rgb(0, 0, 0))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"rgb(255, 255, 255)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cab8vo\",layoutDependency:layoutDependency,layoutId:\"vrSPwjQ5P\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1735,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+0),pixelHeight:1735,pixelWidth:1500,sizes:\"49px\",...toResponsiveImage(wYsNVVF8c)},className:\"framer-1ny68e1\",layoutDependency:layoutDependency,layoutId:\"tBUbHqgYw\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b45ifx\",layoutDependency:layoutDependency,layoutId:\"W1SYYK4sn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-m177a7\",\"data-styles-preset\":\"jaK18Xqh0\",children:\"Eva Elle\"})}),className:\"framer-176yfoo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nVlhnbT_B\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:lIWFZzEGe,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13ofu7y\",layoutDependency:layoutDependency,layoutId:\"awvb5J6dd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ov8h08-container\",layoutDependency:layoutDependency,layoutId:\"ipVPEtoCq-container\",children:/*#__PURE__*/_jsx(Star,{height:\"100%\",id:\"ipVPEtoCq\",layoutId:\"ipVPEtoCq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-j1q3se-container\",layoutDependency:layoutDependency,layoutId:\"ZA2Sit7UE-container\",children:/*#__PURE__*/_jsx(Star,{height:\"100%\",id:\"ZA2Sit7UE\",layoutId:\"ZA2Sit7UE\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2yksc9-container\",layoutDependency:layoutDependency,layoutId:\"zGpbaMAX2-container\",children:/*#__PURE__*/_jsx(Star,{height:\"100%\",id:\"zGpbaMAX2\",layoutId:\"zGpbaMAX2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1olyt5k-container\",layoutDependency:layoutDependency,layoutId:\"kYySEP8ee-container\",children:/*#__PURE__*/_jsx(Star,{height:\"100%\",id:\"kYySEP8ee\",layoutId:\"kYySEP8ee\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sbmes2-container\",layoutDependency:layoutDependency,layoutId:\"nH14yjWB0-container\",children:/*#__PURE__*/_jsx(Star,{height:\"100%\",id:\"nH14yjWB0\",layoutId:\"nH14yjWB0\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jsgyfk\",layoutDependency:layoutDependency,layoutId:\"JuQHVTN0w\",style:{backgroundColor:\"var(--token-06c3d82a-57f3-46a5-975c-3228e6308324, rgb(194, 194, 194))\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r69rbl\",\"data-styles-preset\":\"M5K5Cm3Nw\",children:\"I recently had a makeup service at a beauty salon, and I must say, it was an experience to remember. The staff was friendly and professional, and they made me feel at ease. The makeup artist was incredibly talented, and she created a stunning look for me.\"})}),className:\"framer-18osl4b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xh265yFby\",text:yMzvllG11,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Wk8vT.framer-v56hy7, .framer-Wk8vT .framer-v56hy7 { display: block; }\",\".framer-Wk8vT.framer-1b30ob4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; min-height: 340px; padding: 30px; position: relative; width: 320px; }\",\".framer-Wk8vT .framer-cab8vo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Wk8vT .framer-1ny68e1 { flex: none; height: 49px; overflow: hidden; position: relative; width: 49px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Wk8vT .framer-1b45ifx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Wk8vT .framer-176yfoo { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Wk8vT .framer-13ofu7y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Wk8vT .framer-ov8h08-container, .framer-Wk8vT .framer-j1q3se-container, .framer-Wk8vT .framer-2yksc9-container, .framer-Wk8vT .framer-1olyt5k-container, .framer-Wk8vT .framer-1sbmes2-container { flex: none; height: 23px; position: relative; width: 23px; }\",\".framer-Wk8vT .framer-jsgyfk { flex: none; height: 1px; overflow: visible; position: relative; width: 65%; }\",\".framer-Wk8vT .framer-18osl4b { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Wk8vT.framer-1b30ob4, .framer-Wk8vT .framer-cab8vo, .framer-Wk8vT .framer-1b45ifx, .framer-Wk8vT .framer-13ofu7y { gap: 0px; } .framer-Wk8vT.framer-1b30ob4 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-Wk8vT.framer-1b30ob4 > :first-child, .framer-Wk8vT .framer-1b45ifx > :first-child { margin-top: 0px; } .framer-Wk8vT.framer-1b30ob4 > :last-child, .framer-Wk8vT .framer-1b45ifx > :last-child { margin-bottom: 0px; } .framer-Wk8vT .framer-cab8vo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Wk8vT .framer-cab8vo > :first-child, .framer-Wk8vT .framer-13ofu7y > :first-child { margin-left: 0px; } .framer-Wk8vT .framer-cab8vo > :last-child, .framer-Wk8vT .framer-13ofu7y > :last-child { margin-right: 0px; } .framer-Wk8vT .framer-1b45ifx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Wk8vT .framer-13ofu7y > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Wk8vT[data-border=\"true\"]::after, .framer-Wk8vT [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 352\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"340px\",null]}}}\n * @framerVariables {\"yMzvllG11\":\"testimonialBodyText\",\"lIWFZzEGe\":\"title\",\"wYsNVVF8c\":\"testimonialImg\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryxDFAI3Tb=withCSS(Component,css,\"framer-Wk8vT\");export default FrameryxDFAI3Tb;FrameryxDFAI3Tb.displayName=\"Testimonial card\";FrameryxDFAI3Tb.defaultProps={height:352,width:320};addPropertyControls(FrameryxDFAI3Tb,{yMzvllG11:{defaultValue:\"\u041A\u043E\u043C\u0444\u043E\u0440\u0442\u043D\u0430\u044F \u0441\u0442\u0443\u0434\u0438\u044F, \u0443\u0434\u043E\u0431\u043D\u043E\u0435 \u043C\u0435\u0441\u0442\u043E \u0440\u0430\u0441\u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u0435, \u043F\u0440\u0438\u044F\u0442\u043D\u0430\u044F \u0430\u0442\u043C\u043E\u0441\u0444\u0435\u0440\u0430! \u0411\u044B\u043B\u0430 \u043D\u0430 \u043C\u0430\u043A\u0438\u044F\u0436\u0435 \u0443 \u0412\u0438\u043A\u0442\u043E\u0440\u0438\u0438, \u043E\u0447\u0435\u043D\u044C \u043F\u043E\u043D\u0440\u0430\u0432\u0438\u043B\u043E\u0441\u044C, \u043F\u0440\u0438\u044F\u0442\u043D\u0430\u044F \u0434\u0435\u0432\u0443\u0448\u043A\u0430 \u0438 \u043D\u0430\u0441\u0442\u043E\u044F\u0449\u0438\u0439 \u043F\u0440\u043E\u0444\u0435\u0441\u0441\u0438\u043E\u043D\u0430\u043B \u0441\u0432\u043E\u0435\u0433\u043E \u0434\u0435\u043B\u0430! \u0420\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u044E!\",displayTextArea:true,title:\"Testimonial body text\",type:ControlType.String},lIWFZzEGe:{defaultValue:\"Viktoria Zhdanova\",displayTextArea:false,title:\"Title\",type:ControlType.String},wYsNVVF8c:{__defaultAssetReference:\"data:framer/asset-reference,UHckvkuAK0fgmatbuQOtFGYV4.jpg?originalFilename=woman-business-outfit+%281%29.jpg&preferredSize=auto\",title:\"Testimonial img\",type:ControlType.ResponsiveImage}});addFonts(FrameryxDFAI3Tb,[{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\"}]},...StarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryxDFAI3Tb\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"340px\\\",null]}}}\",\"framerIntrinsicHeight\":\"352\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"yMzvllG11\\\":\\\"testimonialBodyText\\\",\\\"lIWFZzEGe\\\":\\\"title\\\",\\\"wYsNVVF8c\\\":\\\"testimonialImg\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"320\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yxDFAI3Tb.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import TestimonialCard from\"https://framerusercontent.com/modules/ioIr1xgfkfnL5fT4QZFt/Z673CcfjKKwWy33jfq1t/yxDFAI3Tb.js\";const TestimonialCardFonts=getFonts(TestimonialCard);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"NsztC5TiD\",\"dis33Ujcx\",\"Q1vTEn0d3\"];const serializationHash=\"framer-C5HcN\";const variantClassNames={dis33Ujcx:\"framer-v-5xmhps\",NsztC5TiD:\"framer-v-1u6kb8\",Q1vTEn0d3:\"framer-v-dcnokv\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Testimonial Desktop\":\"NsztC5TiD\",\"Testimonial Mobile\":\"Q1vTEn0d3\",\"Testimonial Tablet\":\"dis33Ujcx\"};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:\"NsztC5TiD\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NsztC5TiD\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:620,intrinsicWidth:861,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:620,pixelWidth:861,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/fpo0Pb4xgr0n7DyeWAPRF4poho.jpg\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1u6kb8\",className,classNames),\"data-framer-name\":\"Testimonial Desktop\",layoutDependency:layoutDependency,layoutId:\"NsztC5TiD\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dis33Ujcx:{\"data-framer-name\":\"Testimonial Tablet\"},Q1vTEn0d3:{\"data-framer-name\":\"Testimonial Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17e59pk\",\"data-framer-name\":\"Testimonials\",layoutDependency:layoutDependency,layoutId:\"h3NwqsRvx\",style:{backgroundColor:\"rgba(255, 223, 204, 0)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ej6xod-container\",layoutDependency:layoutDependency,layoutId:\"MlF6YLLlk-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(255, 223, 204, 0)\",arrowPadding:0,arrowRadius:0,arrowSize:29,leftArrow:\"https://framerusercontent.com/images/AO0J98V0j2q8FLfPeQFUlAEQ86g.svg\",rightArrow:\"https://framerusercontent.com/images/IZE7pv4fgLLAdJ1xwnPcHRxEI.svg\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:21,height:\"100%\",id:\"MlF6YLLlk\",layoutId:\"MlF6YLLlk\",padding:40,paddingBottom:40,paddingLeft:40,paddingPerSide:false,paddingRight:40,paddingTop:40,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:3,widthInset:500,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"320px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1z255u-container\",layoutDependency:layoutDependency,layoutId:\"FtlQaZV2e-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"FtlQaZV2e\",layoutId:\"FtlQaZV2e\",lIWFZzEGe:\"Kate M.\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",wYsNVVF8c:addImageAlt({src:\"https://framerusercontent.com/images/DIWor2yuUteqMKxvd19WaLn4DlI.jpg\"},\"\"),yMzvllG11:\"\u041A\u043B\u0430\u0441\u0441\u043D\u0430\u044F \u0441\u0442\u0443\u0434\u0438\u044F \u043A\u0440\u0430\u0441\u043E\u0442\u044B \u0441 \u0447\u0443\u0434\u0435\u0441\u043D\u044B\u043C \u043C\u0430\u0441\u0442\u0435\u0440\u043E\u043C \u0415\u043B\u0435\u043D\u043E\u0439! \u0414\u0435\u043B\u0430\u044E \u043E\u043A\u0440\u0430\u0448\u0438\u0432\u0430\u043D\u0438\u0435 \u0438 \u0441\u0442\u0440\u0438\u0436\u043A\u0443 \u0443 \u043D\u0435\u0435 \u043C\u043D\u043E\u0433\u043E \u043B\u0435\u0442. \u0423 \u0415\u043B\u0435\u043D\u044B \u043E\u0447\u0435\u043D\u044C \u043B\u0435\u0433\u043A\u0430\u044F \u0440\u0443\u043A\u0430, \u0432\u043E\u043B\u043E\u0441\u044B \u0440\u0430\u0441\u0442\u0443\u0442 \u043F\u0440\u043E\u0441\u0442\u043E \u0432\u0430\u0443\u0443\uD83D\uDD25\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"320px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cv7488-container\",layoutDependency:layoutDependency,layoutId:\"w2DYNG3Py-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"w2DYNG3Py\",layoutId:\"w2DYNG3Py\",lIWFZzEGe:\"\u041C\u0430\u0440\u0438\u044F \u041C\u0430\u0440\u0438\u0438\u043D\u0430\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",wYsNVVF8c:addImageAlt({src:\"https://framerusercontent.com/images/ySTYvLmEMBVczulIyIDNistU.webp\"},\"\"),yMzvllG11:\"\u0411\u044B\u043B\u0430 \u0432 \u0434\u0430\u043D\u043D\u043E\u043C \u0441\u0430\u043B\u043E\u043D\u0435 \u0432\u0441\u0435 \u043E\u0447\u0435\u043D\u044C \u043F\u043E\u043D\u0440\u0430\u0432\u0438\u043B\u043E\u0441\u044C \uD83D\uDE0D\uD83D\uDE0D\uD83D\uDE0D\uD83D\uDE0D \u044F \u0432 \u0431\u043E\u043B\u044C\u0448\u043E\u043C \u0432\u043E\u0441\u0442\u043E\u0440\u0433\u0435 !!! \u0412\u0441\u0435 \u043E\u0447\u0435\u043D\u044C \u043A\u0440\u0430\u0441\u0438\u0432\u043E \u0441\u0434\u0435\u043B\u0430\u043B\u0438 \u0431\u044B\u0441\u0442\u0440\u043E \u043A\u0430\u0447\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u043E \u043D\u0435\u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E \u043A\u0440\u0430\u0441\u0438\u0432\u043E \\n\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"320px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ajlztl-container\",layoutDependency:layoutDependency,layoutId:\"zGYQgypaR-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"zGYQgypaR\",layoutId:\"zGYQgypaR\",lIWFZzEGe:\"Sofya S.\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",wYsNVVF8c:addImageAlt({src:\"https://framerusercontent.com/images/XqJCwK15rZMhnyUTFXmh15CrGM.webp\"},\"\"),yMzvllG11:\"\u041E\u0447\u0435\u043D\u044C \u0443\u044E\u0442\u043D\u0430\u044F \u0438 \u043A\u0440\u0430\u0441\u0438\u0432\u0430\u044F \u0441\u0442\u0443\u0434\u0438\u044F \u0432 \u0441\u0430\u043C\u043E\u043C \u0441\u0435\u0440\u0434\u0446\u0435 \u041F\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430. \u041C\u0430\u0441\u0442\u0435\u0440\u0430 \u0437\u0430\u043C\u0435\u0447\u0430\u0442\u0435\u043B\u044C\u043D\u044B\u0435, \u0437\u043D\u0430\u044E\u0442 \u0441\u0432\u043E\u0435 \u0434\u0435\u043B\u043E \u0438 \u0431\u0435\u0440\u0435\u0436\u043D\u043E \u043E\u0442\u043D\u043E\u0441\u044F\u0442\u0441\u044F \u043A \u043F\u043E\u0436\u0435\u043B\u0430\u043D\u0438\u044F\u043C \u043A\u043B\u0438\u0435\u043D\u0442\u043E\u0432. \u041E\u0441\u0442\u0430\u044E\u0441\u044C \u0434\u043E\u0432\u043E\u043B\u044C\u043D\u043E\u0439 \u0432\u0441\u0435\u0433\u0434\u0430!\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"320px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pwtxre-container\",layoutDependency:layoutDependency,layoutId:\"gmYXaQMie-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"gmYXaQMie\",layoutId:\"gmYXaQMie\",lIWFZzEGe:\"Viktoria Zhdanova\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",wYsNVVF8c:addImageAlt({src:\"https://framerusercontent.com/images/3jrTHnljKSn8PhOq0TyjsY42sac.webp\"},\"\"),yMzvllG11:\"\u041A\u043E\u043C\u0444\u043E\u0440\u0442\u043D\u0430\u044F \u0441\u0442\u0443\u0434\u0438\u044F, \u0443\u0434\u043E\u0431\u043D\u043E\u0435 \u043C\u0435\u0441\u0442\u043E \u0440\u0430\u0441\u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u0435, \u043F\u0440\u0438\u044F\u0442\u043D\u0430\u044F \u0430\u0442\u043C\u043E\u0441\u0444\u0435\u0440\u0430! \u0411\u044B\u043B\u0430 \u043D\u0430 \u043C\u0430\u043A\u0438\u044F\u0436\u0435 \u0443 \u0412\u0438\u043A\u0442\u043E\u0440\u0438\u0438, \u043E\u0447\u0435\u043D\u044C \u043F\u043E\u043D\u0440\u0430\u0432\u0438\u043B\u043E\u0441\u044C, \u043F\u0440\u0438\u044F\u0442\u043D\u0430\u044F \u0434\u0435\u0432\u0443\u0448\u043A\u0430 \u0438 \u043D\u0430\u0441\u0442\u043E\u044F\u0449\u0438\u0439 \u043F\u0440\u043E\u0444\u0435\u0441\u0441\u0438\u043E\u043D\u0430\u043B \u0441\u0432\u043E\u0435\u0433\u043E \u0434\u0435\u043B\u0430! \u0420\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u044E!\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({dis33Ujcx:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:500,widthType:\"columns\"},snapObject:{fluid:false,snap:true,snapEdge:\"start\"}},Q1vTEn0d3:{arrowObject:{arrowFill:\"rgba(94, 67, 51, 0)\",arrowPadding:7,arrowRadius:0,arrowSize:20,leftArrow:\"https://framerusercontent.com/images/AO0J98V0j2q8FLfPeQFUlAEQ86g.svg\",rightArrow:\"https://framerusercontent.com/images/IZE7pv4fgLLAdJ1xwnPcHRxEI.svg\",showMouseControls:true},gap:0,padding:30,paddingBottom:30,paddingLeft:30,paddingRight:30,paddingTop:30,sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:1,widthInset:500,widthType:\"columns\"},snapObject:{fluid:false,snap:true,snapEdge:\"start\"},style:{maxWidth:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-C5HcN.framer-1pd02zp, .framer-C5HcN .framer-1pd02zp { display: block; }\",\".framer-C5HcN.framer-1u6kb8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1020px; }\",\".framer-C5HcN .framer-17e59pk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-C5HcN .framer-ej6xod-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-C5HcN .framer-1z255u-container, .framer-C5HcN .framer-cv7488-container, .framer-C5HcN .framer-1ajlztl-container, .framer-C5HcN .framer-pwtxre-container { height: 350px; position: relative; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C5HcN.framer-1u6kb8, .framer-C5HcN .framer-17e59pk { gap: 0px; } .framer-C5HcN.framer-1u6kb8 > *, .framer-C5HcN .framer-17e59pk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-C5HcN.framer-1u6kb8 > :first-child, .framer-C5HcN .framer-17e59pk > :first-child { margin-top: 0px; } .framer-C5HcN.framer-1u6kb8 > :last-child, .framer-C5HcN .framer-17e59pk > :last-child { margin-bottom: 0px; } }\",\".framer-C5HcN.framer-v-5xmhps.framer-1u6kb8 { width: 810px; }\",\".framer-C5HcN.framer-v-dcnokv.framer-1u6kb8 { flex-direction: row; width: 390px; }\",\".framer-C5HcN.framer-v-dcnokv .framer-17e59pk { flex: 1 0 0px; width: 1px; }\",\".framer-C5HcN.framer-v-dcnokv .framer-ej6xod-container { max-width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C5HcN.framer-v-dcnokv.framer-1u6kb8 { gap: 0px; } .framer-C5HcN.framer-v-dcnokv.framer-1u6kb8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-C5HcN.framer-v-dcnokv.framer-1u6kb8 > :first-child { margin-left: 0px; } .framer-C5HcN.framer-v-dcnokv.framer-1u6kb8 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 430\n * @framerIntrinsicWidth 1020\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dis33Ujcx\":{\"layout\":[\"fixed\",\"auto\"]},\"Q1vTEn0d3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAdDJosGOn=withCSS(Component,css,\"framer-C5HcN\");export default FramerAdDJosGOn;FramerAdDJosGOn.displayName=\"Testimonials\";FramerAdDJosGOn.defaultProps={height:430,width:1020};addPropertyControls(FramerAdDJosGOn,{variant:{options:[\"NsztC5TiD\",\"dis33Ujcx\",\"Q1vTEn0d3\"],optionTitles:[\"Testimonial Desktop\",\"Testimonial Tablet\",\"Testimonial Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAdDJosGOn,[{explicitInter:true,fonts:[]},...TestimonialCardFonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAdDJosGOn\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1020\",\"framerIntrinsicHeight\":\"430\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dis33Ujcx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Q1vTEn0d3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AdDJosGOn.map", "// Generated by Framer (0847096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SubheadingText from\"https://framerusercontent.com/modules/jHWLcNay0MJ91Xvfmh8f/uBaUqPwbqhAIjZW6Daf9/GubtheX9o.js\";import Button from\"https://framerusercontent.com/modules/2zPJjOvNDAoQlCvlitxu/qxvNZPVRmsvEs6XWQksn/uyjrHiOOQ.js\";const SubheadingTextFonts=getFonts(SubheadingText);const SubheadingTextWithVariantAppearEffect=withVariantAppearEffect(SubheadingText);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const cycleOrder=[\"ZOmcAi2m6\",\"sJa5zutpt\",\"HbYA9ZwjB\"];const serializationHash=\"framer-WfrkZ\";const variantClassNames={HbYA9ZwjB:\"framer-v-10wwzy2\",sJa5zutpt:\"framer-v-1blx6qy\",ZOmcAi2m6:\"framer-v-1hn78ly\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:30,delay:0,mass:1,stiffness:140,type:\"spring\"};const transition3={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"ZOmcAi2m6\",Phone:\"HbYA9ZwjB\",Tablet:\"sJa5zutpt\"};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:\"ZOmcAi2m6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZOmcAi2m6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"HbYA9ZwjB\")return false;return true;};const isDisplayed1=()=>{if([\"sJa5zutpt\",\"HbYA9ZwjB\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hn78ly\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ZOmcAi2m6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-efd40c5a-b515-422c-9b68-dc89a3584fd9, rgb(255, 255, 255))\",...style},...addPropertyOverrides({HbYA9ZwjB:{\"data-framer-name\":\"Phone\"},sJa5zutpt:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+0+0),...addPropertyOverrides({HbYA9ZwjB:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498.5)-120-586)/2+0+0)},sJa5zutpt:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1a7aprq-container\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"VV2Cre0u7-container\",name:\"Heading\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SubheadingTextWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"N4ZOxi0YL\",__framer__threshold:1,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"KDIb4FHIj\",GKZoiZDtO:\"\u041D\u0430\u0448 Instagram\",height:\"100%\",id:\"VV2Cre0u7\",jiCnRdhag:\"var(--token-93f5a03e-e27a-48d6-95a5-a6c9132db3c6, rgb(0, 0, 0))\",layoutId:\"VV2Cre0u7\",name:\"Heading\",style:{height:\"100%\"},variant:\"KDIb4FHIj\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ycicn6\",\"data-framer-name\":\"instagram images\",layoutDependency:layoutDependency,layoutId:\"wSFzXKMv3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mhavrw\",layoutDependency:layoutDependency,layoutId:\"bbRB1HHL5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6eu3y\",layoutDependency:layoutDependency,layoutId:\"RCe72asYa\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"makeup model with green eyeshadow and dark nail polish\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:750,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+0+0+-5),pixelHeight:1280,pixelWidth:960,positionX:\"49.7%\",positionY:\"29.7%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.0479)`,src:\"https://framerusercontent.com/images/VJo99g29dk1NTTICdsdWnXx1zeM.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VJo99g29dk1NTTICdsdWnXx1zeM.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/VJo99g29dk1NTTICdsdWnXx1zeM.jpeg 960w\"},className:\"framer-958dke\",\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"KqD96sSbW\",...addPropertyOverrides({HbYA9ZwjB:{background:{alt:\"makeup model with green eyeshadow and dark nail polish\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:750,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498.5)-120-586)/2+60+30)+0+0+0+-5),pixelHeight:1280,pixelWidth:960,positionX:\"49.7%\",positionY:\"29.7%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 6px) / 4, 1px) * 1.0479)`,src:\"https://framerusercontent.com/images/VJo99g29dk1NTTICdsdWnXx1zeM.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VJo99g29dk1NTTICdsdWnXx1zeM.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/VJo99g29dk1NTTICdsdWnXx1zeM.jpeg 960w\"}},sJa5zutpt:{background:{alt:\"makeup model with green eyeshadow and dark nail polish\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:750,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+60+30)+0+0+0+-5),pixelHeight:1280,pixelWidth:960,positionX:\"49.7%\",positionY:\"29.7%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px) / 5, 1px) * 1.0479)`,src:\"https://framerusercontent.com/images/VJo99g29dk1NTTICdsdWnXx1zeM.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VJo99g29dk1NTTICdsdWnXx1zeM.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/VJo99g29dk1NTTICdsdWnXx1zeM.jpeg 960w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10zel08\",layoutDependency:layoutDependency,layoutId:\"jXeU0Q0eq\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"hair cutting at salon\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+0+0+-4.104477611940268),pixelHeight:4032,pixelWidth:2268,positionX:\"50%\",positionY:\"31.1%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.053)`,src:\"https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg?scale-down-to=2048 1152w,https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg 2268w\"},className:\"framer-1eh8jsb\",\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"uxjSvtJYV\",...addPropertyOverrides({HbYA9ZwjB:{background:{alt:\"hair cutting at salon\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498.5)-120-586)/2+60+30)+0+0+0+-4.104477611940268),pixelHeight:4032,pixelWidth:2268,positionX:\"50%\",positionY:\"31.1%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 6px) / 4, 1px) * 1.053)`,src:\"https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg?scale-down-to=2048 1152w,https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg 2268w\"}},sJa5zutpt:{background:{alt:\"hair cutting at salon\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+60+30)+0+0+0+-4.104477611940268),pixelHeight:4032,pixelWidth:2268,positionX:\"50%\",positionY:\"31.1%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px) / 5, 1px) * 1.053)`,src:\"https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg?scale-down-to=2048 1152w,https://framerusercontent.com/images/Qg4rpjmhvOsPo28FwgZa2NDWA.jpg 2268w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6k7tio\",layoutDependency:layoutDependency,layoutId:\"n4sGfRKVL\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"brunette with dark nail polish\",fit:\"fill\",intrinsicHeight:1908,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+0+0+-5.249999999999957),pixelHeight:1567,pixelWidth:1179,positionX:\"50.6%\",positionY:\"22.5%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.0479)`,src:\"https://framerusercontent.com/images/IqqtvU3Ty3Jxeyo8IilOkC3kAc.png\",srcSet:\"https://framerusercontent.com/images/IqqtvU3Ty3Jxeyo8IilOkC3kAc.png?scale-down-to=1024 770w,https://framerusercontent.com/images/IqqtvU3Ty3Jxeyo8IilOkC3kAc.png 1179w\"},className:\"framer-1yl458y\",\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"WsavkIeFF\",...addPropertyOverrides({HbYA9ZwjB:{background:{alt:\"brunette with dark nail polish\",fit:\"fill\",intrinsicHeight:1908,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498.5)-120-586)/2+60+30)+0+0+0+-5.249999999999957),pixelHeight:1567,pixelWidth:1179,positionX:\"50.6%\",positionY:\"22.5%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 6px) / 4, 1px) * 1.0479)`,src:\"https://framerusercontent.com/images/IqqtvU3Ty3Jxeyo8IilOkC3kAc.png\",srcSet:\"https://framerusercontent.com/images/IqqtvU3Ty3Jxeyo8IilOkC3kAc.png?scale-down-to=1024 770w,https://framerusercontent.com/images/IqqtvU3Ty3Jxeyo8IilOkC3kAc.png 1179w\"}},sJa5zutpt:{background:{alt:\"brunette with dark nail polish\",fit:\"fill\",intrinsicHeight:1908,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+60+30)+0+0+0+-5.249999999999957),pixelHeight:1567,pixelWidth:1179,positionX:\"50.6%\",positionY:\"22.5%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px) / 5, 1px) * 1.0479)`,src:\"https://framerusercontent.com/images/IqqtvU3Ty3Jxeyo8IilOkC3kAc.png\",srcSet:\"https://framerusercontent.com/images/IqqtvU3Ty3Jxeyo8IilOkC3kAc.png?scale-down-to=1024 770w,https://framerusercontent.com/images/IqqtvU3Ty3Jxeyo8IilOkC3kAc.png 1179w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q8tnxr\",layoutDependency:layoutDependency,layoutId:\"Toi3y5kzX\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"model with dramatic makup\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+0+0+-5),pixelHeight:1541,pixelWidth:1179,positionX:\"45.5%\",positionY:\"1.9%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.0504)`,src:\"https://framerusercontent.com/images/amZQ76HKkCsqeGIpoPEygRCiyw.png\",srcSet:\"https://framerusercontent.com/images/amZQ76HKkCsqeGIpoPEygRCiyw.png?scale-down-to=1024 783w,https://framerusercontent.com/images/amZQ76HKkCsqeGIpoPEygRCiyw.png 1179w\"},className:\"framer-1r0qlww\",\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"QRK7AEfjW\",...addPropertyOverrides({HbYA9ZwjB:{background:{alt:\"model with dramatic makup\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498.5)-120-586)/2+60+30)+0+0+0+-5),pixelHeight:1541,pixelWidth:1179,positionX:\"45.5%\",positionY:\"1.9%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 6px) / 4, 1px) * 1.0504)`,src:\"https://framerusercontent.com/images/amZQ76HKkCsqeGIpoPEygRCiyw.png\",srcSet:\"https://framerusercontent.com/images/amZQ76HKkCsqeGIpoPEygRCiyw.png?scale-down-to=1024 783w,https://framerusercontent.com/images/amZQ76HKkCsqeGIpoPEygRCiyw.png 1179w\"}},sJa5zutpt:{background:{alt:\"model with dramatic makup\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+60+30)+0+0+0+-5),pixelHeight:1541,pixelWidth:1179,positionX:\"45.5%\",positionY:\"1.9%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px) / 5, 1px) * 1.0504)`,src:\"https://framerusercontent.com/images/amZQ76HKkCsqeGIpoPEygRCiyw.png\",srcSet:\"https://framerusercontent.com/images/amZQ76HKkCsqeGIpoPEygRCiyw.png?scale-down-to=1024 783w,https://framerusercontent.com/images/amZQ76HKkCsqeGIpoPEygRCiyw.png 1179w\"}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1slhvji\",layoutDependency:layoutDependency,layoutId:\"NMfO2d8Eu\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"young natural beautiful model\",fit:\"fill\",intrinsicHeight:1402,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+0+0+-4.488833746898209),pixelHeight:2024,pixelWidth:1179,positionX:\"48.3%\",positionY:\"38.1%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.053)`,src:\"https://framerusercontent.com/images/AzQq60u3I4OSIWIbnYYMfJw8YE.png\",srcSet:\"https://framerusercontent.com/images/AzQq60u3I4OSIWIbnYYMfJw8YE.png?scale-down-to=1024 596w,https://framerusercontent.com/images/AzQq60u3I4OSIWIbnYYMfJw8YE.png 1179w\"},className:\"framer-1bworav\",\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"LqLuorVZA\",...addPropertyOverrides({sJa5zutpt:{background:{alt:\"young natural beautiful model\",fit:\"fill\",intrinsicHeight:1402,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+60+30)+0+0+0+-4.488833746898209),pixelHeight:2024,pixelWidth:1179,positionX:\"48.3%\",positionY:\"38.1%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px) / 5, 1px) * 1.053)`,src:\"https://framerusercontent.com/images/AzQq60u3I4OSIWIbnYYMfJw8YE.png\",srcSet:\"https://framerusercontent.com/images/AzQq60u3I4OSIWIbnYYMfJw8YE.png?scale-down-to=1024 596w,https://framerusercontent.com/images/AzQq60u3I4OSIWIbnYYMfJw8YE.png 1179w\"}}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cpcu5u\",layoutDependency:layoutDependency,layoutId:\"W1hvHqgCo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"creative makeup and nails model\",fit:\"fill\",intrinsicHeight:1614,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+0+0+-4.104477611940268),pixelHeight:1280,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.0479)`,src:\"https://framerusercontent.com/images/6h85VYJOWZjyqHzmrVcXtdMo6k.jpeg\",srcSet:\"https://framerusercontent.com/images/6h85VYJOWZjyqHzmrVcXtdMo6k.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/6h85VYJOWZjyqHzmrVcXtdMo6k.jpeg 960w\"},className:\"framer-1cera4i\",\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"SeGhzpsey\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vdd86r\",layoutDependency:layoutDependency,layoutId:\"N2CKoUCty\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h6pjj9\",layoutDependency:layoutDependency,layoutId:\"q6UpIRuqB\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"closeup eye makeup model with flowers\",fit:\"fill\",intrinsicHeight:1875,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+203+0+-5.263092269326634),pixelHeight:1280,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.0428)`,src:\"https://framerusercontent.com/images/weskNxOw3JLrHl7MySCj4GBHfk.jpg\",srcSet:\"https://framerusercontent.com/images/weskNxOw3JLrHl7MySCj4GBHfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/weskNxOw3JLrHl7MySCj4GBHfk.jpg 960w\"},className:\"framer-1khpvcp\",\"data-border\":true,\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"lve4CXmfv\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"},...addPropertyOverrides({HbYA9ZwjB:{background:{alt:\"closeup eye makeup model with flowers\",fit:\"fill\",intrinsicHeight:1875,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498.5)-120-586)/2+60+30)+0+203+0+-5.263092269326634),pixelHeight:1280,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 6px) / 4, 1px) * 1.0428)`,src:\"https://framerusercontent.com/images/weskNxOw3JLrHl7MySCj4GBHfk.jpg\",srcSet:\"https://framerusercontent.com/images/weskNxOw3JLrHl7MySCj4GBHfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/weskNxOw3JLrHl7MySCj4GBHfk.jpg 960w\"}},sJa5zutpt:{background:{alt:\"closeup eye makeup model with flowers\",fit:\"fill\",intrinsicHeight:1875,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+60+30)+0+203+0+-5.263092269326634),pixelHeight:1280,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px) / 5, 1px) * 1.0428)`,src:\"https://framerusercontent.com/images/weskNxOw3JLrHl7MySCj4GBHfk.jpg\",srcSet:\"https://framerusercontent.com/images/weskNxOw3JLrHl7MySCj4GBHfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/weskNxOw3JLrHl7MySCj4GBHfk.jpg 960w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-anaxim\",layoutDependency:layoutDependency,layoutId:\"MZla5pIOF\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"makeup powder with blush and a brush\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+203+0+-4.104477611940268),pixelHeight:1280,pixelWidth:960,positionX:\"51%\",positionY:\"73.8%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.053)`,src:\"https://framerusercontent.com/images/0ih9TGae8nz4JGKdO4dWOgZSDA.jpeg\",srcSet:\"https://framerusercontent.com/images/0ih9TGae8nz4JGKdO4dWOgZSDA.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/0ih9TGae8nz4JGKdO4dWOgZSDA.jpeg 960w\"},className:\"framer-1wgtcoh\",\"data-border\":true,\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"AhAZFTDcC\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"},...addPropertyOverrides({HbYA9ZwjB:{background:{alt:\"makeup powder with blush and a brush\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498.5)-120-586)/2+60+30)+0+203+0+-4.104477611940268),pixelHeight:1280,pixelWidth:960,positionX:\"51%\",positionY:\"73.8%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 6px) / 4, 1px) * 1.053)`,src:\"https://framerusercontent.com/images/0ih9TGae8nz4JGKdO4dWOgZSDA.jpeg\",srcSet:\"https://framerusercontent.com/images/0ih9TGae8nz4JGKdO4dWOgZSDA.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/0ih9TGae8nz4JGKdO4dWOgZSDA.jpeg 960w\"}},sJa5zutpt:{background:{alt:\"makeup powder with blush and a brush\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+60+30)+0+203+0+-4.104477611940268),pixelHeight:1280,pixelWidth:960,positionX:\"51%\",positionY:\"73.8%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px) / 5, 1px) * 1.053)`,src:\"https://framerusercontent.com/images/0ih9TGae8nz4JGKdO4dWOgZSDA.jpeg\",srcSet:\"https://framerusercontent.com/images/0ih9TGae8nz4JGKdO4dWOgZSDA.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/0ih9TGae8nz4JGKdO4dWOgZSDA.jpeg 960w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fafhfe\",layoutDependency:layoutDependency,layoutId:\"J_f9hFT5O\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"beauty model applying a serum\",fit:\"fill\",intrinsicHeight:1842,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+203+0+-5.263092269326634),pixelHeight:1280,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.0504)`,src:\"https://framerusercontent.com/images/86vimIHtBDiYoHz7QhCR5fmRtYw.jpeg\",srcSet:\"https://framerusercontent.com/images/86vimIHtBDiYoHz7QhCR5fmRtYw.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/86vimIHtBDiYoHz7QhCR5fmRtYw.jpeg 960w\"},className:\"framer-1iqcm6n\",\"data-border\":true,\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"lNdCVPi9M\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"},...addPropertyOverrides({HbYA9ZwjB:{background:{alt:\"beauty model applying a serum\",fit:\"fill\",intrinsicHeight:1842,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498.5)-120-586)/2+60+30)+0+203+0+-5.263092269326634),pixelHeight:1280,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 6px) / 4, 1px) * 1.0504)`,src:\"https://framerusercontent.com/images/86vimIHtBDiYoHz7QhCR5fmRtYw.jpeg\",srcSet:\"https://framerusercontent.com/images/86vimIHtBDiYoHz7QhCR5fmRtYw.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/86vimIHtBDiYoHz7QhCR5fmRtYw.jpeg 960w\"}},sJa5zutpt:{background:{alt:\"beauty model applying a serum\",fit:\"fill\",intrinsicHeight:1842,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+60+30)+0+203+0+-5.263092269326634),pixelHeight:1280,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px) / 5, 1px) * 1.0504)`,src:\"https://framerusercontent.com/images/86vimIHtBDiYoHz7QhCR5fmRtYw.jpeg\",srcSet:\"https://framerusercontent.com/images/86vimIHtBDiYoHz7QhCR5fmRtYw.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/86vimIHtBDiYoHz7QhCR5fmRtYw.jpeg 960w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aiftqw\",layoutDependency:layoutDependency,layoutId:\"Z69pqimRf\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"foundationand blush makeup products with smudges\",fit:\"fill\",intrinsicHeight:2247,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+203+0+-4.104477611940268),pixelHeight:1280,pixelWidth:960,positionX:\"47.7%\",positionY:\"34.7%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.0479)`,src:\"https://framerusercontent.com/images/BQai7lG6QksNq1UeFkqz05qK7pg.jpeg\",srcSet:\"https://framerusercontent.com/images/BQai7lG6QksNq1UeFkqz05qK7pg.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/BQai7lG6QksNq1UeFkqz05qK7pg.jpeg 960w\"},className:\"framer-jsrlfq\",\"data-border\":true,\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"fxD1ZLPJe\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"},...addPropertyOverrides({HbYA9ZwjB:{background:{alt:\"foundationand blush makeup products with smudges\",fit:\"fill\",intrinsicHeight:2247,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498.5)-120-586)/2+60+30)+0+203+0+-4.104477611940268),pixelHeight:1280,pixelWidth:960,positionX:\"47.7%\",positionY:\"34.7%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 6px) / 4, 1px) * 1.0479)`,src:\"https://framerusercontent.com/images/BQai7lG6QksNq1UeFkqz05qK7pg.jpeg\",srcSet:\"https://framerusercontent.com/images/BQai7lG6QksNq1UeFkqz05qK7pg.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/BQai7lG6QksNq1UeFkqz05qK7pg.jpeg 960w\"}},sJa5zutpt:{background:{alt:\"foundationand blush makeup products with smudges\",fit:\"fill\",intrinsicHeight:2247,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+60+30)+0+203+0+-4.104477611940268),pixelHeight:1280,pixelWidth:960,positionX:\"47.7%\",positionY:\"34.7%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px) / 5, 1px) * 1.0479)`,src:\"https://framerusercontent.com/images/BQai7lG6QksNq1UeFkqz05qK7pg.jpeg\",srcSet:\"https://framerusercontent.com/images/BQai7lG6QksNq1UeFkqz05qK7pg.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/BQai7lG6QksNq1UeFkqz05qK7pg.jpeg 960w\"}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sci0xk\",layoutDependency:layoutDependency,layoutId:\"djQ_pC3nD\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"earth colors powder splash and a brush\",fit:\"fill\",intrinsicHeight:1674,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+203+0+-4.499999999999943),pixelHeight:2096,pixelWidth:1179,positionX:\"47.3%\",positionY:\"7.7%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.053)`,src:\"https://framerusercontent.com/images/bfZi6ytrPkWHnaPLMk4ghoXMc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bfZi6ytrPkWHnaPLMk4ghoXMc.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/bfZi6ytrPkWHnaPLMk4ghoXMc.jpg?scale-down-to=2048 1152w,https://framerusercontent.com/images/bfZi6ytrPkWHnaPLMk4ghoXMc.jpg 1179w\"},className:\"framer-12ghf7g\",\"data-border\":true,\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"LyV7egXxn\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"},...addPropertyOverrides({sJa5zutpt:{background:{alt:\"earth colors powder splash and a brush\",fit:\"fill\",intrinsicHeight:1674,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+60+30)+0+203+0+-4.499999999999943),pixelHeight:2096,pixelWidth:1179,positionX:\"47.3%\",positionY:\"7.7%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px) / 5, 1px) * 1.053)`,src:\"https://framerusercontent.com/images/bfZi6ytrPkWHnaPLMk4ghoXMc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bfZi6ytrPkWHnaPLMk4ghoXMc.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/bfZi6ytrPkWHnaPLMk4ghoXMc.jpg?scale-down-to=2048 1152w,https://framerusercontent.com/images/bfZi6ytrPkWHnaPLMk4ghoXMc.jpg 1179w\"}}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-50fhu5\",layoutDependency:layoutDependency,layoutId:\"txZXE5x_1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"assortment of red tinted makeup swatches\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+60+40)+0+203+0+-4.104477611940268),pixelHeight:1473,pixelWidth:1179,positionX:\"50.3%\",positionY:\"11.3%\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 6, 1px) * 1.0504)`,src:\"https://framerusercontent.com/images/KcH8qiHina04vOCNV8LajBKcI0.jpg\",srcSet:\"https://framerusercontent.com/images/KcH8qiHina04vOCNV8LajBKcI0.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/KcH8qiHina04vOCNV8LajBKcI0.jpg 1179w\"},className:\"framer-4qwebt\",\"data-border\":true,\"data-framer-name\":\"instagram image\",layoutDependency:layoutDependency,layoutId:\"QUy4veF7A\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||846.5)-240-606)/2+464+80),...addPropertyOverrides({HbYA9ZwjB:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498.5)-120-586)/2+464+60)},sJa5zutpt:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||669.5)-160-586)/2+464+60)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-jtw9v6-container\",layoutDependency:layoutDependency,layoutId:\"G_pmFpSw4-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{G7ZBTvJwZ:true,H5O9R1jKL:\"https://www.instagram.com/konopushka22\",height:\"100%\",id:\"G_pmFpSw4\",layoutId:\"G_pmFpSw4\",T0j1B_dzH:\"var(--token-166627c8-7594-4f19-ac20-a7948fdcf1a8, rgb(255, 168, 241))\",width:\"100%\",Xn26QzcrO:\"\u041F\u043E\u0434\u043F\u0438\u0441\u0430\u0442\u044C\u0441\u044F\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WfrkZ.framer-siff2j, .framer-WfrkZ .framer-siff2j { display: block; }\",\".framer-WfrkZ.framer-1hn78ly { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1200px; }\",\".framer-WfrkZ .framer-1a7aprq-container { flex: none; height: 60px; position: relative; width: auto; }\",\".framer-WfrkZ .framer-1ycicn6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WfrkZ .framer-1mhavrw, .framer-WfrkZ .framer-vdd86r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WfrkZ .framer-6eu3y, .framer-WfrkZ .framer-6k7tio, .framer-WfrkZ .framer-1h6pjj9, .framer-WfrkZ .framer-fafhfe { aspect-ratio: 0.9875621890547264 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 201px); overflow: hidden; position: relative; width: 1px; }\",\".framer-WfrkZ .framer-958dke { flex: none; height: 105%; left: -5px; overflow: visible; position: absolute; top: -5px; width: 105%; }\",\".framer-WfrkZ .framer-10zel08, .framer-WfrkZ .framer-q8tnxr, .framer-WfrkZ .framer-1cpcu5u, .framer-WfrkZ .framer-anaxim, .framer-WfrkZ .framer-aiftqw, .framer-WfrkZ .framer-50fhu5 { aspect-ratio: 0.9866666666666667 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 201px); overflow: hidden; position: relative; width: 1px; }\",\".framer-WfrkZ .framer-1eh8jsb, .framer-WfrkZ .framer-1wgtcoh { flex: none; height: 105%; left: calc(50.00000000000002% - 105.3030303030303% / 2); overflow: visible; position: absolute; top: calc(49.75124378109455% - 104.97512437810946% / 2); width: 105%; }\",\".framer-WfrkZ .framer-1yl458y { flex: none; height: 105%; left: calc(49.87405541561715% - 104.78589420654912% / 2); overflow: visible; position: absolute; top: calc(49.75124378109455% - 104.72636815920397% / 2); width: 105%; }\",\".framer-WfrkZ .framer-1r0qlww { flex: none; height: 105%; overflow: visible; position: absolute; right: -5px; top: -5px; width: 105%; }\",\".framer-WfrkZ .framer-1slhvji { aspect-ratio: 0.9850746268656716 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 202px); overflow: hidden; position: relative; width: 1px; }\",\".framer-WfrkZ .framer-1bworav { flex: none; height: 105%; left: calc(50.00000000000002% - 105.3030303030303% / 2); overflow: visible; position: absolute; top: calc(50.124069478908204% - 104.71464019851115% / 2); width: 105%; }\",\".framer-WfrkZ .framer-1cera4i, .framer-WfrkZ .framer-jsrlfq { flex: none; height: 105%; left: calc(49.87405541561715% - 104.78589420654912% / 2); overflow: visible; position: absolute; top: calc(49.75124378109455% - 104.97512437810946% / 2); width: 105%; }\",\".framer-WfrkZ .framer-1khpvcp { flex: none; height: 105%; left: calc(49.370277078085664% - 104.28211586901763% / 2); overflow: visible; position: absolute; top: calc(49.87531172069828% - 104.98753117206982% / 2); width: 104%; }\",\".framer-WfrkZ .framer-1iqcm6n { flex: none; height: 105%; left: calc(49.87405541561715% - 105.03778337531486% / 2); overflow: visible; position: absolute; top: calc(49.87531172069828% - 104.98753117206982% / 2); width: 105%; }\",\".framer-WfrkZ .framer-sci0xk { aspect-ratio: 0.9850746268656716 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 201px); overflow: hidden; position: relative; width: 1px; }\",\".framer-WfrkZ .framer-12ghf7g { flex: none; height: 105%; left: calc(50.00000000000002% - 105.3030303030303% / 2); overflow: visible; position: absolute; top: calc(50.2487562189055% - 104.97512437810946% / 2); width: 105%; }\",\".framer-WfrkZ .framer-4qwebt { flex: none; height: 105%; left: calc(49.87405541561715% - 105.03778337531486% / 2); overflow: visible; position: absolute; top: calc(49.75124378109455% - 104.97512437810946% / 2); width: 105%; }\",\".framer-WfrkZ .framer-jtw9v6-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WfrkZ.framer-1hn78ly, .framer-WfrkZ .framer-1ycicn6, .framer-WfrkZ .framer-1mhavrw, .framer-WfrkZ .framer-vdd86r { gap: 0px; } .framer-WfrkZ.framer-1hn78ly > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-WfrkZ.framer-1hn78ly > :first-child, .framer-WfrkZ .framer-1ycicn6 > :first-child { margin-top: 0px; } .framer-WfrkZ.framer-1hn78ly > :last-child, .framer-WfrkZ .framer-1ycicn6 > :last-child { margin-bottom: 0px; } .framer-WfrkZ .framer-1ycicn6 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-WfrkZ .framer-1mhavrw > *, .framer-WfrkZ .framer-vdd86r > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-WfrkZ .framer-1mhavrw > :first-child, .framer-WfrkZ .framer-vdd86r > :first-child { margin-left: 0px; } .framer-WfrkZ .framer-1mhavrw > :last-child, .framer-WfrkZ .framer-vdd86r > :last-child { margin-right: 0px; } }\",\".framer-WfrkZ.framer-v-1blx6qy.framer-1hn78ly { gap: 30px; padding: 80px 0px 80px 0px; width: 810px; }\",\".framer-WfrkZ.framer-v-1blx6qy .framer-6eu3y, .framer-WfrkZ.framer-v-1blx6qy .framer-10zel08, .framer-WfrkZ.framer-v-1blx6qy .framer-6k7tio, .framer-WfrkZ.framer-v-1blx6qy .framer-q8tnxr, .framer-WfrkZ.framer-v-1blx6qy .framer-1slhvji, .framer-WfrkZ.framer-v-1blx6qy .framer-anaxim, .framer-WfrkZ.framer-v-1blx6qy .framer-aiftqw, .framer-WfrkZ.framer-v-1blx6qy .framer-sci0xk { height: var(--framer-aspect-ratio-supported, 163px); }\",\".framer-WfrkZ.framer-v-1blx6qy .framer-1h6pjj9, .framer-WfrkZ.framer-v-1blx6qy .framer-fafhfe { height: var(--framer-aspect-ratio-supported, 162px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WfrkZ.framer-v-1blx6qy.framer-1hn78ly { gap: 0px; } .framer-WfrkZ.framer-v-1blx6qy.framer-1hn78ly > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-WfrkZ.framer-v-1blx6qy.framer-1hn78ly > :first-child { margin-top: 0px; } .framer-WfrkZ.framer-v-1blx6qy.framer-1hn78ly > :last-child { margin-bottom: 0px; } }\",\".framer-WfrkZ.framer-v-10wwzy2.framer-1hn78ly { gap: 30px; padding: 60px 0px 60px 0px; width: 390px; }\",\".framer-WfrkZ.framer-v-10wwzy2 .framer-6eu3y, .framer-WfrkZ.framer-v-10wwzy2 .framer-6k7tio, .framer-WfrkZ.framer-v-10wwzy2 .framer-1h6pjj9, .framer-WfrkZ.framer-v-10wwzy2 .framer-anaxim, .framer-WfrkZ.framer-v-10wwzy2 .framer-fafhfe, .framer-WfrkZ.framer-v-10wwzy2 .framer-aiftqw { height: var(--framer-aspect-ratio-supported, 97px); }\",\".framer-WfrkZ.framer-v-10wwzy2 .framer-10zel08, .framer-WfrkZ.framer-v-10wwzy2 .framer-q8tnxr { height: var(--framer-aspect-ratio-supported, 98px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WfrkZ.framer-v-10wwzy2.framer-1hn78ly { gap: 0px; } .framer-WfrkZ.framer-v-10wwzy2.framer-1hn78ly > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-WfrkZ.framer-v-10wwzy2.framer-1hn78ly > :first-child { margin-top: 0px; } .framer-WfrkZ.framer-v-10wwzy2.framer-1hn78ly > :last-child { margin-bottom: 0px; } }\",'.framer-WfrkZ[data-border=\"true\"]::after, .framer-WfrkZ [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 846.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sJa5zutpt\":{\"layout\":[\"fixed\",\"auto\"]},\"HbYA9ZwjB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerE6WMa2NSq=withCSS(Component,css,\"framer-WfrkZ\");export default FramerE6WMa2NSq;FramerE6WMa2NSq.displayName=\"\u0418\u041D\u0421\u0422\u0410\u0413\u0420\u0410\u041C\";FramerE6WMa2NSq.defaultProps={height:846.5,width:1200};addPropertyControls(FramerE6WMa2NSq,{variant:{options:[\"ZOmcAi2m6\",\"sJa5zutpt\",\"HbYA9ZwjB\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerE6WMa2NSq,[{explicitInter:true,fonts:[]},...SubheadingTextFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerE6WMa2NSq\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sJa5zutpt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HbYA9ZwjB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"846.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "e", "n", "progress", "e", "n", "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", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "serializationHash", "SVG", "css", "FramerPpHXtFq9G", "withCSS", "PpHXtFq9G_default", "addFonts", "StarFonts", "getFonts", "PpHXtFq9G_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "testimonialBodyText", "testimonialImg", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "yMzvllG11", "lIWFZzEGe", "wYsNVVF8c", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "PpHXtFq9G_default", "css", "FrameryxDFAI3Tb", "withCSS", "yxDFAI3Tb_default", "addPropertyControls", "ControlType", "addFonts", "StarFonts", "getFontsFromSharedStyle", "fonts", "TestimonialCardFonts", "getFonts", "yxDFAI3Tb_default", "CarouselFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "getLoadingLazyAtYPosition", "cx", "ComponentViewportProvider", "css", "FramerAdDJosGOn", "withCSS", "AdDJosGOn_default", "addPropertyControls", "ControlType", "addFonts", "SubheadingTextFonts", "getFonts", "GubtheX9o_default", "SubheadingTextWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "uyjrHiOOQ_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerE6WMa2NSq", "withCSS", "E6WMa2NSq_default", "addPropertyControls", "ControlType", "addFonts"]
}
