{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/MVzz2HKOSVPXKxZqPZdW/TqcitBC3zIme9QoXbJuf/SharedFormCode.js", "ssg:https://framerusercontent.com/modules/MzEVLk1keIMeijYoJIKe/11QzISY1bPcLhsYI38eW/SubmitButton.js", "ssg:https://framerusercontent.com/modules/V59wttelZuiLRosougLs/0cKvEIKUKQ0lXLtXDCXY/FormField.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/cf6Z6G3dFIZ6Ciw6elNh/84A8JOFwuqgyGrl0p61T/P9HNsTGhw.js", "ssg:https://framerusercontent.com/modules/bX1wWANcF20in1l5Ndr1/smR10srVdrUp9l56ayoE/eODyo7sWT.js", "ssg:https://framerusercontent.com/modules/wRocQ7xKKhYfuXOdYN6Y/JCVmiyacw9m6v2b9DT2r/augiA20Il.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as e}from\"react/jsx-runtime\";import{ControlType as t}from\"framer\";import{createStore as o}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const useFormStore=o({});export function FormIcon(t){var o;let{icon:i,style:r}=t;return i?[/*#__PURE__*/e(\"div\",{className:\"form-icon\",style:{width:i.size,height:i.size,opacity:i.opacity,color:i.color||t.fontColor,backgroundImage:\"image\"==i.type&&`url(${null===(o=i.image)||void 0===o?void 0:o.src})`,backgroundSize:\"cover\",backgroundPosition:\"center\",pointerEvents:\"none\",...r},dangerouslySetInnerHTML:\"svg\"==i.type?{__html:i.svg.replace(/width=\"(\\d+)\"/,`width=\"${i.size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${i.size}\"`)}:void 0}),(null==i?void 0:i.type)==\"svg\"&&/*#__PURE__*/e(\"style\",{children:\".form-icon svg { display: block; }\"})]:null;}export const iconPropertyControls={type:t.Object,optional:!0,controls:{position:{type:t.Enum,defaultValue:\"left\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],displaySegmentedControl:!0},gap:{type:t.Number,defaultValue:12,min:0,step:1},type:{type:t.Enum,defaultValue:\"svg\",options:[\"svg\",\"image\"],optionTitles:[\"SVG\",\"Image\"],displaySegmentedControl:!0},svg:{type:t.String,placeholder:\"<svg></svg>\",displayTextArea:!0,title:\"SVG\",hidden:e=>\"svg\"!=e.type},image:{type:t.ResponsiveImage,hidden:e=>\"image\"!=e.type},color:{type:t.Color,optional:!0,hidden:e=>\"svg\"!=e.type},size:{type:t.Number,defaultValue:24,min:1,step:1},opacity:{type:t.Number,defaultValue:1,min:0,max:1,step:.01}}};\nexport const __FramerMetadata__ = {\"exports\":{\"FormIcon\":{\"type\":\"reactComponent\",\"name\":\"FormIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconPropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SharedFormCode.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Link}from\"framer\";import{useEffect,useState,useRef}from\"react\";import{FormIcon,iconPropertyControls,useFormStore}from\"https://framerusercontent.com/modules/MVzz2HKOSVPXKxZqPZdW/TqcitBC3zIme9QoXbJuf/SharedFormCode.js\";export default function SubmitButton(props){var _props_font;const{clickAction,submitUrl,responseInfo,redirectOnSuccess,scrollOptions,icon,border,success,failure}=props;const borderRadius=props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`;const[formState,setFormState]=useFormStore();const[submitted,setSubmitted]=useState(false);const redirectLinkRef=useRef(null);// Reset/clear form\nfunction resetFormState(){setFormState(prev=>{const newFormState={};for(const fieldName in prev){newFormState[fieldName]={...prev[fieldName],value:prev[fieldName].defaultValue};}return newFormState;});}useEffect(()=>{setFormState({});},[]);async function onSubmitClick(){const invalidFields=[];const formData={};if(submitted){return;}// Find invalid fields\nfor(const fieldName in formState){const field=formState[fieldName];formData[fieldName]=field.value;if(field.visible&&!field.isValid(field.value)){invalidFields.push(fieldName);}}if(invalidFields.length==0){if(clickAction==\"submitForm\"){const url=submitUrl.replace(\"submit-form.com\",\"api.formspark.io\");// Add URL to form response\nif(responseInfo.url){formData[responseInfo.urlName]=window.location.href;}// Add UTM parameters\nif(responseInfo.utmParams){const queryParams=new URLSearchParams(window.location.search);queryParams.forEach((value,key)=>{// Check if the key starts with 'utm_' (indicating it's a UTM parameter)\nif(key.startsWith(\"utm_\")){formData[key]=value;}});}setSubmitted(true);try{const response=await fetch(url,{method:\"POST\",mode:url.includes(\"submit-form.com\")||url.includes(\"api.formspark.io\")||url.includes(\".make.com\")// Fix CORS issues with Formspark and Make.com\n?\"cors\":\"no-cors\",body:JSON.stringify(formData),headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"}});if(response.ok||response.type==\"opaque\"){if((redirectOnSuccess===null||redirectOnSuccess===void 0?void 0:redirectOnSuccess.length)&&redirectLinkRef.current){redirectLinkRef.current.click();}resetFormState();success===null||success===void 0?void 0:success();}else{failure===null||failure===void 0?void 0:failure();setSubmitted(false);}}catch(error){console.error(\"Error submitting form: \",error);failure===null||failure===void 0?void 0:failure();setSubmitted(false);}}else{// Validate form without submitting to URL\nsuccess===null||success===void 0?void 0:success();setSubmitted(false);}}else{console.log(\"Not all required form fields are filled:\",invalidFields.join(\", \"));if(scrollOptions){// Scroll to first invalid field\nlet closestRef=null;let closestDistance=Number.POSITIVE_INFINITY;for(const fieldName in formState){const ref=formState[fieldName].ref;if(invalidFields.includes(fieldName)&&ref.current){const rect=ref.current.getBoundingClientRect();const distance=rect.top+window.pageYOffset;if(distance>=0&&distance<closestDistance){closestRef=ref;closestDistance=distance;}}}if(closestRef){window.scrollTo({behavior:\"smooth\",top:closestRef.current.getBoundingClientRect().top-document.body.getBoundingClientRect().top+scrollOptions.offset});}}setSubmitted(false);failure===null||failure===void 0?void 0:failure();}}return /*#__PURE__*/_jsxs(\"button\",{type:\"submit\",onClick:onSubmitClick,style:{position:\"relative\",display:\"flex\",flexDirection:(icon===null||icon===void 0?void 0:icon.position)==\"right\"?\"row-reverse\":\"row\",gap:icon===null||icon===void 0?void 0:icon.gap,alignItems:\"center\",justifyContent:((_props_font=props.font)===null||_props_font===void 0?void 0:_props_font.textAlign)||\"center\",color:props.fontColor,border:\"none\",outline:\"none\",cursor:\"pointer\",userSelect:props.textSelect?\"auto\":\"none\",borderRadius:borderRadius,padding:props.paddingIsMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.padding}px`,backgroundColor:props.backgroundColor,accentColor:props.accentColor,...props.font,...props.style},children:[/*#__PURE__*/_jsx(FormIcon,{icon:icon,style:{}}),props.text,border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.color,borderRadius:borderRadius,pointerEvents:\"none\"}}),redirectOnSuccess&&/*#__PURE__*/_jsx(Link,{ref:redirectLinkRef,href:redirectOnSuccess,openInNewTab:props.newTab,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{})})]});}SubmitButton.displayName=\"Submit Button\";addPropertyControls(SubmitButton,{// formHolder: {\n//     type: ControlType.ScrollSectionRef,\n// },\nclickAction:{type:ControlType.Enum,defaultValue:\"submitForm\",options:[\"submitForm\",\"validateForm\"],optionTitles:[\"Submit Form\",\"Validate Form\"]},submitUrl:{title:\"Submit URL\",type:ControlType.String,defaultValue:\"\",hidden:props=>props.clickAction!=\"submitForm\"},responseInfo:{type:ControlType.Object,buttonTitle:\"Options\",controls:{utmParams:{type:ControlType.Boolean,defaultValue:false,description:\"Include UTM parameters in the form response.\",title:\"UTM Params\"},url:{type:ControlType.Boolean,defaultValue:false,description:\"Include the page URL in the form response.\",title:\"URL\"},urlName:{type:ControlType.String,defaultValue:\"url\",description:\"Form response field name.\",title:\"URL Name\",hidden:props=>!props.url}},hidden:props=>props.clickAction!=\"submitForm\"},redirectOnSuccess:{type:ControlType.Link,hidden:props=>props.clickAction!=\"submitForm\"},newTab:{type:ControlType.Boolean,defaultValue:false,hidden:props=>props.clickAction!=\"submitForm\"},backgroundColor:{type:ControlType.Color,defaultValue:\"#0075FF\",title:\"Background\"},fontColor:{type:ControlType.Color,defaultValue:\"#FFF\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontWeight:700,fontSize:16,lineHeight:1}},text:{type:ControlType.String,defaultValue:\"Submit\"},scrollToInvalidField:{type:ControlType.Object,defaultValue:{offset:-24},optional:true,controls:{offset:{type:ControlType.Number,defaultValue:-24,step:1}}},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:1},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},icon:iconPropertyControls,padding:{type:ControlType.FusedNumber,defaultValue:16,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},textSelect:{type:ControlType.Boolean,defaultValue:false},success:{type:ControlType.EventHandler},failure:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SubmitButton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SubmitButton.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useRef,useState}from\"react\";import{motion}from\"framer-motion\";import{FormIcon,iconPropertyControls,useFormStore}from\"https://framerusercontent.com/modules/MVzz2HKOSVPXKxZqPZdW/TqcitBC3zIme9QoXbJuf/SharedFormCode.js\";const NO_REQUIRED_TYPES=[\"checkbox\",\"consent\",\"slider\"];const ACCENT_COLOR_TYPES=[\"checkbox\",\"consent\",\"radio\",\"multiSelect\"];const OPTIONS_TYPES=[\"dropdown\",\"radio\",\"multiSelect\"];const TEXT_PLACEHOLDER_TYPES=[\"input\",\"textArea\"];const PLACEHOLDER_FONT_COLOR_TYPES=[\"input\",\"textArea\",\"number\",\"email\",\"phoneNumber\"];const GAP_TYPES=[\"checkbox\",\"consent\",\"slider\",\"nps\",\"phoneNumber\"];const GAP_HV_TYPES=[\"radio\",\"multiSelect\"];const MIN_MAX_STEP_TYPES=[\"number\",\"slider\"];const PHONE_NUMBER_FORMATS=[\"(123) 456 - 7890\",\"(123) 456-7890\",\"123-456-7890\",\"123.456.7890\",\"123 456 7890\",\"1234567890\",\"12-3456-7890\"];const DROPDOWN_ICON_HEIGHT=12;const DROPDOWN_NONE_SELECTED_VALUE=\"[{(None Selected)}]\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function FormField(props){var _formState_name;const{type,name,options,gap,border,icon,invalidStyle}=props;const elementId=name;const required=NO_REQUIRED_TYPES.includes(type)?true:props.required;const iconOnLeft=(icon===null||icon===void 0?void 0:icon.position)==\"left\";const pt=props.paddingIsMixed?props.paddingTop:props.padding;const pl=props.paddingIsMixed?props.paddingLeft:props.padding;const pb=props.paddingIsMixed?props.paddingBottom:props.padding;const pr=props.paddingIsMixed?props.paddingRight:props.padding;const plIcon=pl+(icon&&iconOnLeft?icon.size+icon.gap:0);const prIcon=pr+(icon&&!iconOnLeft?icon.size+icon.gap:0);const minHeight=icon?pt+icon.size+pb:undefined;const[formState,setFormState]=useFormStore();const value=(_formState_name=formState[name])===null||_formState_name===void 0?void 0:_formState_name.value;// Used by the phone number input field to record if the country code is the default\n// country code and should be hidden or if it was entered by the user and should be shown.\nconst[isSpecialValue,setIsSpecialValue]=useState(type==\"phoneNumber\"&&props.phoneNumberDefaultCountryCode.length>0);const[invalid,setInvalid]=useState(false);const invalidRef=useRef(false);const ref=useRef(null);function updateField(key,value){setFormState(prev=>({[name]:{...prev[name],[key]:value}}));}function invalidate(){invalidRef.current=true;setInvalid(true);}function revalidate(){invalidRef.current=false;setInvalid(false);}function isValid(value){let valid=true;if(required){switch(type){case\"input\":case\"textArea\":case\"phoneNumber\":valid=value&&value.length>0;break;case\"email\":valid=value&&value.length>0;break;case\"multiSelect\":valid=Array.isArray(value)&&value.length>0;break;case\"consent\":valid=value==\"on\";break;default:valid=value!=null;break;}}// Check email validity\nif(valid&&type==\"email\"){valid=isEmailAddress(value);}if(!valid){invalidate();}return valid;}useEffect(()=>{let value=null;switch(type){case\"input\":case\"textArea\":case\"email\":case\"phoneNumber\":value=\"\";break;case\"checkbox\":value=\"off\";break;case\"dropdown\":value=options.includes(props.dropdownDefaultValue)?props.dropdownDefaultValue:null;break;case\"multiSelect\":value=[];break;case\"slider\":value=props.sliderDefaultValue;break;}setFormState(prev=>{return{[name]:{ref,value:prev[name]?prev[name].value:value,defaultValue:value,name,required,visible:true,isValid}};});return()=>{updateField(\"visible\",false);};},[]);const borderRadius=props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`;const style={flex:1,border:\"none\",outline:\"none\",backgroundColor:\"transparent\",padding:`${pt}px ${prIcon}px ${pb}px ${plIcon}px`,color:props.fontColor,...props.font,...props.style};function onChangeEventTargetValue(event){updateField(\"value\",event.target.value);}const elements=[];switch(type){case\"input\":elements.push(/*#__PURE__*/_jsx(\"input\",{value:value,onChange:onChangeEventTargetValue,onFocus:revalidate,style:style,placeholder:props.textPlaceholder}));break;case\"checkbox\":case\"consent\":elements.push(/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\",gap:gap,cursor:\"pointer\",...style},children:[/*#__PURE__*/_jsx(\"input\",{type:\"checkbox\",name:name,checked:value===\"on\",onChange:event=>{updateField(\"value\",event.target.checked?\"on\":type==\"checkbox\"?\"off\":null);},onFocus:revalidate,style:{margin:0,cursor:\"pointer\"}}),type==\"checkbox\"?props.checkboxText:props.consentText]}));break;case\"dropdown\":elements.push(/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",...props.style},children:[/*#__PURE__*/_jsxs(\"select\",{value:!value?DROPDOWN_NONE_SELECTED_VALUE:value,onChange:event=>{updateField(\"value\",event.target.value==DROPDOWN_NONE_SELECTED_VALUE?null:event.target.value);},onFocus:revalidate,style:{appearance:\"none\",height:\"100%\",cursor:\"pointer\",margin:0,backgroundImage:\"none\",...style},children:[!options.includes(props.dropdownDefaultValue)&&/*#__PURE__*/_jsx(\"option\",{value:DROPDOWN_NONE_SELECTED_VALUE,disabled:true,children:props.dropdownNoneSelectedText}),options.map((option,index)=>/*#__PURE__*/_jsx(\"option\",{value:option,children:option},index))]}),/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:DROPDOWN_ICON_HEIGHT,height:DROPDOWN_ICON_HEIGHT,viewBox:\"0 0 18 18\",fill:\"none\",\"stroke-width\":\"2\",stroke:props.fontColor,\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{display:\"block\",position:\"absolute\",right:icon&&!iconOnLeft?0:pr,top:`calc(50% - ${DROPDOWN_ICON_HEIGHT/2}px)`,pointerEvents:\"none\"},children:/*#__PURE__*/_jsx(\"path\",{d:\"M2 5.5L9 12.5L16 5.5\"})})]}));break;case\"textArea\":elements.push(/*#__PURE__*/_jsx(\"textarea\",{value:value,onChange:onChangeEventTargetValue,onFocus:revalidate,style:{display:\"block\",height:props.resizeable?props.textAreaDefaultHeight:100,minHeight:minHeight,resize:props.resizeable?\"vertical\":\"none\",...style},placeholder:props.textPlaceholder}));break;case\"multiSelect\":const multiSelectOnChange=event=>{const multiSelectValue=event.target.checked?[...value||[],event.target.name]:(value||[]).filter(v=>v!==event.target.name);updateField(\"value\",multiSelectValue);};elements.push(/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:props.gapV,...style},children:props.options.map((option,index)=>/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",flexDirection:\"row\",gap:props.gapH,alignItems:\"center\",cursor:\"pointer\"},children:[/*#__PURE__*/_jsx(\"input\",{type:\"checkbox\",name:option,checked:(Array.isArray(value)&&value||[]).includes(option),onChange:multiSelectOnChange,onFocus:revalidate,style:{margin:0,cursor:\"pointer\"}}),option]},index))}));break;case\"radio\":elements.push(/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:props.gapV,...style},children:props.options.map((option,index)=>/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",flexDirection:\"row\",gap:props.gapH,alignItems:\"center\",cursor:\"pointer\"},children:[/*#__PURE__*/_jsx(\"input\",{type:\"radio\",name:option,value:option,checked:value===option,onChange:onChangeEventTargetValue,onFocus:revalidate,style:{margin:0,cursor:\"pointer\"}}),option]},index))}));break;case\"number\":const numberUpdateFormState=event=>{const roundedValue=Math.round(Number(event.target.value)/props.step)*props.step;const boundedValue=Math.min(Math.max(roundedValue,props.min),props.max);updateField(\"value\",boundedValue);};const numberOnFocusLost=event=>{numberUpdateFormState(event);};const numberOnKeyDown=event=>{if(event.key===\"Enter\"){numberUpdateFormState(event);}};elements.push(/*#__PURE__*/_jsx(\"input\",{type:\"number\",value:value,onChange:onChangeEventTargetValue,onFocus:revalidate,onKeyDown:numberOnKeyDown,onBlur:numberOnFocusLost,style:style,placeholder:props.numberPlaceholder,min:props.min,max:props.max,step:props.step}));break;case\"slider\":var _handle_border,_handle_border1,_track_border,_track_border1,_props_sliderLabel;const track=props.sliderTrack;const handle=props.sliderHandle;const handleCSS=`appearance: none;\n                -webkit-appearance: none;\n                width: ${handle.size}px;\n                height: ${handle.size}px;\n                border-radius: 10000px;\n                background-color: ${handle.color};\n                box-sizing: border-box;\n                translate: 0 ${(-handle.size+track.height)/2-(track.border?Math.min(track.border.width,track.height/2):0)}px;\n                border-width: ${((_handle_border=handle.border)===null||_handle_border===void 0?void 0:_handle_border.width)||0}px;\n                border-style: ${handle.border?\"solid\":\"none\"};\n                border-color: ${((_handle_border1=handle.border)===null||_handle_border1===void 0?void 0:_handle_border1.color)||\"none\"};`;const trackCSS=`appearance: none;\n                -webkit-appearance: none;\n                height: ${track.height}px;\n                border-radius: 10000px;\n                background-color: ${track.color};\n                box-sizing: border-box;\n                border-width: ${((_track_border=track.border)===null||_track_border===void 0?void 0:_track_border.width)||0}px;\n                border-style: ${track.border?\"solid\":\"none\"};\n                border-color: ${((_track_border1=track.border)===null||_track_border1===void 0?void 0:_track_border1.color)||\"none\"};`;elements.push(/*#__PURE__*/_jsxs(\"div\",{// id={elementId}\nstyle:{display:\"flex\",flexDirection:((_props_sliderLabel=props.sliderLabel)===null||_props_sliderLabel===void 0?void 0:_props_sliderLabel.position)==\"right\"?\"row-reverse\":\"row\",gap:gap,alignItems:\"center\",...style},children:[props.sliderLabel&&/*#__PURE__*/_jsxs(\"p\",{style:{margin:0},children:[props.sliderLabel.prefix,value||props.sliderDefaultValue,props.sliderLabel.suffix]}),/*#__PURE__*/_jsx(\"input\",{type:\"range\",min:props.min,max:props.max,step:props.step,value:value||props.sliderDefaultValue,onChange:onChangeEventTargetValue,onFocus:revalidate,style:{flex:1,appearance:\"none\",outline:\"none\",margin:0,cursor:\"pointer\",height:Math.max(handle.size,track.height),background:\"none\"}})]}),/*#__PURE__*/_jsx(\"style\",{children:`#${elementId} input[type=range]::-webkit-slider-thumb {${handleCSS}}\n                    #${elementId} input[type=range]::-moz-range-thumb {${handleCSS}}\n\n                    #${elementId} input[type=range]::-webkit-slider-runnable-track {${trackCSS}}\n                    #${elementId} input[type=range]::-moz-range-track {${trackCSS}}\n                    #${elementId} input[type=range]::-moz-range-progress {${trackCSS}}\n                    `}));break;case\"nps\":const{npsButtons,npsLabels}=props;const{innerRadius,outerRadius}=npsButtons;const buttonBorder=npsButtons.border;elements.push(/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:gap,...style,width:undefined},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsx(\"span\",{children:npsLabels.left}),/*#__PURE__*/_jsx(\"span\",{children:npsLabels.right})]}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",gap:npsButtons.gap},children:Array.from({length:props.npsMax+1}).map((_,index)=>{const selected=value==index;const radius=index==0?`${outerRadius}px ${innerRadius}px ${innerRadius}px ${outerRadius}px`:index==props.npsMax?`${innerRadius}px ${outerRadius}px ${outerRadius}px ${innerRadius}px`:`${innerRadius}px`;return /*#__PURE__*/_jsxs(motion.button,{animate:{backgroundColor:selected?npsButtons.selectedColor:npsButtons.deselectedColor,color:selected?npsButtons.selectedFontColor:npsButtons.deelectedFontColor},style:{position:\"relative\",flex:1,height:npsButtons.height,border:\"none\",outline:\"none\",borderRadius:radius,minWidth:npsButtons.minWidth,cursor:\"pointer\",...npsButtons.font},onClick:()=>{updateField(\"value\",index);revalidate();},initial:false,transition:npsButtons.transition,children:[index,buttonBorder&&/*#__PURE__*/_jsx(motion.div,{animate:{borderColor:selected?buttonBorder.selectedColor:buttonBorder.deselectedColor},style:{position:\"absolute\",inset:0,borderWidth:buttonBorder.widthIsMixed?`${buttonBorder.widthTop}px ${buttonBorder.widthRight}px ${buttonBorder.widthBottom}px ${buttonBorder.widthLeft}px`:`${buttonBorder.width}px`,borderStyle:buttonBorder.style,borderRadius:radius,pointerEvents:\"none\"},initial:false,transition:npsButtons.transition})]},index);})})]}));break;case\"date\":case\"time\":elements.push(/*#__PURE__*/_jsx(\"input\",{// id={elementId}\ntype:type,value:value,onChange:onChangeEventTargetValue,onFocus:revalidate,style:{...style}}),/*#__PURE__*/_jsx(\"style\",{children:`#${elementId} input::-webkit-datetime-edit {\n                    flex: 0 1 auto;\n                    z-index: 1;\n                    cursor: text;\n                    color: ${props.fontColor};\n                }\n                \n                #${elementId} input::-webkit-calendar-picker-indicator {\n                    position: absolute;\n                    width: 100%;\n                    height: 100%;\n                    inset: 0;\n                    padding: 0;\n                    opacity: 0;\n                    margin: 0;\n                    overflow: visible;\n                    cursor: pointer;\n                }`}));break;case\"email\":function emailOnFocusLost(event){if(event.target.value.length>0&&!isEmailAddress(event.target.value)){invalidate();}}elements.push(/*#__PURE__*/_jsx(\"input\",{type:\"text\",value:value,onChange:onChangeEventTargetValue,onFocus:revalidate,onBlur:emailOnFocusLost,style:style,placeholder:props.emailPlaceholder}));break;case\"phoneNumber\":function phoneNumberOnChange(event){const[phoneNumber,hasCountryCode]=formatPhoneNumber(event.target.value,props.phoneNumberFormat,props.phoneNumberCustomFormat,props.phoneNumberCountryCodeFormat,props.phoneNumberDefaultCountryCode);setIsSpecialValue(!hasCountryCode);updateField(\"value\",phoneNumber);}elements.push(/*#__PURE__*/_jsx(\"input\",{type:\"tel\",value:isSpecialValue?removeCountryCode(value,props.phoneNumberFormat,props.phoneNumberCustomFormat):value,onChange:phoneNumberOnChange,onFocus:revalidate,style:style,placeholder:props.phoneNumberPlaceholder}));break;}return /*#__PURE__*/_jsxs(motion.div,{ref:ref,id:elementId,animate:{backgroundColor:invalid&&invalidStyle.backgroundColor?invalidStyle.backgroundColor:props.backgroundColor},style:{position:\"relative\",display:\"flex\",color:props.fontColor,accentColor:props.accentColor,borderRadius:borderRadius,overflow:\"auto\",minHeight:minHeight,userSelect:props.textSelect?\"auto\":\"none\",...props.font,...props.style},initial:false,transition:invalidStyle.transition,children:[icon&&/*#__PURE__*/_jsx(FormIcon,{icon:icon,style:{position:\"absolute\",top:`calc(50% - ${icon.size/2}px)`,left:iconOnLeft?pl:undefined,right:!iconOnLeft?pr:undefined}}),elements,border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.color,borderRadius:borderRadius,pointerEvents:\"none\"}}),invalidStyle.border&&/*#__PURE__*/_jsx(motion.div,{animate:{opacity:invalid?1:0},style:{position:\"absolute\",inset:0,borderWidth:invalidStyle.border.widthIsMixed?`${invalidStyle.border.widthTop}px ${invalidStyle.border.widthRight}px ${invalidStyle.border.widthBottom}px ${invalidStyle.border.widthLeft}px`:`${invalidStyle.border.width}px`,borderStyle:invalidStyle.border.style,borderColor:invalidStyle.border.color,borderRadius:borderRadius,pointerEvents:\"none\"},initial:false,transition:invalidStyle.transition}),PLACEHOLDER_FONT_COLOR_TYPES.includes(type)&&/*#__PURE__*/_jsx(\"style\",{children:`#${elementId} input::placeholder, #${elementId} textarea::placeholder { color: ${props.placeholderFontColor}; }`})]});}FormField.displayName=\"Form Field\";addPropertyControls(FormField,{type:{type:ControlType.Enum,defaultValue:\"input\",options:[\"input\",\"checkbox\",\"dropdown\",\"textArea\",\"email\",\"phoneNumber\",\"multiSelect\",\"radio\",\"number\",\"slider\",\"nps\",\"date\",\"time\",\"consent\"],optionTitles:[\"Input\",\"Checkbox\",\"Dropdown\",\"Text Area\",\"Email\",\"Phone Number\",\"Multi-Select\",\"Radio\",\"Number\",\"Slider\",\"Net Promoter Score\",\"Date\",\"Time\",\"Consent\"]},name:{type:ControlType.String,defaultValue:\"fieldName\"},required:{type:ControlType.Boolean,defaultValue:false,hidden:props=>NO_REQUIRED_TYPES.includes(props.type)},textPlaceholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Type...\",hidden:props=>!TEXT_PLACEHOLDER_TYPES.includes(props.type)},numberPlaceholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"0\",hidden:props=>props.type!=\"number\"},emailPlaceholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"hello@example.com\",hidden:props=>props.type!=\"email\"},phoneNumberFormat:{title:\"Format\",type:ControlType.Enum,defaultValue:\"(123) 456 - 7890\",options:PHONE_NUMBER_FORMATS,// options: [...PHONE_NUMBER_FORMATS, \"custom\"],\n// optionTitles: [...PHONE_NUMBER_FORMATS, \"Custom Format\"],\nhidden:props=>props.type!=\"phoneNumber\"},// phoneNumberCustomFormat: {\n//     title: \" \",\n//     type: ControlType.String,\n//     defaultValue: \"(XXX) XXX - XXXX\",\n//     hidden: (props) =>\n//         props.type != \"phoneNumber\" || props.phoneNumberFormat != \"custom\",\n// },\nphoneNumberDefaultCountryCode:{title:\"Default Country Code\",type:ControlType.String,defaultValue:\"1\",hidden:props=>props.type!=\"phoneNumber\"},phoneNumberCountryCodeFormat:{title:\"Country Code Format\",type:ControlType.Enum,defaultValue:\"+1\",options:[\"+1\",\"(1)\",\"(+1)\",\"1\",\"noSpace\"],optionTitles:[\"+1\",\"(1)\",\"(+1)\",\"1\",\"1 (No Space)\"],hidden:props=>props.type!=\"phoneNumber\"},phoneNumberPlaceholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"+1 (123) 456 - 7890\",hidden:props=>props.type!=\"phoneNumber\"},consentText:{type:ControlType.String,defaultValue:\"I agree to the Terms & Conditions.\",title:\"Text\",hidden:props=>props.type!=\"consent\"},checkboxText:{type:ControlType.String,defaultValue:\"Checkbox\",title:\"Text\",hidden:props=>props.type!=\"checkbox\"},options:{title:\"Options\",type:ControlType.Array,propertyControl:{type:ControlType.String},defaultValue:[\"Option 1\",\"Option 2\",\"Option 3\"],hidden:props=>!OPTIONS_TYPES.includes(props.type)},npsMax:{type:ControlType.Number,defaultValue:10,min:1,step:1,displayStepper:true,title:\"Max\",hidden:props=>props.type!=\"nps\"},npsLabels:{type:ControlType.Object,title:\"Labels\",controls:{left:{type:ControlType.String,defaultValue:\"Not Likely\"},right:{type:ControlType.String,defaultValue:\"Extremely Likely\"}},hidden:props=>props.type!=\"nps\"},npsButtons:{type:ControlType.Object,buttonTitle:\"Options\",title:\"Buttons\",controls:{selectedColor:{type:ControlType.Color,defaultValue:\"#0075FF\",title:\"Selected\"},selectedFontColor:{type:ControlType.Color,defaultValue:\"#FFFFFF\",title:\"Selected Font Color\"},deselectedColor:{type:ControlType.Color,defaultValue:\"#F0F0F0\",title:\"Deselected\"},deselectedFontColor:{type:ControlType.Color,defaultValue:\"#000000\",title:\"Deslected Font Color\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:12,lineHeight:1}},innerRadius:{type:ControlType.Number,defaultValue:4,min:0,step:1},outerRadius:{type:ControlType.Number,defaultValue:8,min:0,step:1},gap:{type:ControlType.Number,defaultValue:4,min:0,step:1},height:{type:ControlType.Number,defaultValue:40,min:0,step:1},minWidth:{type:ControlType.Number,defaultValue:30,min:0,step:1},border:{type:ControlType.Object,optional:true,controls:{selectedColor:{type:ControlType.Color,defaultValue:\"#004CA8\",title:\"Selected\"},deselectedColor:{type:ControlType.Color,defaultValue:\"#222222\",title:\"Deselected\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:1200,damping:70}}},hidden:props=>props.type!=\"nps\"},sliderHandle:{type:ControlType.Object,buttonTitle:\"Options\",title:\"Handle\",controls:{color:{type:ControlType.Color,defaultValue:\"#0075FF\"},size:{type:ControlType.Number,defaultValue:16,min:1,step:1},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#0069E0\"},width:{type:ControlType.Number,defaultValue:1,min:0,step:1}}}},hidden:props=>props.type!=\"slider\"},sliderTrack:{type:ControlType.Object,buttonTitle:\"Options\",title:\"Track\",controls:{color:{type:ControlType.Color,defaultValue:\"#D9D9D9\"},height:{type:ControlType.Number,defaultValue:4,min:1,step:1},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#0069E0\"},width:{type:ControlType.Number,defaultValue:1,min:0,step:1}}}},hidden:props=>props.type!=\"slider\"},min:{title:\"Min\",type:ControlType.Number,defaultValue:0,hidden:props=>!MIN_MAX_STEP_TYPES.includes(props.type)},max:{title:\"Max\",type:ControlType.Number,defaultValue:100,hidden:props=>!MIN_MAX_STEP_TYPES.includes(props.type)},step:{type:ControlType.Number,defaultValue:1,hidden:props=>!MIN_MAX_STEP_TYPES.includes(props.type)},resizeable:{type:ControlType.Boolean,defaultValue:true,hidden:props=>props.type!=\"textArea\"},textAreaDefaultHeight:{type:ControlType.Number,defaultValue:100,min:0,step:1,title:\"Height\",hidden:props=>props.type!=\"textArea\"||!props.resizeable},sliderDefaultValue:{type:ControlType.Number,defaultValue:50,title:\"Default Value\",hidden:props=>props.type!=\"slider\"},sliderLabel:{type:ControlType.Object,defaultValue:{defaultValue:\"left\"},optional:true,controls:{position:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],displaySegmentedControl:true},prefix:{type:ControlType.String},suffix:{type:ControlType.String}},hidden:props=>props.type!=\"slider\"},dropdownDefaultValue:{type:ControlType.String,title:\"Default Value\",hidden:props=>props.type!=\"dropdown\"},dropdownNoneSelectedText:{type:ControlType.String,defaultValue:\"Select an option\",title:\"None Selected Text\",hidden:props=>props.options.includes(props.defaultValue)||props.type!=\"dropdown\"},backgroundColor:{type:ControlType.Color,defaultValue:\"#FFF\",optional:true,title:\"Background\"},accentColor:{title:\"Accent\",type:ControlType.Color,defaultValue:\"#0075FF\",hidden:props=>!ACCENT_COLOR_TYPES.includes(props.type)},fontColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.type==\"slider\"?props.sliderLabel!=null:false},placeholderFontColor:{type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.5)\",hidden:props=>!PLACEHOLDER_FONT_COLOR_TYPES.includes(props.type)},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.5},hidden:props=>props.type==\"slider\"?props.sliderLabel!=null:false},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},padding:{type:ControlType.FusedNumber,defaultValue:16,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>!GAP_TYPES.includes(props.type)},gapH:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>!GAP_HV_TYPES.includes(props.type)},gapV:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>!GAP_HV_TYPES.includes(props.type)},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},icon:iconPropertyControls,textSelect:{type:ControlType.Boolean,defaultValue:false},invalidStyle:{type:ControlType.Object,buttonTitle:\"Options\",controls:{backgroundColor:{type:ControlType.Color,defaultValue:\"#FFF5F5\",optional:true,title:\"Background\"},border:{type:ControlType.Object,optional:true,defaultValue:{color:\"#FF0000\",width:2,style:\"solid\"},controls:{color:{type:ControlType.Color,defaultValue:\"#FF0000\"},width:{type:ControlType.FusedNumber,defaultValue:2,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:1200,damping:70}}}}});// Utility functions\nfunction isEmailAddress(string){return/^[a-zA-Z0-9._+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,64}$/.test(string);}function formatPhoneNumber(phoneNumberString,format,customFormat,countryCodeFormat,defaultCountryCode){// Remove all non-numeric characters\nconst cleaned=(\"\"+phoneNumberString).replace(/\\D/g,\"\");// Check the length to decide if there's a country code\nconst match=cleaned.match(/^(\\d{1,4})?(\\d{3})(\\d{3})(\\d{4})$/);let hasCountryCode=false;let phoneNumber=cleaned;if(match){hasCountryCode=Boolean(match[1]);let intlCode=\"\";const countryCode=match[1]||defaultCountryCode;if(countryCode===null||countryCode===void 0?void 0:countryCode.length){switch(countryCodeFormat){case\"+1\":intlCode=`+${countryCode} `;break;case\"(1)\":intlCode=`(${countryCode}) `;break;case\"(+1)\":intlCode=`(+${countryCode}) `;break;case\"1\":intlCode=`${countryCode} `;break;case\"noSpace\":intlCode=`${countryCode}`;break;}}switch(format){case\"custom\":let formattedNumber=\"\";let digitIndex=0;for(let i=0;i<customFormat.length;i++){if(customFormat[i]===\"X\"){formattedNumber+=cleaned[digitIndex]||\"\";digitIndex++;}else{formattedNumber+=customFormat[i];}}phoneNumber=intlCode+formattedNumber;break;case\"(123) 456 - 7890\":phoneNumber=`${intlCode}(${match[2]}) ${match[3]} - ${match[4]}`;break;case\"(123) 456-7890\":phoneNumber=`${intlCode}(${match[2]}) ${match[3]}-${match[4]}`;break;case\"123-456-7890\":phoneNumber=`${intlCode}${match[2]}-${match[3]}-${match[4]}`;break;case\"123.456.7890\":phoneNumber=`${intlCode}${match[2]}.${match[3]}.${match[4]}`;break;case\"123 456 7890\":phoneNumber=`${intlCode}${match[2]} ${match[3]} ${match[4]}`;break;case\"1234567890\":phoneNumber=`${intlCode}${match[2]}${match[3]}${match[4]}`;break;case\"12-3456-7890\":phoneNumber=`${intlCode}${match[2].slice(0,-1)}-${match[2].charAt(2)}${match[3]}-${match[4]}`;break;}}return[phoneNumber,hasCountryCode];}function removeCountryCode(phoneNumber,phoneNumberFormat,phoneNumberCustomFormat){let firstSpaceIndex=(phoneNumber===null||phoneNumber===void 0?void 0:phoneNumber.indexOf(\" \"))||-1;if(firstSpaceIndex===-1){return phoneNumber// No space found\n;}let numberLength=10;if(phoneNumberFormat==\"custom\"){numberLength=(phoneNumberCustomFormat.match(/X/g)||[]).length;}let count=0;let hasCountryCode=false;for(let i=firstSpaceIndex+1;i<phoneNumber.length;i++){if(/\\d/.test(phoneNumber[i])){// Check if the character is a number\ncount++;if(count>=numberLength){hasCountryCode=true;break;}}}if(hasCountryCode){return phoneNumber.substring(firstSpaceIndex+1);}return phoneNumber;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormField\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormField.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,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/tQ7b8PpPS4KvCuS8FIFC/alpXOEA8DqKJrm5xFzOh/Rdrc9Nr49.js\";const cycleOrder=[\"mkcXmubvR\",\"XmHsfOSMk\"];const serializationHash=\"framer-ZqsKx\";const variantClassNames={mkcXmubvR:\"framer-v-1akr8m2\",XmHsfOSMk:\"framer-v-1wc64hz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Row 2\":\"XmHsfOSMk\",Row:\"mkcXmubvR\"};const getProps=({background,description,height,id,opacity,showDescription,tap,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,fYNHBKMRX:(_ref=background!==null&&background!==void 0?background:props.fYNHBKMRX)!==null&&_ref!==void 0?_ref:\"rgba(187, 221, 255, 0)\",jZwxUkSuW:(_ref1=showDescription!==null&&showDescription!==void 0?showDescription:props.jZwxUkSuW)!==null&&_ref1!==void 0?_ref1:true,kYTv4Zelc:title!==null&&title!==void 0?title:props.kYTv4Zelc,R8vdViyVv:(_ref2=description!==null&&description!==void 0?description:props.R8vdViyVv)!==null&&_ref2!==void 0?_ref2:\"Dit is de omschrijving\",S17635pUx:tap!==null&&tap!==void 0?tap:props.S17635pUx,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"mkcXmubvR\",ZM9GGyL3Q:(_ref4=opacity!==null&&opacity!==void 0?opacity:props.ZM9GGyL3Q)!==null&&_ref4!==void 0?_ref4:.5};};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,kYTv4Zelc,R8vdViyVv,jZwxUkSuW,S17635pUx,ZM9GGyL3Q,fYNHBKMRX,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mkcXmubvR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1af53f1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(S17635pUx){const res=await S17635pUx(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1akr8m2\",className,classNames),\"data-framer-name\":\"Row\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mkcXmubvR\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1af53f1,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:fYNHBKMRX,opacity:ZM9GGyL3Q,...style},...addPropertyOverrides({XmHsfOSMk:{\"data-framer-name\":\"Row 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1su0swz\",layoutDependency:layoutDependency,layoutId:\"rkfmmBN6H\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-gxb5ml\",\"data-styles-preset\":\"Rdrc9Nr49\",children:\"text\"})}),className:\"framer-1abrtfv\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"u8pw97A_K\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:kYTv4Zelc,verticalAlignment:\"top\",withExternalLayout:true}),jZwxUkSuW&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-780b7191-a190-46a9-bc4c-fb589d8f8d51, rgb(44, 44, 44)))\"},children:\"Dit is de omschrijving\"})}),className:\"framer-sqggud\",\"data-framer-name\":\"Description\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"lIIJseEWX\",style:{\"--extracted-r6o4lv\":\"var(--token-780b7191-a190-46a9-bc4c-fb589d8f8d51, rgb(44, 44, 44))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:R8vdViyVv,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZqsKx.framer-1vwvryp, .framer-ZqsKx .framer-1vwvryp { display: block; }\",\".framer-ZqsKx.framer-1akr8m2 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 24px 48px 24px 24px; position: relative; width: 800px; }\",\".framer-ZqsKx .framer-1su0swz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZqsKx .framer-1abrtfv, .framer-ZqsKx .framer-sqggud { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZqsKx.framer-1akr8m2, .framer-ZqsKx .framer-1su0swz { gap: 0px; } .framer-ZqsKx.framer-1akr8m2 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-ZqsKx.framer-1akr8m2 > :first-child { margin-left: 0px; } .framer-ZqsKx.framer-1akr8m2 > :last-child { margin-right: 0px; } .framer-ZqsKx .framer-1su0swz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ZqsKx .framer-1su0swz > :first-child { margin-top: 0px; } .framer-ZqsKx .framer-1su0swz > :last-child { margin-bottom: 0px; } }\",\".framer-ZqsKx.framer-v-1wc64hz.framer-1akr8m2 { flex-direction: column; gap: 12px; padding: 12px 12px 24px 12px; }\",\".framer-ZqsKx.framer-v-1wc64hz .framer-1su0swz { flex: none; gap: 12px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZqsKx.framer-v-1wc64hz.framer-1akr8m2, .framer-ZqsKx.framer-v-1wc64hz .framer-1su0swz { gap: 0px; } .framer-ZqsKx.framer-v-1wc64hz.framer-1akr8m2 > *, .framer-ZqsKx.framer-v-1wc64hz .framer-1su0swz > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ZqsKx.framer-v-1wc64hz.framer-1akr8m2 > :first-child, .framer-ZqsKx.framer-v-1wc64hz .framer-1su0swz > :first-child { margin-top: 0px; } .framer-ZqsKx.framer-v-1wc64hz.framer-1akr8m2 > :last-child, .framer-ZqsKx.framer-v-1wc64hz .framer-1su0swz > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 104\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XmHsfOSMk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"kYTv4Zelc\":\"title\",\"R8vdViyVv\":\"description\",\"jZwxUkSuW\":\"showDescription\",\"S17635pUx\":\"tap\",\"ZM9GGyL3Q\":\"opacity\",\"fYNHBKMRX\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP9HNsTGhw=withCSS(Component,css,\"framer-ZqsKx\");export default FramerP9HNsTGhw;FramerP9HNsTGhw.displayName=\"Ordered List Item\";FramerP9HNsTGhw.defaultProps={height:104,width:800};addPropertyControls(FramerP9HNsTGhw,{variant:{options:[\"mkcXmubvR\",\"XmHsfOSMk\"],optionTitles:[\"Row\",\"Row 2\"],title:\"Variant\",type:ControlType.Enum},kYTv4Zelc:{defaultValue:\"\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String},R8vdViyVv:{defaultValue:\"Dit is de omschrijving\",displayTextArea:true,placeholder:\"\",title:\"Description\",type:ControlType.String},jZwxUkSuW:{defaultValue:true,title:\"Show Description\",type:ControlType.Boolean},S17635pUx:{title:\"Tap\",type:ControlType.EventHandler},ZM9GGyL3Q:{defaultValue:.5,max:1,min:0,step:.1,title:\"Opacity\",type:ControlType.Number},fYNHBKMRX:{defaultValue:\"rgba(187, 221, 255, 0)\",title:\"Background\",type:ControlType.Color}});addFonts(FramerP9HNsTGhw,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP9HNsTGhw\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XmHsfOSMk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"kYTv4Zelc\\\":\\\"title\\\",\\\"R8vdViyVv\\\":\\\"description\\\",\\\"jZwxUkSuW\\\":\\\"showDescription\\\",\\\"S17635pUx\\\":\\\"tap\\\",\\\"ZM9GGyL3Q\\\":\\\"opacity\\\",\\\"fYNHBKMRX\\\":\\\"background\\\"}\",\"framerIntrinsicWidth\":\"800\",\"framerIntrinsicHeight\":\"104\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import OrderedListItem from\"https://framerusercontent.com/modules/cf6Z6G3dFIZ6Ciw6elNh/84A8JOFwuqgyGrl0p61T/P9HNsTGhw.js\";const OrderedListItemFonts=getFonts(OrderedListItem);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"bCJFVNhpy\",\"C9BTPwGhI\",\"FX0kVKxn0\",\"OLR5J6rqz\",\"wApZvbsVW\",\"zSoFcG8If\",\"zZgkwW_U6\",\"ZNU8laudB\",\"tRfgTC2uQ\",\"u5TeNymhm\"];const serializationHash=\"framer-xnZQ8\";const variantClassNames={bCJFVNhpy:\"framer-v-9apper\",C9BTPwGhI:\"framer-v-1om1zjo\",FX0kVKxn0:\"framer-v-n13h5h\",OLR5J6rqz:\"framer-v-1ft1ifo\",tRfgTC2uQ:\"framer-v-ebo43t\",u5TeNymhm:\"framer-v-173a2rn\",wApZvbsVW:\"framer-v-bb9npt\",ZNU8laudB:\"framer-v-1xr9q1o\",zSoFcG8If:\"framer-v-1gw5o1n\",zZgkwW_U6:\"framer-v-rp8t91\"};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={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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 humanReadableVariantMap={\"Large - 2 Selected\":\"C9BTPwGhI\",\"Large - 3 Selected\":\"FX0kVKxn0\",\"Large - 4 Selected\":\"OLR5J6rqz\",\"Large - 5 Selected\":\"wApZvbsVW\",\"Small - 2 Selected\":\"zZgkwW_U6\",\"Small - 3 Selected\":\"ZNU8laudB\",\"Small - 4 Selected\":\"tRfgTC2uQ\",\"Small - 5 Selected\":\"u5TeNymhm\",Large:\"bCJFVNhpy\",Small:\"zSoFcG8If\"};const getProps=({_3Image,_4Image,_5Image,height,id,luxeAfwerking,omschrijving1,omschrijving2,omschrijving3,omschrijving4,omschrijving5,ruimtelijkeIndeling,titel3,titel4,titel5,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_humanReadableVariantMap_props_variant,_ref8,_ref9,_ref10;return{...props,beve5qBEX:_3Image!==null&&_3Image!==void 0?_3Image:props.beve5qBEX,c_7EsozVi:(_ref=luxeAfwerking!==null&&luxeAfwerking!==void 0?luxeAfwerking:props.c_7EsozVi)!==null&&_ref!==void 0?_ref:\"Luxe afwerking\",DMOB6Qgzd:(_ref1=titel3!==null&&titel3!==void 0?titel3:props.DMOB6Qgzd)!==null&&_ref1!==void 0?_ref1:\"Voorzieningen\",f6WCGGoC7:(_ref2=titel4!==null&&titel4!==void 0?titel4:props.f6WCGGoC7)!==null&&_ref2!==void 0?_ref2:\"Locatie\",n7xEqq9GX:(_ref3=ruimtelijkeIndeling!==null&&ruimtelijkeIndeling!==void 0?ruimtelijkeIndeling:props.n7xEqq9GX)!==null&&_ref3!==void 0?_ref3:\"Ruimtelijke indeling\",NDDEWaQ3T:(_ref4=omschrijving2!==null&&omschrijving2!==void 0?omschrijving2:props.NDDEWaQ3T)!==null&&_ref4!==void 0?_ref4:\"We streven naar perfectie in elk detail. Daarom zijn onze appartementen voorzien van hoogwaardige materialen en afwerkingen. Denk aan luxe vloeren, moderne keukens, elegant sanitair en nog veel meer.\",o8K0yKCzZ:(_ref5=omschrijving5!==null&&omschrijving5!==void 0?omschrijving5:props.o8K0yKCzZ)!==null&&_ref5!==void 0?_ref5:\"Jouw veiligheid is onze prioriteit. Onze appartementencomplexen zijn uitgerust met moderne beveiligingssystemen, bewaking en beveiligde toegangspunten, zodat je met een gerust hart kunt wonen.\",Oe4YD9PFI:(_ref6=omschrijving3!==null&&omschrijving3!==void 0?omschrijving3:props.Oe4YD9PFI)!==null&&_ref6!==void 0?_ref6:\"Onze appartementencomplexen bieden een scala aan voorzieningen om het woongenot te verbeteren. Geniet van een fitnessruimte, gemeenschappelijke (werk)ruimtes, dakterras, tuinen of een speeltuin voor de kinderen.\",R9w_ovEsO:_5Image!==null&&_5Image!==void 0?_5Image:props.R9w_ovEsO,Tz39DfCYe:(_ref7=omschrijving4!==null&&omschrijving4!==void 0?omschrijving4:props.Tz39DfCYe)!==null&&_ref7!==void 0?_ref7:\"Onze appartementen zijn strategisch gelegen in Houten met goede bereikbaarheid van het openbaar vervoer, winkels, restaurants, parken en andere belangrijke voorzieningen ben je altijd dichtbij alles wat je nodig hebt.\",variant:(_ref8=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref8!==void 0?_ref8:\"bCJFVNhpy\",vD39SOnhQ:(_ref9=titel5!==null&&titel5!==void 0?titel5:props.vD39SOnhQ)!==null&&_ref9!==void 0?_ref9:\"Veiligheid en beveiliging\",vuGXAfNvB:(_ref10=omschrijving1!==null&&omschrijving1!==void 0?omschrijving1:props.vuGXAfNvB)!==null&&_ref10!==void 0?_ref10:\"Elk appartement is zorgvuldig ontworpen om ruimte en functionaliteit te maximaliseren.\",XjxbaG498:_4Image!==null&&_4Image!==void 0?_4Image:props.XjxbaG498};};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,beve5qBEX,XjxbaG498,R9w_ovEsO,n7xEqq9GX,vuGXAfNvB,c_7EsozVi,NDDEWaQ3T,DMOB6Qgzd,Oe4YD9PFI,f6WCGGoC7,Tz39DfCYe,vD39SOnhQ,o8K0yKCzZ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bCJFVNhpy\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const S17635pUxx8lrf2=activeVariantCallback(async(...args)=>{setVariant(\"bCJFVNhpy\");});const S17635pUxhnth8s=activeVariantCallback(async(...args)=>{setVariant(\"zSoFcG8If\");});const S17635pUxrbucbm=activeVariantCallback(async(...args)=>{setVariant(\"C9BTPwGhI\");});const S17635pUx1vo852s=activeVariantCallback(async(...args)=>{setVariant(\"zZgkwW_U6\");});const S17635pUx1r5020i=activeVariantCallback(async(...args)=>{setVariant(\"FX0kVKxn0\");});const S17635pUx1qgz4hy=activeVariantCallback(async(...args)=>{setVariant(\"ZNU8laudB\");});const S17635pUx7nflnp=activeVariantCallback(async(...args)=>{setVariant(\"OLR5J6rqz\");});const S17635pUx16ej8ng=activeVariantCallback(async(...args)=>{setVariant(\"tRfgTC2uQ\");});const S17635pUx1i7o5pc=activeVariantCallback(async(...args)=>{setVariant(\"wApZvbsVW\");});const S17635pUxmnnecz=activeVariantCallback(async(...args)=>{setVariant(\"u5TeNymhm\");});const onMouseEnter1gx595p=overlay=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"FX0kVKxn0\")return false;return true;};const ref3=React.useRef(null);const isDisplayed1=()=>{if([\"C9BTPwGhI\",\"FX0kVKxn0\",\"zZgkwW_U6\"].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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9apper\",className,classNames),\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"bCJFVNhpy\",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},...addPropertyOverrides({C9BTPwGhI:{\"data-framer-name\":\"Large - 2 Selected\"},FX0kVKxn0:{\"data-framer-name\":\"Large - 3 Selected\"},OLR5J6rqz:{\"data-framer-name\":\"Large - 4 Selected\"},tRfgTC2uQ:{\"data-framer-name\":\"Small - 4 Selected\"},u5TeNymhm:{\"data-framer-name\":\"Small - 5 Selected\"},wApZvbsVW:{\"data-framer-name\":\"Large - 5 Selected\"},ZNU8laudB:{\"data-framer-name\":\"Small - 3 Selected\"},zSoFcG8If:{\"data-framer-name\":\"Small\"},zZgkwW_U6:{\"data-framer-name\":\"Small - 2 Selected\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x9n5ji\",layoutDependency:layoutDependency,layoutId:\"tIymPoi2c\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-146gj1t-container\",layoutDependency:layoutDependency,layoutId:\"VQntV8Gnf-container\",children:/*#__PURE__*/_jsx(OrderedListItem,{fYNHBKMRX:\"rgba(214, 201, 177, 0.5)\",height:\"100%\",id:\"VQntV8Gnf\",jZwxUkSuW:true,kYTv4Zelc:n7xEqq9GX,layoutId:\"VQntV8Gnf\",R8vdViyVv:vuGXAfNvB,S17635pUx:S17635pUxx8lrf2,style:{width:\"100%\"},variant:\"mkcXmubvR\",width:\"100%\",ZM9GGyL3Q:1,...addPropertyOverrides({C9BTPwGhI:{fYNHBKMRX:\"rgba(216, 200, 197, 0)\",jZwxUkSuW:false,S17635pUx:undefined,ZM9GGyL3Q:.5},FX0kVKxn0:{fYNHBKMRX:\"rgba(216, 200, 197, 0)\",jZwxUkSuW:false,S17635pUx:undefined,ZM9GGyL3Q:.5},OLR5J6rqz:{fYNHBKMRX:\"rgba(216, 200, 197, 0)\",jZwxUkSuW:false,S17635pUx:undefined,ZM9GGyL3Q:.5},tRfgTC2uQ:{fYNHBKMRX:\"rgba(216, 200, 197, 0)\",jZwxUkSuW:false,S17635pUx:S17635pUxhnth8s,variant:\"XmHsfOSMk\",ZM9GGyL3Q:.5},u5TeNymhm:{fYNHBKMRX:\"rgba(216, 200, 197, 0)\",jZwxUkSuW:false,S17635pUx:S17635pUxhnth8s,variant:\"XmHsfOSMk\",ZM9GGyL3Q:.5},wApZvbsVW:{fYNHBKMRX:\"rgba(216, 200, 197, 0)\",jZwxUkSuW:false,S17635pUx:undefined,ZM9GGyL3Q:.5},ZNU8laudB:{fYNHBKMRX:\"rgba(216, 200, 197, 0)\",jZwxUkSuW:false,S17635pUx:S17635pUxhnth8s,variant:\"XmHsfOSMk\",ZM9GGyL3Q:.5},zSoFcG8If:{fYNHBKMRX:\"rgb(234, 228, 216)\",S17635pUx:S17635pUxhnth8s,variant:\"XmHsfOSMk\"},zZgkwW_U6:{fYNHBKMRX:\"rgba(216, 200, 197, 0)\",jZwxUkSuW:false,S17635pUx:S17635pUxhnth8s,variant:\"XmHsfOSMk\",ZM9GGyL3Q:.5}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sqbzyj-container\",layoutDependency:layoutDependency,layoutId:\"up5sIFNDk-container\",children:/*#__PURE__*/_jsx(OrderedListItem,{fYNHBKMRX:\"rgba(187, 221, 255, 0)\",height:\"100%\",id:\"up5sIFNDk\",jZwxUkSuW:false,kYTv4Zelc:c_7EsozVi,layoutId:\"up5sIFNDk\",R8vdViyVv:NDDEWaQ3T,S17635pUx:S17635pUxrbucbm,style:{width:\"100%\"},variant:\"mkcXmubvR\",width:\"100%\",ZM9GGyL3Q:.5,...addPropertyOverrides({C9BTPwGhI:{fYNHBKMRX:\"rgba(214, 201, 177, 0.5)\",jZwxUkSuW:true,ZM9GGyL3Q:1},tRfgTC2uQ:{S17635pUx:S17635pUx1vo852s,variant:\"XmHsfOSMk\"},u5TeNymhm:{S17635pUx:S17635pUx1vo852s,variant:\"XmHsfOSMk\"},ZNU8laudB:{S17635pUx:S17635pUx1vo852s,variant:\"XmHsfOSMk\"},zSoFcG8If:{S17635pUx:S17635pUx1vo852s,variant:\"XmHsfOSMk\"},zZgkwW_U6:{fYNHBKMRX:\"rgb(234, 228, 216)\",jZwxUkSuW:true,S17635pUx:S17635pUx1vo852s,variant:\"XmHsfOSMk\",ZM9GGyL3Q:1}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lb5so3-container\",layoutDependency:layoutDependency,layoutId:\"Al6nggAiP-container\",children:/*#__PURE__*/_jsx(OrderedListItem,{fYNHBKMRX:\"rgba(187, 221, 255, 0)\",height:\"100%\",id:\"Al6nggAiP\",jZwxUkSuW:false,kYTv4Zelc:DMOB6Qgzd,layoutId:\"Al6nggAiP\",R8vdViyVv:Oe4YD9PFI,S17635pUx:S17635pUx1r5020i,style:{width:\"100%\"},variant:\"mkcXmubvR\",width:\"100%\",ZM9GGyL3Q:.5,...addPropertyOverrides({FX0kVKxn0:{fYNHBKMRX:\"rgba(214, 201, 177, 0.5)\",jZwxUkSuW:true,ZM9GGyL3Q:1},tRfgTC2uQ:{S17635pUx:S17635pUx1qgz4hy,variant:\"XmHsfOSMk\"},u5TeNymhm:{S17635pUx:S17635pUx1qgz4hy,variant:\"XmHsfOSMk\"},ZNU8laudB:{fYNHBKMRX:\"rgb(234, 228, 216)\",jZwxUkSuW:true,S17635pUx:S17635pUx1qgz4hy,variant:\"XmHsfOSMk\",ZM9GGyL3Q:1},zSoFcG8If:{S17635pUx:S17635pUx1qgz4hy,variant:\"XmHsfOSMk\"},zZgkwW_U6:{S17635pUx:S17635pUx1qgz4hy,variant:\"XmHsfOSMk\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sd5q5g-container\",layoutDependency:layoutDependency,layoutId:\"K5bbhX28U-container\",children:/*#__PURE__*/_jsx(OrderedListItem,{fYNHBKMRX:\"rgba(187, 221, 255, 0)\",height:\"100%\",id:\"K5bbhX28U\",jZwxUkSuW:false,kYTv4Zelc:f6WCGGoC7,layoutId:\"K5bbhX28U\",R8vdViyVv:Tz39DfCYe,S17635pUx:S17635pUx7nflnp,style:{width:\"100%\"},variant:\"mkcXmubvR\",width:\"100%\",ZM9GGyL3Q:.5,...addPropertyOverrides({OLR5J6rqz:{fYNHBKMRX:\"rgba(214, 201, 177, 0.5)\",jZwxUkSuW:true,ZM9GGyL3Q:1},tRfgTC2uQ:{fYNHBKMRX:\"rgb(234, 228, 216)\",jZwxUkSuW:true,S17635pUx:undefined,variant:\"XmHsfOSMk\",ZM9GGyL3Q:1},u5TeNymhm:{S17635pUx:S17635pUx16ej8ng,variant:\"XmHsfOSMk\"},ZNU8laudB:{S17635pUx:S17635pUx16ej8ng,variant:\"XmHsfOSMk\"},zSoFcG8If:{S17635pUx:S17635pUx16ej8ng,variant:\"XmHsfOSMk\"},zZgkwW_U6:{S17635pUx:S17635pUx16ej8ng,variant:\"XmHsfOSMk\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ky4s8-container\",layoutDependency:layoutDependency,layoutId:\"w2uVSPZk7-container\",children:/*#__PURE__*/_jsx(OrderedListItem,{fYNHBKMRX:\"rgba(187, 221, 255, 0)\",height:\"100%\",id:\"w2uVSPZk7\",jZwxUkSuW:false,kYTv4Zelc:vD39SOnhQ,layoutId:\"w2uVSPZk7\",R8vdViyVv:o8K0yKCzZ,S17635pUx:S17635pUx1i7o5pc,style:{width:\"100%\"},variant:\"mkcXmubvR\",width:\"100%\",ZM9GGyL3Q:.5,...addPropertyOverrides({tRfgTC2uQ:{S17635pUx:S17635pUxmnnecz,variant:\"XmHsfOSMk\"},u5TeNymhm:{fYNHBKMRX:\"rgb(234, 228, 216)\",jZwxUkSuW:true,S17635pUx:S17635pUxmnnecz,variant:\"XmHsfOSMk\",ZM9GGyL3Q:1},wApZvbsVW:{fYNHBKMRX:\"rgba(214, 201, 177, 0.5)\",jZwxUkSuW:true,ZM9GGyL3Q:1},ZNU8laudB:{S17635pUx:S17635pUxmnnecz,variant:\"XmHsfOSMk\"},zSoFcG8If:{S17635pUx:S17635pUxmnnecz,variant:\"XmHsfOSMk\"},zZgkwW_U6:{S17635pUx:S17635pUxmnnecz,variant:\"XmHsfOSMk\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-10fukzw\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"SpXOQwUDK\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(R9w_ovEsO)},className:\"framer-1pauqmk\",\"data-framer-name\":\"5 Image\",layoutDependency:layoutDependency,layoutId:\"LG02Pinic\",style:{opacity:0},variants:{u5TeNymhm:{opacity:1},wApZvbsVW:{opacity:1}},...addPropertyOverrides({u5TeNymhm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:1332,pixelHeight:992,pixelWidth:1332,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/lmhc1hd4FAIwRTJIt0ilfuVWuc.png\",srcSet:\"https://framerusercontent.com/images/lmhc1hd4FAIwRTJIt0ilfuVWuc.png?scale-down-to=512 512w,https://framerusercontent.com/images/lmhc1hd4FAIwRTJIt0ilfuVWuc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lmhc1hd4FAIwRTJIt0ilfuVWuc.png 1332w\"}},wApZvbsVW:{background:{alt:\"Beveiliging\",fit:\"fill\",intrinsicHeight:1620,intrinsicWidth:2160,pixelHeight:1620,pixelWidth:2160,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/mbe5WDdMuFYFWdmLuFdiobYr5U.jpeg\",srcSet:\"https://framerusercontent.com/images/mbe5WDdMuFYFWdmLuFdiobYr5U.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mbe5WDdMuFYFWdmLuFdiobYr5U.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mbe5WDdMuFYFWdmLuFdiobYr5U.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mbe5WDdMuFYFWdmLuFdiobYr5U.jpeg 2160w\"}},ZNU8laudB:{background:{alt:\"Beveiligde deurvergrendeling\",fit:\"fill\",intrinsicHeight:313,intrinsicWidth:514,pixelHeight:313,pixelWidth:514,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/zcAoDBkTiPvVYVJUsxyIaccF0VM.png\",srcSet:\"https://framerusercontent.com/images/zcAoDBkTiPvVYVJUsxyIaccF0VM.png?scale-down-to=512 512w,https://framerusercontent.com/images/zcAoDBkTiPvVYVJUsxyIaccF0VM.png 514w\"}},zZgkwW_U6:{background:{alt:\"Deurklink met beveiliging\",fit:\"fill\",intrinsicHeight:319,intrinsicWidth:514,pixelHeight:319,pixelWidth:514,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/QJEqfmJUtkbKN4y5T44NlHwPRE.png\",srcSet:\"https://framerusercontent.com/images/QJEqfmJUtkbKN4y5T44NlHwPRE.png?scale-down-to=512 512w,https://framerusercontent.com/images/QJEqfmJUtkbKN4y5T44NlHwPRE.png 514w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(XjxbaG498)},className:\"framer-1xqfdo5\",\"data-framer-name\":\"4 Image\",layoutDependency:layoutDependency,layoutId:\"GvO_Z6p4J\",style:{opacity:0},variants:{OLR5J6rqz:{opacity:1},tRfgTC2uQ:{opacity:1}},...addPropertyOverrides({OLR5J6rqz:{background:{alt:\"Goede bereikbaarheid vlakbij Utrecht - Centraal Station\",intrinsicHeight:1280,intrinsicWidth:1920,pixelHeight:1280,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/E8rQaXaoiEZu4Y0w1gZLZN794U.jpg\",srcSet:\"https://framerusercontent.com/images/E8rQaXaoiEZu4Y0w1gZLZN794U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/E8rQaXaoiEZu4Y0w1gZLZN794U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/E8rQaXaoiEZu4Y0w1gZLZN794U.jpg 1920w\"}},tRfgTC2uQ:{background:{alt:\"Goede bereikbaarheid, vlakbij Utrecht - Centraal Station\",fit:\"fill\",intrinsicHeight:319,intrinsicWidth:517,pixelHeight:319,pixelWidth:517,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/blkaLz7b5FHqNcAN6gt2udwDgE8.png\",srcSet:\"https://framerusercontent.com/images/blkaLz7b5FHqNcAN6gt2udwDgE8.png?scale-down-to=512 512w,https://framerusercontent.com/images/blkaLz7b5FHqNcAN6gt2udwDgE8.png 517w\"}},ZNU8laudB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:313,intrinsicWidth:515,pixelHeight:313,pixelWidth:515,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/fvAzaHaQXg8U3jouLCMjGQ9ty8.png\",srcSet:\"https://framerusercontent.com/images/fvAzaHaQXg8U3jouLCMjGQ9ty8.png?scale-down-to=512 512w,https://framerusercontent.com/images/fvAzaHaQXg8U3jouLCMjGQ9ty8.png 515w\"}},zZgkwW_U6:{background:{alt:\"Keuken met luxe afwerking\",fit:\"fill\",intrinsicHeight:313,intrinsicWidth:514,pixelHeight:313,pixelWidth:514,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/jzt4x5OmoMqkB4CPdnhJJ2cnDw.png\",srcSet:\"https://framerusercontent.com/images/jzt4x5OmoMqkB4CPdnhJJ2cnDw.png?scale-down-to=512 512w,https://framerusercontent.com/images/jzt4x5OmoMqkB4CPdnhJJ2cnDw.png 514w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(beve5qBEX)},className:\"framer-capsz4\",\"data-framer-name\":\"3 Image\",layoutDependency:layoutDependency,layoutId:\"Tc_Psv_NM\",style:{opacity:0},variants:{FX0kVKxn0:{opacity:1},ZNU8laudB:{opacity:1}},...addPropertyOverrides({C9BTPwGhI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2880,intrinsicWidth:2160,pixelHeight:2880,pixelWidth:2160,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/W2tg43e5ybyqowleUav1khwnGlw.jpeg\",srcSet:\"https://framerusercontent.com/images/W2tg43e5ybyqowleUav1khwnGlw.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/W2tg43e5ybyqowleUav1khwnGlw.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/W2tg43e5ybyqowleUav1khwnGlw.jpeg 2160w\"}},FX0kVKxn0:{background:{alt:\"\",intrinsicHeight:427,intrinsicWidth:640,pixelHeight:498,pixelWidth:792,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/ldZ5iY4InrjyS3D8hdyRAH8Xc.png\",srcSet:\"https://framerusercontent.com/images/ldZ5iY4InrjyS3D8hdyRAH8Xc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ldZ5iY4InrjyS3D8hdyRAH8Xc.png 792w\"}},OLR5J6rqz:{background:{alt:\"\",fit:\"fill\"}},u5TeNymhm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:994,intrinsicWidth:1338,pixelHeight:994,pixelWidth:1338,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/SvPz3ZCa10Ym9inZ9L2lLliNmk.png\",srcSet:\"https://framerusercontent.com/images/SvPz3ZCa10Ym9inZ9L2lLliNmk.png?scale-down-to=512 512w,https://framerusercontent.com/images/SvPz3ZCa10Ym9inZ9L2lLliNmk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SvPz3ZCa10Ym9inZ9L2lLliNmk.png 1338w\"}},ZNU8laudB:{background:{alt:\"Man met barbell in sportschool\",fit:\"fill\",intrinsicHeight:243,intrinsicWidth:351,pixelHeight:663,pixelWidth:1046,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/ovtXLp9SH92rfpZTBOZ8zwawpu0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ovtXLp9SH92rfpZTBOZ8zwawpu0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ovtXLp9SH92rfpZTBOZ8zwawpu0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ovtXLp9SH92rfpZTBOZ8zwawpu0.png 1046w\"}},zZgkwW_U6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:354,pixelHeight:248,pixelWidth:354,src:\"https://framerusercontent.com/images/pRanaBtGVM5LJTOR6YvETZjlwc.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed(),children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:427,intrinsicWidth:640,pixelHeight:427,pixelWidth:640,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/AOcBhRjHr6FxxBQkMuG8b8yHO4.jpg\",srcSet:\"https://framerusercontent.com/images/AOcBhRjHr6FxxBQkMuG8b8yHO4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AOcBhRjHr6FxxBQkMuG8b8yHO4.jpg 640w\"},className:\"framer-18ouavm\",\"data-framer-name\":\"2 Image\",\"data-highlight\":true,id:`${layoutId}-18ouavm`,layoutDependency:layoutDependency,layoutId:\"J2fa8NHd1\",onMouseEnter:onMouseEnter1gx595p(overlay),ref:ref2,style:{opacity:0},variants:{C9BTPwGhI:{opacity:1},zZgkwW_U6:{opacity:1}},...addPropertyOverrides({C9BTPwGhI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:427,intrinsicWidth:640,pixelHeight:506,pixelWidth:755,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/0wKVVvYZU2V2NrNbnJ1hTOml3Bc.png\",srcSet:\"https://framerusercontent.com/images/0wKVVvYZU2V2NrNbnJ1hTOml3Bc.png?scale-down-to=512 512w,https://framerusercontent.com/images/0wKVVvYZU2V2NrNbnJ1hTOml3Bc.png 755w\"}},FX0kVKxn0:{background:{alt:\"\",intrinsicHeight:427,intrinsicWidth:640,pixelHeight:500,pixelWidth:787,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/PAAReRrYfZD9IFm7qquwYWcZPI.png\",srcSet:\"https://framerusercontent.com/images/PAAReRrYfZD9IFm7qquwYWcZPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/PAAReRrYfZD9IFm7qquwYWcZPI.png 787w\"}},ZNU8laudB:{background:{alt:\"Keuken met luxe, eigentijdse afwerking\",fit:\"fill\",intrinsicHeight:427,intrinsicWidth:640,pixelHeight:427,pixelWidth:640,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/AOcBhRjHr6FxxBQkMuG8b8yHO4.jpg\",srcSet:\"https://framerusercontent.com/images/AOcBhRjHr6FxxBQkMuG8b8yHO4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AOcBhRjHr6FxxBQkMuG8b8yHO4.jpg 640w\"}},zZgkwW_U6:{background:{alt:\"\",intrinsicHeight:427,intrinsicWidth:640,pixelHeight:500,pixelWidth:752,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/AY5cepf9biIBj1Qx7J9IC5j3kM.png\",srcSet:\"https://framerusercontent.com/images/AY5cepf9biIBj1Qx7J9IC5j3kM.png?scale-down-to=512 512w,https://framerusercontent.com/images/AY5cepf9biIBj1Qx7J9IC5j3kM.png 752w\"}}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-18ouavm`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1g794kd\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"rUBD03hZw\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"}})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Appartement met modern interieur\",fit:\"fill\",intrinsicHeight:427,intrinsicWidth:640,pixelHeight:698,pixelWidth:1031,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/T6hyoZpKGyX9vjUosjEN7GHLX4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/T6hyoZpKGyX9vjUosjEN7GHLX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/T6hyoZpKGyX9vjUosjEN7GHLX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T6hyoZpKGyX9vjUosjEN7GHLX4.png 1031w\"},className:\"framer-1vdv9nd\",\"data-framer-name\":\"1 Image\",layoutDependency:layoutDependency,layoutId:\"mzAUeHVOS\",style:{opacity:1},variants:{OLR5J6rqz:{opacity:0},u5TeNymhm:{opacity:0},wApZvbsVW:{opacity:0},ZNU8laudB:{opacity:0}},...addPropertyOverrides({tRfgTC2uQ:{background:{alt:\"Appartement met modern interieur\",fit:\"fill\",intrinsicHeight:242,intrinsicWidth:350,pixelHeight:242,pixelWidth:350,src:\"https://framerusercontent.com/images/WikNcpHu8kJG6toLI54LNy5CEs.png\"}},u5TeNymhm:{background:{alt:\"\",intrinsicHeight:1004,intrinsicWidth:1338,positionX:\"center\",positionY:\"center\"}},ZNU8laudB:{background:{alt:\"\",intrinsicHeight:248,intrinsicWidth:354,positionX:\"center\",positionY:\"center\"}}},baseVariant,gestureVariant)})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xnZQ8.framer-z6vdz1, .framer-xnZQ8 .framer-z6vdz1 { display: block; }\",\".framer-xnZQ8.framer-9apper { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 0px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-xnZQ8 .framer-1x9n5ji { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 96px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-xnZQ8 .framer-146gj1t-container, .framer-xnZQ8 .framer-1sqbzyj-container, .framer-xnZQ8 .framer-lb5so3-container, .framer-xnZQ8 .framer-1sd5q5g-container, .framer-xnZQ8 .framer-5ky4s8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-xnZQ8 .framer-10fukzw { flex: 1 0 0px; height: 500px; overflow: hidden; position: relative; width: 1px; }\",\".framer-xnZQ8 .framer-1pauqmk, .framer-xnZQ8 .framer-1xqfdo5, .framer-xnZQ8 .framer-capsz4, .framer-xnZQ8 .framer-18ouavm, .framer-xnZQ8 .framer-1vdv9nd { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-xnZQ8 .framer-1g794kd { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xnZQ8.framer-9apper, .framer-xnZQ8 .framer-1x9n5ji { gap: 0px; } .framer-xnZQ8.framer-9apper > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xnZQ8.framer-9apper > :first-child { margin-left: 0px; } .framer-xnZQ8.framer-9apper > :last-child { margin-right: 0px; } .framer-xnZQ8 .framer-1x9n5ji > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xnZQ8 .framer-1x9n5ji > :first-child { margin-top: 0px; } .framer-xnZQ8 .framer-1x9n5ji > :last-child { margin-bottom: 0px; } }\",\".framer-xnZQ8.framer-v-n13h5h .framer-18ouavm, .framer-xnZQ8.framer-v-rp8t91 .framer-18ouavm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xnZQ8.framer-v-n13h5h .framer-18ouavm { gap: 0px; } .framer-xnZQ8.framer-v-n13h5h .framer-18ouavm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xnZQ8.framer-v-n13h5h .framer-18ouavm > :first-child { margin-left: 0px; } .framer-xnZQ8.framer-v-n13h5h .framer-18ouavm > :last-child { margin-right: 0px; } }\",\".framer-xnZQ8.framer-v-1gw5o1n.framer-9apper, .framer-xnZQ8.framer-v-rp8t91.framer-9apper, .framer-xnZQ8.framer-v-1xr9q1o.framer-9apper, .framer-xnZQ8.framer-v-ebo43t.framer-9apper, .framer-xnZQ8.framer-v-173a2rn.framer-9apper { flex-direction: column; gap: 48px; width: 810px; }\",\".framer-xnZQ8.framer-v-1gw5o1n .framer-1x9n5ji, .framer-xnZQ8.framer-v-rp8t91 .framer-1x9n5ji, .framer-xnZQ8.framer-v-1xr9q1o .framer-1x9n5ji, .framer-xnZQ8.framer-v-ebo43t .framer-1x9n5ji, .framer-xnZQ8.framer-v-173a2rn .framer-1x9n5ji { align-self: unset; flex: none; height: min-content; padding: 0px; width: 100%; }\",\".framer-xnZQ8.framer-v-1gw5o1n .framer-10fukzw, .framer-xnZQ8.framer-v-rp8t91 .framer-10fukzw, .framer-xnZQ8.framer-v-1xr9q1o .framer-10fukzw, .framer-xnZQ8.framer-v-ebo43t .framer-10fukzw, .framer-xnZQ8.framer-v-173a2rn .framer-10fukzw { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xnZQ8.framer-v-1gw5o1n.framer-9apper { gap: 0px; } .framer-xnZQ8.framer-v-1gw5o1n.framer-9apper > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xnZQ8.framer-v-1gw5o1n.framer-9apper > :first-child { margin-top: 0px; } .framer-xnZQ8.framer-v-1gw5o1n.framer-9apper > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xnZQ8.framer-v-rp8t91.framer-9apper, .framer-xnZQ8.framer-v-rp8t91 .framer-18ouavm { gap: 0px; } .framer-xnZQ8.framer-v-rp8t91.framer-9apper > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xnZQ8.framer-v-rp8t91.framer-9apper > :first-child { margin-top: 0px; } .framer-xnZQ8.framer-v-rp8t91.framer-9apper > :last-child { margin-bottom: 0px; } .framer-xnZQ8.framer-v-rp8t91 .framer-18ouavm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xnZQ8.framer-v-rp8t91 .framer-18ouavm > :first-child { margin-left: 0px; } .framer-xnZQ8.framer-v-rp8t91 .framer-18ouavm > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xnZQ8.framer-v-1xr9q1o.framer-9apper { gap: 0px; } .framer-xnZQ8.framer-v-1xr9q1o.framer-9apper > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xnZQ8.framer-v-1xr9q1o.framer-9apper > :first-child { margin-top: 0px; } .framer-xnZQ8.framer-v-1xr9q1o.framer-9apper > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xnZQ8.framer-v-ebo43t.framer-9apper { gap: 0px; } .framer-xnZQ8.framer-v-ebo43t.framer-9apper > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xnZQ8.framer-v-ebo43t.framer-9apper > :first-child { margin-top: 0px; } .framer-xnZQ8.framer-v-ebo43t.framer-9apper > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xnZQ8.framer-v-173a2rn.framer-9apper { gap: 0px; } .framer-xnZQ8.framer-v-173a2rn.framer-9apper > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xnZQ8.framer-v-173a2rn.framer-9apper > :first-child { margin-top: 0px; } .framer-xnZQ8.framer-v-173a2rn.framer-9apper > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 616\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"C9BTPwGhI\":{\"layout\":[\"fixed\",\"auto\"]},\"FX0kVKxn0\":{\"layout\":[\"fixed\",\"auto\"]},\"OLR5J6rqz\":{\"layout\":[\"fixed\",\"auto\"]},\"wApZvbsVW\":{\"layout\":[\"fixed\",\"auto\"]},\"zSoFcG8If\":{\"layout\":[\"fixed\",\"auto\"]},\"zZgkwW_U6\":{\"layout\":[\"fixed\",\"auto\"]},\"ZNU8laudB\":{\"layout\":[\"fixed\",\"auto\"]},\"tRfgTC2uQ\":{\"layout\":[\"fixed\",\"auto\"]},\"u5TeNymhm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"beve5qBEX\":\"_3Image\",\"XjxbaG498\":\"_4Image\",\"R9w_ovEsO\":\"_5Image\",\"n7xEqq9GX\":\"ruimtelijkeIndeling\",\"vuGXAfNvB\":\"omschrijving1\",\"c_7EsozVi\":\"luxeAfwerking\",\"NDDEWaQ3T\":\"omschrijving2\",\"DMOB6Qgzd\":\"titel3\",\"Oe4YD9PFI\":\"omschrijving3\",\"f6WCGGoC7\":\"titel4\",\"Tz39DfCYe\":\"omschrijving4\",\"vD39SOnhQ\":\"titel5\",\"o8K0yKCzZ\":\"omschrijving5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereODyo7sWT=withCSS(Component,css,\"framer-xnZQ8\");export default FramereODyo7sWT;FramereODyo7sWT.displayName=\"Service List\";FramereODyo7sWT.defaultProps={height:616,width:1440};addPropertyControls(FramereODyo7sWT,{variant:{options:[\"bCJFVNhpy\",\"C9BTPwGhI\",\"FX0kVKxn0\",\"OLR5J6rqz\",\"wApZvbsVW\",\"zSoFcG8If\",\"zZgkwW_U6\",\"ZNU8laudB\",\"tRfgTC2uQ\",\"u5TeNymhm\"],optionTitles:[\"Large\",\"Large - 2 Selected\",\"Large - 3 Selected\",\"Large - 4 Selected\",\"Large - 5 Selected\",\"Small\",\"Small - 2 Selected\",\"Small - 3 Selected\",\"Small - 4 Selected\",\"Small - 5 Selected\"],title:\"Variant\",type:ControlType.Enum},beve5qBEX:{title:\"3 Image\",type:ControlType.ResponsiveImage},XjxbaG498:{title:\"4 Image\",type:ControlType.ResponsiveImage},R9w_ovEsO:{title:\"5 Image\",type:ControlType.ResponsiveImage},n7xEqq9GX:{defaultValue:\"Ruimtelijke indeling\",title:\"Ruimtelijke indeling\",type:ControlType.String},vuGXAfNvB:{defaultValue:\"Elk appartement is zorgvuldig ontworpen om ruimte en functionaliteit te maximaliseren.\",title:\"Omschrijving 1\",type:ControlType.String},c_7EsozVi:{defaultValue:\"Luxe afwerking\",title:\"Luxe afwerking\",type:ControlType.String},NDDEWaQ3T:{defaultValue:\"We streven naar perfectie in elk detail. Daarom zijn onze appartementen voorzien van hoogwaardige materialen en afwerkingen. Denk aan luxe vloeren, moderne keukens, elegant sanitair en nog veel meer.\",title:\"Omschrijving 2\",type:ControlType.String},DMOB6Qgzd:{defaultValue:\"Voorzieningen\",placeholder:\"\",title:\"Titel 3\",type:ControlType.String},Oe4YD9PFI:{defaultValue:\"Onze appartementencomplexen bieden een scala aan voorzieningen om het woongenot te verbeteren. Geniet van een fitnessruimte, gemeenschappelijke (werk)ruimtes, dakterras, tuinen of een speeltuin voor de kinderen.\",title:\"Omschrijving 3\",type:ControlType.String},f6WCGGoC7:{defaultValue:\"Locatie\",title:\"Titel 4\",type:ControlType.String},Tz39DfCYe:{defaultValue:\"Onze appartementen zijn strategisch gelegen in Houten met goede bereikbaarheid van het openbaar vervoer, winkels, restaurants, parken en andere belangrijke voorzieningen ben je altijd dichtbij alles wat je nodig hebt.\",title:\"Omschrijving 4\",type:ControlType.String},vD39SOnhQ:{defaultValue:\"Veiligheid en beveiliging\",title:\"Titel 5\",type:ControlType.String},o8K0yKCzZ:{defaultValue:\"Jouw veiligheid is onze prioriteit. Onze appartementencomplexen zijn uitgerust met moderne beveiligingssystemen, bewaking en beveiligde toegangspunten, zodat je met een gerust hart kunt wonen.\",title:\"Omschrijving 5\",type:ControlType.String}});addFonts(FramereODyo7sWT,[{explicitInter:true,fonts:[]},...OrderedListItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereODyo7sWT\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C9BTPwGhI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FX0kVKxn0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OLR5J6rqz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wApZvbsVW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zSoFcG8If\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zZgkwW_U6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZNU8laudB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tRfgTC2uQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u5TeNymhm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"beve5qBEX\\\":\\\"_3Image\\\",\\\"XjxbaG498\\\":\\\"_4Image\\\",\\\"R9w_ovEsO\\\":\\\"_5Image\\\",\\\"n7xEqq9GX\\\":\\\"ruimtelijkeIndeling\\\",\\\"vuGXAfNvB\\\":\\\"omschrijving1\\\",\\\"c_7EsozVi\\\":\\\"luxeAfwerking\\\",\\\"NDDEWaQ3T\\\":\\\"omschrijving2\\\",\\\"DMOB6Qgzd\\\":\\\"titel3\\\",\\\"Oe4YD9PFI\\\":\\\"omschrijving3\\\",\\\"f6WCGGoC7\\\":\\\"titel4\\\",\\\"Tz39DfCYe\\\":\\\"omschrijving4\\\",\\\"vD39SOnhQ\\\":\\\"titel5\\\",\\\"o8K0yKCzZ\\\":\\\"omschrijving5\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"616\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,optimizeAppear,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import SubmitButton from\"https://framerusercontent.com/modules/MzEVLk1keIMeijYoJIKe/11QzISY1bPcLhsYI38eW/SubmitButton.js\";import FormField from\"https://framerusercontent.com/modules/V59wttelZuiLRosougLs/0cKvEIKUKQ0lXLtXDCXY/FormField.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Menu from\"#framer/local/canvasComponent/Baa5_uFoa/Baa5_uFoa.js\";import Button from\"#framer/local/canvasComponent/bqxIQHR7K/bqxIQHR7K.js\";import ServiceList from\"#framer/local/canvasComponent/eODyo7sWT/eODyo7sWT.js\";import Footer from\"#framer/local/canvasComponent/j6LDmZXvp/j6LDmZXvp.js\";import*as sharedStyle2 from\"#framer/local/css/O1L0oy_Yz/O1L0oy_Yz.js\";import*as sharedStyle1 from\"#framer/local/css/Rdrc9Nr49/Rdrc9Nr49.js\";import*as sharedStyle from\"#framer/local/css/sQOVRiCjq/sQOVRiCjq.js\";import*as sharedStyle3 from\"#framer/local/css/zIVhDGTsn/zIVhDGTsn.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MenuFonts=getFonts(Menu);const MenuWithVariantAppearEffect=withVariantAppearEffect(Menu);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const ServiceListFonts=getFonts(ServiceList);const SlideshowFonts=getFonts(Slideshow);const FormFieldFonts=getFonts(FormField);const SubmitButtonFonts=getFonts(SubmitButton);const FooterFonts=getFonts(Footer);const cycleOrder=[\"WQLkyLRf1\",\"OATCO_cyv\",\"x30rUr7hf\",\"Gi3sq8mGh\"];const breakpoints={Gi3sq8mGh:\"(max-width: 809px)\",OATCO_cyv:\"(min-width: 1024px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\",x30rUr7hf:\"(min-width: 810px) and (max-width: 1023px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1vgv8\";const variantClassNames={Gi3sq8mGh:\"framer-v-svt1mj\",OATCO_cyv:\"framer-v-1ihlg0e\",WQLkyLRf1:\"framer-v-72rtr7\",x30rUr7hf:\"framer-v-l95bir\"};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:100,delay:.5,mass:10,stiffness:200,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:300};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:300};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:500};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:500};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop XL\":\"WQLkyLRf1\",Desktop:\"OATCO_cyv\",Phone:\"Gi3sq8mGh\",Tablet:\"x30rUr7hf\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-1vgv8`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-1vgv8`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Gi3sq8mGh\")return true;return!isBrowser();};const isDisplayed1=()=>{if(baseVariant===\"Gi3sq8mGh\")return!isBrowser();return true;};const id=useRouteElementId(\"MtHL94yXv\");const id1=useRouteElementId(\"nUAtPeaUB\");const ref4=React.useRef(null);const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"OATCO_cyv\")return true;return!isBrowser();};const id2=useRouteElementId(\"n_5Xk_Oym\");const ref5=React.useRef(null);const isDisplayed3=()=>{if(baseVariant===\"OATCO_cyv\")return!isBrowser();return true;};const id3=useRouteElementId(\"BmIy3qhzf\");const isDisplayed4=()=>{if(baseVariant===\"x30rUr7hf\")return!isBrowser();return true;};const isDisplayed5=()=>{if(baseVariant===\"x30rUr7hf\")return true;return!isBrowser();};const isDisplayed6=()=>{if([\"OATCO_cyv\",\"x30rUr7hf\",\"Gi3sq8mGh\"].includes(baseVariant))return!isBrowser();return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u3b37z-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{__framer__targets:[{ref:ref2,target:\"k2m9Xjmmu\"},{ref:ref3,target:\"WeNLyESeJ\"}],variant:\"WeNLyESeJ\"}},children:/*#__PURE__*/_jsx(MenuWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"KIxlsqDQh\"},{ref:ref3,target:\"lkMoelm9b\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"GV5QKcDtF\",layoutId:\"GV5QKcDtF\",style:{height:\"100%\",width:\"100%\"},variant:\"lkMoelm9b\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{\"data-framer-appear-id\":\"22tbbp\",animate:optimizeAppear(\"animate\",\"22tbbp\",animation1,\"svt1mj\"),initial:optimizeAppear(\"initial\",\"22tbbp\",animation2,\"svt1mj\")},OATCO_cyv:{\"data-framer-appear-id\":\"14qcvum\",animate:optimizeAppear(\"animate\",\"14qcvum\",animation1,\"1ihlg0e\"),initial:optimizeAppear(\"initial\",\"14qcvum\",animation2,\"1ihlg0e\")},x30rUr7hf:{\"data-framer-appear-id\":\"vsjb7k\",animate:optimizeAppear(\"animate\",\"vsjb7k\",animation1,\"l95bir\"),initial:optimizeAppear(\"initial\",\"vsjb7k\",animation2,\"l95bir\")}},children:/*#__PURE__*/_jsxs(motion.section,{animate:optimizeAppear(\"animate\",\"122ryai\",animation1,\"72rtr7\"),className:\"framer-122ryai\",\"data-framer-appear-id\":\"122ryai\",\"data-framer-name\":\"Hero\",exit:animation,initial:optimizeAppear(\"initial\",\"122ryai\",animation2,\"72rtr7\"),name:\"Hero\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xsiwcc\",\"data-framer-name\":\"Color Block\",name:\"Color Block\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s8kaxh\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{\"data-framer-appear-id\":\"1pt2raz\",animate:optimizeAppear(\"animate\",\"1pt2raz\",animation4,\"svt1mj\"),exit:animation6,initial:optimizeAppear(\"initial\",\"1pt2raz\",animation7,\"svt1mj\")},OATCO_cyv:{\"data-framer-appear-id\":\"zvglbe\",animate:optimizeAppear(\"animate\",\"zvglbe\",animation4,\"1ihlg0e\"),initial:optimizeAppear(\"initial\",\"zvglbe\",animation5,\"1ihlg0e\")},x30rUr7hf:{\"data-framer-appear-id\":\"18vpchn\",animate:optimizeAppear(\"animate\",\"18vpchn\",animation4,\"l95bir\"),initial:optimizeAppear(\"initial\",\"18vpchn\",animation5,\"l95bir\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"du9rk8\",animation4,\"72rtr7\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1cwdnm1\",\"data-styles-preset\":\"sQOVRiCjq\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-780b7191-a190-46a9-bc4c-fb589d8f8d51, rgb(44, 44, 44))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"233 betaalbare  \"})}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-780b7191-a190-46a9-bc4c-fb589d8f8d51, rgb(44, 44, 44))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"appartementen \"})}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-780b7191-a190-46a9-bc4c-fb589d8f8d51, rgb(44, 44, 44))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"in Houten\"})})]})}),className:\"framer-du9rk8\",\"data-framer-appear-id\":\"du9rk8\",\"data-framer-name\":\"Title\",exit:animation3,fonts:[\"Inter\",\"Inter-Bold\"],initial:optimizeAppear(\"initial\",\"du9rk8\",animation5,\"72rtr7\"),name:\"Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{width:\"calc(min(100vw, 1440px) - 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nk0ou0-container hidden-72rtr7 hidden-1ihlg0e hidden-l95bir\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"dg2IsJ2pv\",layoutId:\"dg2IsJ2pv\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-780b7191-a190-46a9-bc4c-fb589d8f8d51, rgb(44, 44, 44))\"},children:\"Betaalbare koop appartementen centraal gelegen in Houten. Modern en toegankelijk.\"})}),fonts:[\"GF;Poppins-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-gxb5ml\",\"data-styles-preset\":\"Rdrc9Nr49\",style:{\"--framer-text-color\":\"var(--token-780b7191-a190-46a9-bc4c-fb589d8f8d51, rgb(44, 44, 44))\"},children:\"Betaalbare appartementen centraal gelegen in Houten. Modern en toegankelijk.\"})}),className:\"framer-1lacbvs\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1st60tg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfogq8\",\"data-border\":true,children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OATCO_cyv:{width:\"calc((min(100vw, 1440px) - 48px) * 0.75)\"},x30rUr7hf:{width:\"calc((min(100vw, 1440px) - 48px) * 0.75)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(100vw, 1440px) - 48px) * 0.4256 - 48px, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pjzkvf-container hidden-svt1mj\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"fiJMzer98\",layoutId:\"fiJMzer98\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uz6by4\",\"data-styles-preset\":\"O1L0oy_Yz\",style:{\"--framer-text-alignment\":\"left\"},children:\"Onze locatie biedt ook woningzoekers met een modaal inkomen de mogelijkheid om een modern appartement te kopen.\"})}),className:\"framer-1fbge45\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{background:{alt:\"Kromme Schaft 3, Houten\",fit:\"fill\",intrinsicHeight:1256,intrinsicWidth:1646,pixelHeight:1080,pixelWidth:1920,sizes:\"calc(min(100vw, 1440px) - 24px)\",src:\"https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png\",srcSet:\"https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png?scale-down-to=512 512w,https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png 1920w\"}},OATCO_cyv:{background:{alt:\"Kromme Schaft 3, Houten\",fit:\"fill\",intrinsicHeight:1256,intrinsicWidth:1646,pixelHeight:1080,pixelWidth:1920,sizes:\"calc(min(100vw, 1440px) - 48px)\",src:\"https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png\",srcSet:\"https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png?scale-down-to=512 512w,https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png 1920w\"}},x30rUr7hf:{background:{alt:\"Kromme Schaft 3, Houten\",fit:\"fill\",intrinsicHeight:1256,intrinsicWidth:1646,pixelHeight:1080,pixelWidth:1920,sizes:\"calc(min(100vw, 1440px) - 48px)\",src:\"https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png\",srcSet:\"https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png?scale-down-to=512 512w,https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Kromme Schaft 3, Houten\",fit:\"fill\",intrinsicHeight:1256,intrinsicWidth:1646,pixelHeight:1080,pixelWidth:1920,sizes:\"calc((min(100vw, 1440px) - 48px) * 0.5744)\",src:\"https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png\",srcSet:\"https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png?scale-down-to=512 512w,https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E06Y8VWx64sAzJ7JlqQrAODPo8.png 1920w\"},className:\"framer-1mp4tv1\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-paa1jy\",\"data-framer-name\":\"About\",name:\"About\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3lk510\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-9027ib\",\"data-styles-preset\":\"zIVhDGTsn\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"233 appartementen\"}),\" \"]})}),className:\"framer-1xn1gvw hidden-svt1mj\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n6807m\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9027ib\",\"data-styles-preset\":\"zIVhDGTsn\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"al vanaf \u20AC180.000\"})})}),className:\"framer-uu0il4 hidden-svt1mj\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-780b7191-a190-46a9-bc4c-fb589d8f8d51, rgb(44, 44, 44))\"},children:[\"270 appartementen\",/*#__PURE__*/_jsx(\"br\",{}),\"al vanaf \u20AC180.000\"]})}),className:\"framer-11lnelw hidden-72rtr7 hidden-1ihlg0e hidden-l95bir\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j72cii\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bxtzwj\",\"data-framer-name\":\"Color Block\",name:\"Color Block\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rqcca2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uz6by4\",\"data-styles-preset\":\"O1L0oy_Yz\",children:\"Betaalbare starters of doorstarterswoningen op korte termijn realiseren: dat is ons doel. Efficient gebruik maken van bestaande ruimte om zo snel mogelijk prachtige appartementen te realiseren, maar wel tegen een betaalbare prijs.\"})}),className:\"framer-120lgs8\",\"data-framer-name\":\"Intro\",fonts:[\"Inter\"],name:\"Intro\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{background:{alt:\"Krantenbericht: 270 Koopappartementen in voormalig KPN gebouw.\",fit:\"fit\",intrinsicHeight:684,intrinsicWidth:651,pixelHeight:684,pixelWidth:651,positionX:\"center\",positionY:\"center\",sizes:\"332px\",src:\"https://framerusercontent.com/images/pt5IScZ68UTVT7wrfewL3aPXC1E.png\",srcSet:\"https://framerusercontent.com/images/pt5IScZ68UTVT7wrfewL3aPXC1E.png 651w\"}},OATCO_cyv:{background:{alt:\"Krantenbericht: 270 Koopappartementen in voormalig KPN gebouw.\",fit:\"fit\",intrinsicHeight:684,intrinsicWidth:651,loading:\"lazy\",pixelHeight:684,pixelWidth:651,positionX:\"center\",positionY:\"center\",sizes:\"calc((min(100vw - 96px, 1440px) - 48px) * 0.4818)\",src:\"https://framerusercontent.com/images/pt5IScZ68UTVT7wrfewL3aPXC1E.png\",srcSet:\"https://framerusercontent.com/images/pt5IScZ68UTVT7wrfewL3aPXC1E.png 651w\"}},x30rUr7hf:{background:{alt:\"Krantenbericht: 270 Koopappartementen in voormalig KPN gebouw.\",fit:\"fit\",intrinsicHeight:684,intrinsicWidth:651,pixelHeight:684,pixelWidth:651,positionX:\"center\",positionY:\"center\",sizes:\"calc((min(100vw - 96px, 1440px) - 48px) * 0.5646)\",src:\"https://framerusercontent.com/images/pt5IScZ68UTVT7wrfewL3aPXC1E.png\",srcSet:\"https://framerusercontent.com/images/pt5IScZ68UTVT7wrfewL3aPXC1E.png 651w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Krantenbericht: 270 Koopappartementen in voormalig KPN gebouw.\",fit:\"fit\",intrinsicHeight:684,intrinsicWidth:651,loading:\"lazy\",pixelHeight:684,pixelWidth:651,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw - 96px, 1440px) - 192px) / 2, 1px)\",src:\"https://framerusercontent.com/images/pt5IScZ68UTVT7wrfewL3aPXC1E.png\",srcSet:\"https://framerusercontent.com/images/pt5IScZ68UTVT7wrfewL3aPXC1E.png 651w\"},className:\"framer-1y0ny54\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-15h1m7j\",\"data-framer-name\":\"Services\",name:\"Services\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9027ib\",\"data-styles-preset\":\"zIVhDGTsn\",style:{\"--framer-text-alignment\":\"left\"},children:\"Over dit project\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9027ib\",\"data-styles-preset\":\"zIVhDGTsn\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Ons concept\"})})}),className:\"framer-ckvxj5\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{width:\"calc(100vw - 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(100vw - 96px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1faq01j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{variant:\"zSoFcG8If\"},x30rUr7hf:{style:{height:\"100%\",width:\"100%\"},variant:\"zSoFcG8If\"}},children:/*#__PURE__*/_jsx(ServiceList,{c_7EsozVi:\"Luxe afwerking\",DMOB6Qgzd:\"Voorzieningen\",f6WCGGoC7:\"Locatie\",height:\"100%\",id:\"vZSqo7wOz\",layoutId:\"vZSqo7wOz\",n7xEqq9GX:\"Ruimtelijke indeling\",NDDEWaQ3T:\"We streven naar perfectie in elk detail. Daarom zijn onze appartementen voorzien van hoogwaardige materialen en afwerkingen. Denk aan luxe vloeren, moderne keukens, elegant sanitair en nog veel meer.\",o8K0yKCzZ:\"Jouw veiligheid is onze prioriteit. Onze appartementencomplexen zijn uitgerust met moderne beveiligingssystemen, bewaking en beveiligde toegangspunten, zodat je met een gerust hart kunt wonen.\",Oe4YD9PFI:\"Onze appartementencomplexen bieden een scala aan voorzieningen om het woongenot te verbeteren. Geniet van een fitnessruimte, gemeenschappelijke (werk)ruimtes, dakterras, tuinen of een speeltuin voor de kinderen.\",style:{width:\"100%\"},Tz39DfCYe:\"Onze appartementen zijn strategisch gelegen in Houten met goede bereikbaarheid van het openbaar vervoer, winkels, restaurants, parken en andere belangrijke voorzieningen ben je altijd dichtbij alles wat je nodig hebt.\",variant:\"bCJFVNhpy\",vD39SOnhQ:\"Veiligheid en beveiliging\",vuGXAfNvB:\"Elk appartement is zorgvuldig ontworpen om ruimte en functionaliteit te maximaliseren.\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-9qza4o\",\"data-framer-name\":\"Featured\",id:id,name:\"Featured\",ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9027ib\",\"data-styles-preset\":\"zIVhDGTsn\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8977b67a-441e-45b9-961b-76c3c8ff6377, rgb(238, 232, 229))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Sfeerimpressie\"})})}),className:\"framer-2nd6yq\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x30rUr7hf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(247, 245, 242))\"},children:\"Deze foto's dienen als sfeerbeelden. De beelden hieronder kunnen afwijken van het definitieve ontwerp van de appartementen.\"})}),fonts:[\"GF;Outfit-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uz6by4\",\"data-styles-preset\":\"O1L0oy_Yz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8977b67a-441e-45b9-961b-76c3c8ff6377, rgb(238, 232, 229))\"},children:\"Let op: onderstaande beelden dienen ter illustratie en kunnen afwijken van het eindresultaat.\"})}),className:\"framer-1cwkst8\",\"data-framer-name\":\"Intro\",fonts:[\"Inter\"],name:\"Intro\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13yt3bb-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"p29HmiaWk\",intervalControl:1.5,itemAmount:1,layoutId:\"p29HmiaWk\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Keuken met luxe afwerking\",fit:\"fill\",intrinsicHeight:794,intrinsicWidth:852,pixelHeight:600,pixelWidth:500,sizes:\"853px\",src:\"https://framerusercontent.com/images/pHz6lYAGOLb5M4Z2aMETZgCEOCw.jpg\",srcSet:\"https://framerusercontent.com/images/pHz6lYAGOLb5M4Z2aMETZgCEOCw.jpg 500w\"},className:\"framer-ymi0yg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Badkamer met luxe, eigentijdse afwerking met marmer\",fit:\"fill\",intrinsicHeight:450,intrinsicWidth:626,pixelHeight:564,pixelWidth:564,sizes:\"853px\",src:\"https://framerusercontent.com/images/w8qVFrde7czx98gbZzpkxzswh9c.jpg\",srcSet:\"https://framerusercontent.com/images/w8qVFrde7czx98gbZzpkxzswh9c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w8qVFrde7czx98gbZzpkxzswh9c.jpg 564w\"},className:\"framer-1fljzqe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1u2ldd4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Kromme Schaft 3, Houten - Buitenaanzicht\",fit:\"stretch\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:564,pixelWidth:564,positionX:\"center\",positionY:\"center\",sizes:\"1031px\",src:\"https://framerusercontent.com/images/15nr6BnwU4KWpDcchwtdaHop8mM.jpg\",srcSet:\"https://framerusercontent.com/images/15nr6BnwU4KWpDcchwtdaHop8mM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/15nr6BnwU4KWpDcchwtdaHop8mM.jpg 564w\"},className:\"framer-xcs66v\",\"data-framer-name\":\"Kromme_Schaft_Houten\",name:\"Kromme_Schaft_Houten\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Appartement met knusse inrichting\",fit:\"fill\",intrinsicHeight:483,intrinsicWidth:640,pixelHeight:549,pixelWidth:887,sizes:\"853px\",src:\"https://framerusercontent.com/images/MeVAr8OyZgl5WkQ1jR4O99vcCk.png\",srcSet:\"https://framerusercontent.com/images/MeVAr8OyZgl5WkQ1jR4O99vcCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/MeVAr8OyZgl5WkQ1jR4O99vcCk.png 887w\"},className:\"framer-b5cytp\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xi4dyp\",\"data-framer-name\":\"Aanmelden\",id:id1,name:\"Aanmelden\",ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ce7qbm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9027ib\",\"data-styles-preset\":\"zIVhDGTsn\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-780b7191-a190-46a9-bc4c-fb589d8f8d51, rgb(44, 44, 44))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Aanmelden\"})})}),className:\"framer-1suqam7\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nhyow7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1edttwb-container\",\"data-framer-name\":\"Dropdown Field\",name:\"Dropdown Field\",children:/*#__PURE__*/_jsx(FormField,{accentColor:\"rgb(0, 117, 255)\",backgroundColor:\"var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(255, 255, 255))\",checkboxText:\"Checkbox\",consentText:\"I agree to the Terms & Conditions.\",dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Selecteer je aanhef...\",emailPlaceholder:\"hello@example.com\",font:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontSize:\"21px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(0, 0, 0)\",gap:10,gapH:10,gapV:10,height:\"100%\",id:\"sgTZNZetP\",invalidStyle:{backgroundColor:\"rgb(255, 245, 245)\",border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},transition:{damping:70,stiffness:1200,type:\"spring\"}},layoutId:\"sgTZNZetP\",max:100,min:0,name:\"dropdownField\",npsButtons:{deselectedColor:\"rgb(240, 240, 240)\",deselectedFontColor:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedColor:\"rgb(0, 117, 255)\",selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"De heer\",\"Mevrouw\",\"Fam.\",\"Anders\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCodeFormat:\"+1\",phoneNumberDefaultCountryCode:\"1\",phoneNumberFormat:\"(123) 456 - 7890\",phoneNumberPlaceholder:\"+1 (123) 456 - 7890\",placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,resizeable:true,sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",size:16},sliderLabel:{position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4},step:1,style:{maxWidth:\"100%\",width:\"100%\"},textAreaDefaultHeight:100,textPlaceholder:\"Type...\",textSelect:false,type:\"dropdown\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1319t1o-container\",\"data-framer-name\":\"Text Area Field\",name:\"Text Area Field\",children:/*#__PURE__*/_jsx(FormField,{accentColor:\"rgb(0, 117, 255)\",backgroundColor:\"var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(255, 255, 255))\",checkboxText:\"Checkbox\",consentText:\"I agree to the Terms & Conditions.\",dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailPlaceholder:\"hello@example.com\",font:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(0, 0, 0)\",gap:10,gapH:10,gapV:10,height:\"100%\",id:\"rBx7p7JfB\",invalidStyle:{backgroundColor:\"rgb(255, 245, 245)\",border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},transition:{damping:70,stiffness:1200,type:\"spring\"}},layoutId:\"rBx7p7JfB\",max:100,min:0,name:\"Voornaam\",npsButtons:{deselectedColor:\"rgb(240, 240, 240)\",deselectedFontColor:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedColor:\"rgb(0, 117, 255)\",selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCodeFormat:\"+1\",phoneNumberDefaultCountryCode:\"1\",phoneNumberFormat:\"(123) 456 - 7890\",phoneNumberPlaceholder:\"+1 (123) 456 - 7890\",placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,resizeable:true,sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",size:16},sliderLabel:{position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4},step:1,style:{maxWidth:\"100%\",width:\"100%\"},textAreaDefaultHeight:100,textPlaceholder:\"Voornaam\",textSelect:false,type:\"input\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bix4cd-container\",\"data-framer-name\":\"Text Area Field\",name:\"Text Area Field\",children:/*#__PURE__*/_jsx(FormField,{accentColor:\"rgb(0, 117, 255)\",backgroundColor:\"var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(255, 255, 255))\",checkboxText:\"Checkbox\",consentText:\"I agree to the Terms & Conditions.\",dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailPlaceholder:\"hello@example.com\",font:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(0, 0, 0)\",gap:10,gapH:10,gapV:10,height:\"100%\",id:\"EdI8ED7i_\",invalidStyle:{backgroundColor:\"rgb(255, 245, 245)\",border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},transition:{damping:70,stiffness:1200,type:\"spring\"}},layoutId:\"EdI8ED7i_\",max:100,min:0,name:\"Achternaam\",npsButtons:{deselectedColor:\"rgb(240, 240, 240)\",deselectedFontColor:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedColor:\"rgb(0, 117, 255)\",selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCodeFormat:\"+1\",phoneNumberDefaultCountryCode:\"1\",phoneNumberFormat:\"(123) 456 - 7890\",phoneNumberPlaceholder:\"+1 (123) 456 - 7890\",placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,resizeable:true,sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",size:16},sliderLabel:{position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4},step:1,style:{width:\"100%\"},textAreaDefaultHeight:100,textPlaceholder:\"Achternaam\",textSelect:false,type:\"input\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cgzkd0-container\",\"data-framer-name\":\"Phone Number Field\",name:\"Phone Number Field\",children:/*#__PURE__*/_jsx(FormField,{accentColor:\"rgb(0, 117, 255)\",backgroundColor:\"var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(255, 255, 255))\",checkboxText:\"Checkbox\",consentText:\"I agree to the Terms & Conditions.\",dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailPlaceholder:\"hello@example.com\",font:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(0, 0, 0)\",gap:10,gapH:10,gapV:10,height:\"100%\",id:\"lMjX2A3yV\",invalidStyle:{backgroundColor:\"rgb(255, 245, 245)\",border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},transition:{damping:70,stiffness:1200,type:\"spring\"}},layoutId:\"lMjX2A3yV\",max:100,min:0,name:\"phoneNumberField\",npsButtons:{deselectedColor:\"rgb(240, 240, 240)\",deselectedFontColor:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedColor:\"rgb(0, 117, 255)\",selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCodeFormat:\"noSpace\",phoneNumberDefaultCountryCode:\"\",phoneNumberFormat:\"1234567890\",phoneNumberPlaceholder:\"Telefoonnummer\",placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,resizeable:true,sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",size:16},sliderLabel:{position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4},step:1,style:{width:\"100%\"},textAreaDefaultHeight:100,textPlaceholder:\"Type...\",textSelect:false,type:\"phoneNumber\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19o0yzy-container\",\"data-framer-name\":\"Email Field\",name:\"Email Field\",children:/*#__PURE__*/_jsx(FormField,{accentColor:\"rgb(0, 117, 255)\",backgroundColor:\"var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(255, 255, 255))\",checkboxText:\"Checkbox\",consentText:\"I agree to the Terms & Conditions.\",dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailPlaceholder:\"E-mail\",font:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(0, 0, 0)\",gap:10,gapH:10,gapV:10,height:\"100%\",id:\"jmKWjrA7d\",invalidStyle:{backgroundColor:\"rgb(255, 245, 245)\",border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},transition:{damping:70,stiffness:1200,type:\"spring\"}},layoutId:\"jmKWjrA7d\",max:100,min:0,name:\"emailField\",npsButtons:{deselectedColor:\"rgb(240, 240, 240)\",deselectedFontColor:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedColor:\"rgb(0, 117, 255)\",selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCodeFormat:\"+1\",phoneNumberDefaultCountryCode:\"1\",phoneNumberFormat:\"(123) 456 - 7890\",phoneNumberPlaceholder:\"+1 (123) 456 - 7890\",placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,resizeable:true,sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",size:16},sliderLabel:{position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4},step:1,style:{width:\"100%\"},textAreaDefaultHeight:100,textPlaceholder:\"Type...\",textSelect:false,type:\"email\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-gxb5ml\",\"data-styles-preset\":\"Rdrc9Nr49\",children:\"Wat is op jou van toepassing?\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"Optie 1: Op reguliere wijze aankopen\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Je bent ge\\xefnteresseerd in het kopen van een appartement op reguliere wijze na zekerheid omtrent de vergunning. De toewijzing vindt plaats op basis van gunning verkoper.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"Optie 2: Ik ben niet ge\\xefnteresseerd om te kopen maar wil updates ontvangen\"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),\"Je wilt op de hoogte gehouden worden en bent een omwonende of een belanghebbende partij.\"]})]}),className:\"framer-15p3k5x\",fonts:[\"GF;Outfit-regular\",\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2mggiz-container\",\"data-framer-name\":\"Radio Field\",name:\"Radio Field\",children:/*#__PURE__*/_jsx(FormField,{accentColor:\"rgb(0, 117, 255)\",backgroundColor:\"var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(247, 245, 242))\",checkboxText:\"Checkbox\",consentText:\"I agree to the Terms & Conditions.\",dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Maak een keuze...\",emailPlaceholder:\"hello@example.com\",font:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(0, 0, 0)\",gap:10,gapH:10,gapV:10,height:\"100%\",id:\"ayPBRNd8C\",invalidStyle:{backgroundColor:\"rgb(255, 245, 245)\",border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},transition:{damping:70,stiffness:1200,type:\"spring\"}},layoutId:\"ayPBRNd8C\",max:100,min:0,name:\"InvestOption\",npsButtons:{deselectedColor:\"rgb(240, 240, 240)\",deselectedFontColor:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedColor:\"rgb(0, 117, 255)\",selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Optie 1\",\"Optie 2\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCodeFormat:\"+1\",phoneNumberDefaultCountryCode:\"1\",phoneNumberFormat:\"(123) 456 - 7890\",phoneNumberPlaceholder:\"+1 (123) 456 - 7890\",placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:true,resizeable:true,sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",size:16},sliderLabel:{position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4},step:1,style:{width:\"100%\"},textAreaDefaultHeight:100,textPlaceholder:\"Type...\",textSelect:false,type:\"dropdown\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wcmr9m-container\",\"data-framer-name\":\"Email Field\",name:\"Email Field\",children:/*#__PURE__*/_jsx(FormField,{accentColor:\"rgb(0, 117, 255)\",backgroundColor:\"var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(255, 255, 255))\",checkboxText:\"Checkbox\",consentText:\"I agree to the Terms & Conditions.\",dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailPlaceholder:\"E-mail\",font:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(0, 0, 0)\",gap:10,gapH:10,gapV:10,height:\"100%\",id:\"Fr5hQD4o8\",invalidStyle:{backgroundColor:\"rgb(255, 245, 245)\",border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},transition:{damping:70,stiffness:1200,type:\"spring\"}},layoutId:\"Fr5hQD4o8\",max:100,min:0,name:\"Opmerkingen\",npsButtons:{deselectedColor:\"rgb(240, 240, 240)\",deselectedFontColor:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedColor:\"rgb(0, 117, 255)\",selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCodeFormat:\"+1\",phoneNumberDefaultCountryCode:\"1\",phoneNumberFormat:\"(123) 456 - 7890\",phoneNumberPlaceholder:\"+1 (123) 456 - 7890\",placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:false,resizeable:true,sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",size:16},sliderLabel:{position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4},step:1,style:{width:\"100%\"},textAreaDefaultHeight:100,textPlaceholder:\"Vragen/Opmerkingen (Optioneel)\",textSelect:false,type:\"textArea\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fb4c06-container\",\"data-framer-name\":\"Consent Field\",name:\"Consent Field\",children:/*#__PURE__*/_jsx(FormField,{accentColor:\"rgb(0, 117, 255)\",backgroundColor:\"rgba(255, 255, 255, 0)\",checkboxText:\"Checkbox\",consentText:\"Ik geef toestemming dat Inhuizen en/of samenwerkingspartners mij mogen benaderen m.b.t. dit vastgoedproject in Houten.\",dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailPlaceholder:\"hello@example.com\",font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"rgb(0, 0, 0)\",gap:10,gapH:10,gapV:10,height:\"100%\",id:\"Rp9Mq7zmW\",invalidStyle:{backgroundColor:\"rgb(255, 245, 245)\",border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},transition:{damping:70,stiffness:1200,type:\"spring\"}},layoutId:\"Rp9Mq7zmW\",max:100,min:0,name:\"consentField\",npsButtons:{deselectedColor:\"rgb(240, 240, 240)\",deselectedFontColor:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedColor:\"rgb(0, 117, 255)\",selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,stiffness:1200,type:\"spring\"}},npsLabels:{left:\"Not Likely\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,phoneNumberCountryCodeFormat:\"+1\",phoneNumberDefaultCountryCode:\"1\",phoneNumberFormat:\"(123) 456 - 7890\",phoneNumberPlaceholder:\"+1 (123) 456 - 7890\",placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:false,resizeable:true,sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",size:16},sliderLabel:{position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4},step:1,style:{width:\"100%\"},textAreaDefaultHeight:100,textPlaceholder:\"Type...\",textSelect:false,type:\"consent\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bTgUZhS0Y\"},implicitPathVariables:undefined},{href:{webPageId:\"bTgUZhS0Y\"},implicitPathVariables:undefined},{href:{webPageId:\"bTgUZhS0Y\"},implicitPathVariables:undefined},{href:{webPageId:\"bTgUZhS0Y\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19t4rcd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{redirectOnSuccess:resolvedLinks[3]},OATCO_cyv:{redirectOnSuccess:resolvedLinks[1]},x30rUr7hf:{redirectOnSuccess:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(SubmitButton,{backgroundColor:\"var(--token-b655c4fc-70a1-4814-a0a4-eda6c2b3491f, rgb(251, 139, 36))\",clickAction:\"submitForm\",font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"lfPMu1AfG\",layoutId:\"lfPMu1AfG\",newTab:false,padding:16,paddingBottom:15,paddingIsMixed:true,paddingLeft:20,paddingRight:20,paddingTop:15,radius:5,radiusBottomLeft:5,radiusBottomRight:5,radiusIsMixed:false,radiusTopLeft:5,radiusTopRight:5,redirectOnSuccess:resolvedLinks[0],responseInfo:{url:false,urlName:\"url\",utmParams:false},scrollToInvalidField:{offset:-24},style:{maxWidth:\"100%\"},submitUrl:\"https://hooks.zapier.com/hooks/catch/14494723/3qacjtb/\",text:\"Verzenden\",textSelect:false,width:\"100%\"})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OATCO_cyv:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hebkig-container hidden-72rtr7 hidden-l95bir hidden-svt1mj\",id:id2,ref:ref5,children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"n_5Xk_Oym\",layoutId:\"n_5Xk_Oym\",style:{height:\"100%\",width:\"100%\"},variant:\"ccjkTfm8e\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18s0ru5 hidden-1ihlg0e\",\"data-border\":true,\"data-framer-name\":\"View More\",id:id3,name:\"View More\",ref:ref3,children:[isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vd67n2 hidden-l95bir\",\"data-framer-name\":\"Project List\",name:\"Project List\"}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f18g0u-container hidden-72rtr7 hidden-svt1mj\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"O6FqZtLeQ\",layoutId:\"O6FqZtLeQ\",variant:\"VBfhlGvxV\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi3sq8mGh:{width:\"max((100vw - 240px) * 1.1949, 100px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lndzde-container hidden-72rtr7 hidden-l95bir\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"bKtPHqZo_\",layoutId:\"bKtPHqZo_\",style:{height:\"100%\",width:\"100%\"},variant:\"CtO8BCbM9\",width:\"100%\"})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-5z3rvy hidden-72rtr7 hidden-svt1mj\"})]}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w0up93-container hidden-1ihlg0e hidden-l95bir hidden-svt1mj\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"E2_rsxcUK\",layoutId:\"E2_rsxcUK\",style:{height:\"100%\",width:\"100%\"},variant:\"k6D_KmeSN\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-1vgv8 { background: var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(245, 241, 240)) /* {\"name\":\"Background\"} */; }`,\".framer-1vgv8.framer-lux5qc, .framer-1vgv8 .framer-lux5qc { display: block; }\",\".framer-1vgv8.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, #f5f1f0); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-1vgv8 .framer-u3b37z-container { flex: none; height: 80px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-1vgv8 .framer-122ryai { align-content: flex-start; align-items: flex-start; background-color: var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, #f7f5f2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: auto; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 192px 0px 120px 48px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-1xsiwcc { background-color: var(--token-18ded7e6-1a62-4108-bcc4-6bf9ed5ecd50, #e2d8c4); flex: none; height: 110%; overflow: hidden; position: absolute; right: 0px; top: calc(54.932735426008996% - 109.97757847533632% / 2); width: 25%; z-index: 0; }\",\".framer-1vgv8 .framer-1s8kaxh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-du9rk8 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-1vgv8 .framer-1nk0ou0-container { flex: 1 0 0px; height: 103px; position: relative; width: 1px; }\",\".framer-1vgv8 .framer-1lacbvs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1vgv8 .framer-1st60tg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-vfogq8 { --border-bottom-width: 0px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-1vgv8 .framer-pjzkvf-container { flex: none; height: 103px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-1fbge45, .framer-1vgv8 .framer-1xn1gvw, .framer-1vgv8 .framer-120lgs8, .framer-1vgv8 .framer-ckvxj5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1vgv8 .framer-1mp4tv1 { flex: none; height: 682px; position: relative; width: 57%; }\",\".framer-1vgv8 .framer-paa1jy { align-content: center; align-items: center; background-color: #eee8e5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 796px; justify-content: center; overflow: visible; padding: 120px 48px 192px 48px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-3lk510 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-n6807m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 192px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-uu0il4 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1vgv8 .framer-11lnelw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1vgv8 .framer-j72cii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 674px; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 0px 0px 192px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-1bxtzwj { align-content: center; align-items: center; background-color: rgba(214, 201, 177, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 59%; justify-content: center; left: 547px; overflow: hidden; padding: 0px; position: absolute; top: 101px; width: 96%; z-index: 0; }\",\".framer-1vgv8 .framer-1rqcca2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 100%; justify-content: center; padding: 7px; position: relative; width: 1px; }\",\".framer-1vgv8 .framer-1y0ny54 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-1vgv8 .framer-15h1m7j { align-content: center; align-items: center; background-color: var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, #f7f5f2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: 1020px; justify-content: flex-start; overflow: hidden; padding: 120px 48px 240px 48px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-1faq01j-container, .framer-1vgv8 .framer-1bix4cd-container, .framer-1vgv8 .framer-cgzkd0-container, .framer-1vgv8 .framer-19o0yzy-container, .framer-1vgv8 .framer-2mggiz-container, .framer-1vgv8 .framer-wcmr9m-container, .framer-1vgv8 .framer-1fb4c06-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-9qza4o { align-content: center; align-items: center; background-color: var(--token-4d4020da-2003-4d4b-b93f-67b43db5df9c, #5a4b44); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: auto; justify-content: center; overflow: hidden; padding: 144px 0px 144px 0px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-2nd6yq { flex: none; height: auto; max-width: 1440px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1vgv8 .framer-1cwkst8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 687px; word-break: break-word; word-wrap: break-word; }\",\".framer-1vgv8 .framer-13yt3bb-container { flex: none; height: 556px; position: relative; width: 1001px; }\",\".framer-1vgv8 .framer-ymi0yg, .framer-1vgv8 .framer-1fljzqe, .framer-1vgv8 .framer-1u2ldd4, .framer-1vgv8 .framer-b5cytp { height: 461px; overflow: hidden; position: relative; width: 853px; }\",\".framer-1vgv8 .framer-xcs66v { bottom: -145px; flex: none; left: -133px; overflow: visible; position: absolute; right: -45px; top: -425px; }\",\".framer-1vgv8 .framer-xi4dyp { align-content: center; align-items: center; background-color: var(--token-18ded7e6-1a62-4108-bcc4-6bf9ed5ecd50, #e2d8c4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-1ce7qbm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 170px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-1vgv8 .framer-1suqam7 { flex: none; height: auto; max-width: 1440px; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-1vgv8 .framer-1nhyow7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 720px; }\",\".framer-1vgv8 .framer-1edttwb-container, .framer-1vgv8 .framer-1319t1o-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-15p3k5x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1vgv8 .framer-19t4rcd-container { flex: none; height: auto; max-width: 100%; position: relative; width: auto; }\",\".framer-1vgv8 .framer-1hebkig-container { flex: none; height: 268px; position: relative; width: 100%; z-index: 1; }\",\".framer-1vgv8 .framer-18s0ru5 { --border-bottom-width: 1px; --border-color: var(--token-18ded7e6-1a62-4108-bcc4-6bf9ed5ecd50, #e2d8c4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-18ded7e6-1a62-4108-bcc4-6bf9ed5ecd50, #e2d8c4); cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: auto; justify-content: center; overflow: hidden; padding: 120px; position: relative; width: 100%; }\",\".framer-1vgv8 .framer-vd67n2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: auto; justify-content: center; max-width: 1440px; overflow: visible; padding: 33px 48px 96px 48px; position: relative; width: 868px; z-index: 1; }\",\".framer-1vgv8 .framer-1f18g0u-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-1vgv8 .framer-lndzde-container { bottom: 0px; flex: none; height: 300px; left: calc(50.00000000000002% - max(100px, 119.48717948717949%) / 2); min-width: 100px; position: absolute; width: 119%; z-index: 1; }\",\".framer-1vgv8 .framer-5z3rvy { background-color: var(--token-18ded7e6-1a62-4108-bcc4-6bf9ed5ecd50, #e2d8c4); flex: none; height: 49px; overflow: hidden; position: relative; width: 200%; }\",\".framer-1vgv8 .framer-1w0up93-container { bottom: 0px; flex: none; height: 297px; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1vgv8.framer-72rtr7, .framer-1vgv8 .framer-122ryai, .framer-1vgv8 .framer-1s8kaxh, .framer-1vgv8 .framer-1st60tg, .framer-1vgv8 .framer-vfogq8, .framer-1vgv8 .framer-paa1jy, .framer-1vgv8 .framer-3lk510, .framer-1vgv8 .framer-n6807m, .framer-1vgv8 .framer-j72cii, .framer-1vgv8 .framer-1bxtzwj, .framer-1vgv8 .framer-1rqcca2, .framer-1vgv8 .framer-15h1m7j, .framer-1vgv8 .framer-9qza4o, .framer-1vgv8 .framer-xi4dyp, .framer-1vgv8 .framer-1ce7qbm, .framer-1vgv8 .framer-1nhyow7, .framer-1vgv8 .framer-18s0ru5, .framer-1vgv8 .framer-vd67n2 { gap: 0px; } .framer-1vgv8.framer-72rtr7 > *, .framer-1vgv8 .framer-3lk510 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1vgv8.framer-72rtr7 > :first-child, .framer-1vgv8 .framer-122ryai > :first-child, .framer-1vgv8 .framer-vfogq8 > :first-child, .framer-1vgv8 .framer-paa1jy > :first-child, .framer-1vgv8 .framer-3lk510 > :first-child, .framer-1vgv8 .framer-1rqcca2 > :first-child, .framer-1vgv8 .framer-15h1m7j > :first-child, .framer-1vgv8 .framer-9qza4o > :first-child, .framer-1vgv8 .framer-xi4dyp > :first-child, .framer-1vgv8 .framer-1ce7qbm > :first-child, .framer-1vgv8 .framer-1nhyow7 > :first-child, .framer-1vgv8 .framer-18s0ru5 > :first-child, .framer-1vgv8 .framer-vd67n2 > :first-child { margin-top: 0px; } .framer-1vgv8.framer-72rtr7 > :last-child, .framer-1vgv8 .framer-122ryai > :last-child, .framer-1vgv8 .framer-vfogq8 > :last-child, .framer-1vgv8 .framer-paa1jy > :last-child, .framer-1vgv8 .framer-3lk510 > :last-child, .framer-1vgv8 .framer-1rqcca2 > :last-child, .framer-1vgv8 .framer-15h1m7j > :last-child, .framer-1vgv8 .framer-9qza4o > :last-child, .framer-1vgv8 .framer-xi4dyp > :last-child, .framer-1vgv8 .framer-1ce7qbm > :last-child, .framer-1vgv8 .framer-1nhyow7 > :last-child, .framer-1vgv8 .framer-18s0ru5 > :last-child, .framer-1vgv8 .framer-vd67n2 > :last-child { margin-bottom: 0px; } .framer-1vgv8 .framer-122ryai > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-1vgv8 .framer-1s8kaxh > * { margin: 0px; margin-left: calc(110px / 2); margin-right: calc(110px / 2); } .framer-1vgv8 .framer-1s8kaxh > :first-child, .framer-1vgv8 .framer-1st60tg > :first-child, .framer-1vgv8 .framer-n6807m > :first-child, .framer-1vgv8 .framer-j72cii > :first-child, .framer-1vgv8 .framer-1bxtzwj > :first-child { margin-left: 0px; } .framer-1vgv8 .framer-1s8kaxh > :last-child, .framer-1vgv8 .framer-1st60tg > :last-child, .framer-1vgv8 .framer-n6807m > :last-child, .framer-1vgv8 .framer-j72cii > :last-child, .framer-1vgv8 .framer-1bxtzwj > :last-child { margin-right: 0px; } .framer-1vgv8 .framer-1st60tg > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-1vgv8 .framer-vfogq8 > *, .framer-1vgv8 .framer-1rqcca2 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-1vgv8 .framer-paa1jy > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1vgv8 .framer-n6807m > *, .framer-1vgv8 .framer-j72cii > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1vgv8 .framer-1bxtzwj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1vgv8 .framer-15h1m7j > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-1vgv8 .framer-9qza4o > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-1vgv8 .framer-xi4dyp > *, .framer-1vgv8 .framer-1ce7qbm > *, .framer-1vgv8 .framer-1nhyow7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1vgv8 .framer-18s0ru5 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-1vgv8 .framer-vd67n2 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",\"@media (min-width: 1440px) { .framer-1vgv8 .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 1024px) and (max-width: 1439px) { .framer-1vgv8 .hidden-1ihlg0e { display: none !important; } .${metadata.bodyClassName}-framer-1vgv8 { background: var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(245, 241, 240)) /* {\"name\":\"Background\"} */; } .framer-1vgv8.framer-72rtr7 { width: 1024px; } .framer-1vgv8 .framer-u3b37z-container, .framer-1vgv8 .framer-1edttwb-container { order: 0; } .framer-1vgv8 .framer-122ryai { gap: 12px; order: 1; } .framer-1vgv8 .framer-1s8kaxh { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 36px; padding: 43px 0px 43px 0px; } .framer-1vgv8 .framer-1lacbvs { flex: none; min-width: 300px; width: 100%; } .framer-1vgv8 .framer-1st60tg { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-1vgv8 .framer-vfogq8 { flex: none; order: 1; width: 75%; } .framer-1vgv8 .framer-1mp4tv1 { height: 618px; order: 0; width: 100%; } .framer-1vgv8 .framer-paa1jy, .framer-1vgv8 .framer-1bix4cd-container, .framer-1vgv8 .framer-1hebkig-container { order: 2; } .framer-1vgv8 .framer-n6807m { padding: 0px 0px 0px 48px; } .framer-1vgv8 .framer-j72cii { gap: 24px; padding: 0px 0px 0px 48px; } .framer-1vgv8 .framer-1bxtzwj { left: 48px; width: 100%; } .framer-1vgv8 .framer-1y0ny54 { flex: none; width: 48%; } .framer-1vgv8 .framer-15h1m7j, .framer-1vgv8 .framer-cgzkd0-container { order: 3; } .framer-1vgv8 .framer-9qza4o, .framer-1vgv8 .framer-19o0yzy-container { order: 4; } .framer-1vgv8 .framer-xi4dyp, .framer-1vgv8 .framer-wcmr9m-container { order: 7; } .framer-1vgv8 .framer-1ce7qbm { height: 169px; order: 0; width: min-content; } .framer-1vgv8 .framer-1suqam7 { width: 720px; } .framer-1vgv8 .framer-1nhyow7 { order: 1; padding: 50px; width: 716px; } .framer-1vgv8 .framer-1319t1o-container { order: 1; } .framer-1vgv8 .framer-15p3k5x { order: 5; } .framer-1vgv8 .framer-2mggiz-container { order: 6; } .framer-1vgv8 .framer-1fb4c06-container { order: 8; } .framer-1vgv8 .framer-19t4rcd-container { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1vgv8 .framer-122ryai, .framer-1vgv8 .framer-1s8kaxh, .framer-1vgv8 .framer-1st60tg, .framer-1vgv8 .framer-j72cii { gap: 0px; } .framer-1vgv8 .framer-122ryai > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-1vgv8 .framer-122ryai > :first-child, .framer-1vgv8 .framer-1s8kaxh > :first-child, .framer-1vgv8 .framer-1st60tg > :first-child { margin-top: 0px; } .framer-1vgv8 .framer-122ryai > :last-child, .framer-1vgv8 .framer-1s8kaxh > :last-child, .framer-1vgv8 .framer-1st60tg > :last-child { margin-bottom: 0px; } .framer-1vgv8 .framer-1s8kaxh > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-1vgv8 .framer-1st60tg > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1vgv8 .framer-j72cii > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-1vgv8 .framer-j72cii > :first-child { margin-left: 0px; } .framer-1vgv8 .framer-j72cii > :last-child { margin-right: 0px; } }}`,`@media (min-width: 810px) and (max-width: 1023px) { .framer-1vgv8 .hidden-l95bir { display: none !important; } .${metadata.bodyClassName}-framer-1vgv8 { background: var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(245, 241, 240)) /* {\"name\":\"Background\"} */; } .framer-1vgv8.framer-72rtr7 { width: 810px; } .framer-1vgv8 .framer-u3b37z-container, .framer-1vgv8 .framer-1xn1gvw, .framer-1vgv8 .framer-120lgs8, .framer-1vgv8 .framer-ckvxj5, .framer-1vgv8 .framer-5z3rvy { order: 0; } .framer-1vgv8 .framer-122ryai { gap: 12px; order: 1; } .framer-1vgv8 .framer-1xsiwcc { height: 100%; top: -1px; width: 25%; } .framer-1vgv8 .framer-1s8kaxh { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 48px; } .framer-1vgv8 .framer-1lacbvs { flex: none; min-width: 300px; width: 100%; } .framer-1vgv8 .framer-1st60tg { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-1vgv8 .framer-vfogq8 { flex: none; order: 1; width: 75%; } .framer-1vgv8 .framer-1mp4tv1 { order: 0; width: 100%; } .framer-1vgv8 .framer-paa1jy { order: 2; } .framer-1vgv8 .framer-n6807m { order: 1; padding: 0px 0px 0px 48px; } .framer-1vgv8 .framer-j72cii { gap: 24px; padding: 0px 0px 0px 48px; } .framer-1vgv8 .framer-1bxtzwj { height: 105%; left: -48px; top: 0px; width: 113%; } .framer-1vgv8 .framer-1y0ny54 { flex: none; width: 56%; } .framer-1vgv8 .framer-15h1m7j { height: auto; order: 3; } .framer-1vgv8 .framer-1faq01j-container { height: 98.98148148148148vh; order: 1; } .framer-1vgv8 .framer-9qza4o { order: 4; padding: 127px 0px 127px 0px; } .framer-1vgv8 .framer-13yt3bb-container { height: 482px; width: 736px; } .framer-1vgv8 .framer-xi4dyp { order: 5; } .framer-1vgv8 .framer-1nhyow7 { width: 80%; } .framer-1vgv8 .framer-18s0ru5 { background-color: var(--token-780b7191-a190-46a9-bc4c-fb589d8f8d51, #2c2c2c); height: 380px; order: 7; } .framer-1vgv8 .framer-1f18g0u-container { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1vgv8 .framer-122ryai, .framer-1vgv8 .framer-1s8kaxh, .framer-1vgv8 .framer-1st60tg, .framer-1vgv8 .framer-j72cii { gap: 0px; } .framer-1vgv8 .framer-122ryai > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-1vgv8 .framer-122ryai > :first-child, .framer-1vgv8 .framer-1s8kaxh > :first-child, .framer-1vgv8 .framer-1st60tg > :first-child { margin-top: 0px; } .framer-1vgv8 .framer-122ryai > :last-child, .framer-1vgv8 .framer-1s8kaxh > :last-child, .framer-1vgv8 .framer-1st60tg > :last-child { margin-bottom: 0px; } .framer-1vgv8 .framer-1s8kaxh > *, .framer-1vgv8 .framer-1st60tg > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1vgv8 .framer-j72cii > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-1vgv8 .framer-j72cii > :first-child { margin-left: 0px; } .framer-1vgv8 .framer-j72cii > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .framer-1vgv8 .hidden-svt1mj { display: none !important; } .${metadata.bodyClassName}-framer-1vgv8 { background: var(--token-74b28d1b-e3db-4b81-a949-9b4ae2a4baf7, rgb(245, 241, 240)) /* {\"name\":\"Background\"} */; } .framer-1vgv8.framer-72rtr7 { width: 390px; } .framer-1vgv8 .framer-u3b37z-container { order: 6; } .framer-1vgv8 .framer-122ryai { gap: 12px; order: 0; padding: 192px 12px 99px 12px; } .framer-1vgv8 .framer-1xsiwcc { height: 100%; top: -1px; width: 25%; } .framer-1vgv8 .framer-1s8kaxh { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 23px; } .framer-1vgv8 .framer-du9rk8 { order: 0; overflow: hidden; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-1vgv8 .framer-1nk0ou0-container { flex: none; order: 2; width: 100%; } .framer-1vgv8 .framer-1lacbvs { flex: none; min-width: 300px; order: 1; width: 100%; } .framer-1vgv8 .framer-1st60tg { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-1vgv8 .framer-vfogq8 { flex: none; order: 1; padding: 24px 0px 0px 0px; width: 100%; } .framer-1vgv8 .framer-1fbge45, .framer-1vgv8 .framer-1faq01j-container { order: 1; } .framer-1vgv8 .framer-1mp4tv1 { height: 240px; order: 0; width: 100%; } .framer-1vgv8 .framer-paa1jy { height: 658px; order: 1; padding: 96px 12px 96px 12px; } .framer-1vgv8 .framer-n6807m { padding: 0px; } .framer-1vgv8 .framer-j72cii { flex-direction: column; gap: 24px; padding: 0px; } .framer-1vgv8 .framer-1bxtzwj { bottom: 380px; height: unset; left: -12px; order: 0; top: 0px; width: 107%; } .framer-1vgv8 .framer-1rqcca2 { gap: 13px; height: 1px; order: 2; width: 100%; } .framer-1vgv8 .framer-120lgs8, .framer-1vgv8 .framer-ckvxj5, .framer-1vgv8 .framer-2nd6yq { order: 0; } .framer-1vgv8 .framer-1y0ny54 { height: 1px; order: 1; width: 332px; } .framer-1vgv8 .framer-15h1m7j { gap: 25px; height: 1425px; order: 2; padding: 50px 12px 50px 12px; } .framer-1vgv8 .framer-9qza4o { gap: 24px; order: 3; padding: 51px 0px 51px 0px; } .framer-1vgv8 .framer-1cwkst8 { order: 1; width: 327px; } .framer-1vgv8 .framer-13yt3bb-container { height: 269px; order: 2; width: 362px; } .framer-1vgv8 .framer-xi4dyp { order: 4; } .framer-1vgv8 .framer-1nhyow7 { width: 80%; } .framer-1vgv8 .framer-18s0ru5 { height: 400px; order: 5; } .framer-1vgv8 .framer-vd67n2 { width: 436px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1vgv8 .framer-122ryai, .framer-1vgv8 .framer-1s8kaxh, .framer-1vgv8 .framer-1st60tg, .framer-1vgv8 .framer-j72cii, .framer-1vgv8 .framer-1rqcca2, .framer-1vgv8 .framer-15h1m7j, .framer-1vgv8 .framer-9qza4o { gap: 0px; } .framer-1vgv8 .framer-122ryai > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-1vgv8 .framer-122ryai > :first-child, .framer-1vgv8 .framer-1s8kaxh > :first-child, .framer-1vgv8 .framer-1st60tg > :first-child, .framer-1vgv8 .framer-j72cii > :first-child, .framer-1vgv8 .framer-1rqcca2 > :first-child, .framer-1vgv8 .framer-15h1m7j > :first-child, .framer-1vgv8 .framer-9qza4o > :first-child { margin-top: 0px; } .framer-1vgv8 .framer-122ryai > :last-child, .framer-1vgv8 .framer-1s8kaxh > :last-child, .framer-1vgv8 .framer-1st60tg > :last-child, .framer-1vgv8 .framer-j72cii > :last-child, .framer-1vgv8 .framer-1rqcca2 > :last-child, .framer-1vgv8 .framer-15h1m7j > :last-child, .framer-1vgv8 .framer-9qza4o > :last-child { margin-bottom: 0px; } .framer-1vgv8 .framer-1s8kaxh > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-1vgv8 .framer-1st60tg > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1vgv8 .framer-j72cii > *, .framer-1vgv8 .framer-9qza4o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1vgv8 .framer-1rqcca2 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-1vgv8 .framer-15h1m7j > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-1vgv8[data-border=\"true\"]::after, .framer-1vgv8 [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 5480\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OATCO_cyv\":{\"layout\":[\"fixed\",\"auto\"]},\"x30rUr7hf\":{\"layout\":[\"fixed\",\"auto\"]},\"Gi3sq8mGh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-1vgv8\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5480,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"}]},...MenuFonts,...ButtonFonts,...ServiceListFonts,...SlideshowFonts,...FormFieldFonts,...SubmitButtonFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"5480\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OATCO_cyv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x30rUr7hf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gi3sq8mGh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useFormStore", "createStore", "FormIcon", "t", "o", "i", "r", "p", "iconPropertyControls", "ControlType", "SubmitButton", "props", "_props_font", "clickAction", "submitUrl", "responseInfo", "redirectOnSuccess", "scrollOptions", "icon", "border", "success", "failure", "borderRadius", "formState", "setFormState", "useFormStore", "submitted", "setSubmitted", "ye", "redirectLinkRef", "pe", "resetFormState", "prev", "newFormState", "fieldName", "ue", "onSubmitClick", "invalidFields", "formData", "field", "url", "window", "value", "key", "response", "error", "closestRef", "closestDistance", "ref", "distance", "u", "p", "FormIcon", "Link", "addPropertyControls", "ControlType", "iconPropertyControls", "NO_REQUIRED_TYPES", "ACCENT_COLOR_TYPES", "OPTIONS_TYPES", "TEXT_PLACEHOLDER_TYPES", "PLACEHOLDER_FONT_COLOR_TYPES", "GAP_TYPES", "GAP_HV_TYPES", "MIN_MAX_STEP_TYPES", "PHONE_NUMBER_FORMATS", "DROPDOWN_ICON_HEIGHT", "DROPDOWN_NONE_SELECTED_VALUE", "FormField", "props", "_formState_name", "type", "name", "options", "gap", "border", "icon", "invalidStyle", "elementId", "required", "iconOnLeft", "pt", "pl", "pb", "pr", "plIcon", "prIcon", "minHeight", "formState", "setFormState", "useFormStore", "value", "isSpecialValue", "setIsSpecialValue", "ye", "invalid", "setInvalid", "invalidRef", "pe", "ref", "updateField", "key", "prev", "invalidate", "revalidate", "isValid", "valid", "isEmailAddress", "ue", "borderRadius", "style", "onChangeEventTargetValue", "event", "elements", "p", "u", "option", "index", "multiSelectOnChange", "multiSelectValue", "v", "numberUpdateFormState", "roundedValue", "boundedValue", "numberOnFocusLost", "numberOnKeyDown", "_handle_border", "_handle_border1", "_track_border", "_track_border1", "_props_sliderLabel", "track", "handle", "handleCSS", "trackCSS", "npsButtons", "npsLabels", "innerRadius", "outerRadius", "buttonBorder", "_", "selected", "radius", "motion", "emailOnFocusLost", "phoneNumberOnChange", "phoneNumber", "hasCountryCode", "formatPhoneNumber", "removeCountryCode", "FormIcon", "addPropertyControls", "ControlType", "iconPropertyControls", "string", "phoneNumberString", "format", "customFormat", "countryCodeFormat", "defaultCountryCode", "cleaned", "match", "intlCode", "countryCode", "formattedNumber", "digitIndex", "i", "phoneNumberFormat", "phoneNumberCustomFormat", "firstSpaceIndex", "numberLength", "count", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "description", "height", "id", "opacity", "showDescription", "tap", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kYTv4Zelc", "R8vdViyVv", "jZwxUkSuW", "S17635pUx", "ZM9GGyL3Q", "fYNHBKMRX", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1af53f1", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "css", "FramerP9HNsTGhw", "withCSS", "P9HNsTGhw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "OrderedListItemFonts", "getFonts", "P9HNsTGhw_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "_3Image", "_4Image", "_5Image", "height", "id", "luxeAfwerking", "omschrijving1", "omschrijving2", "omschrijving3", "omschrijving4", "omschrijving5", "ruimtelijkeIndeling", "titel3", "titel4", "titel5", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_humanReadableVariantMap_props_variant", "_ref8", "_ref9", "_ref10", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "beve5qBEX", "XjxbaG498", "R9w_ovEsO", "n7xEqq9GX", "vuGXAfNvB", "c_7EsozVi", "NDDEWaQ3T", "DMOB6Qgzd", "Oe4YD9PFI", "f6WCGGoC7", "Tz39DfCYe", "vD39SOnhQ", "o8K0yKCzZ", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "S17635pUxx8lrf2", "args", "S17635pUxhnth8s", "S17635pUxrbucbm", "S17635pUx1vo852s", "S17635pUx1r5020i", "S17635pUx1qgz4hy", "S17635pUx7nflnp", "S17635pUx16ej8ng", "S17635pUx1i7o5pc", "S17635pUxmnnecz", "onMouseEnter1gx595p", "overlay", "ref1", "pe", "ref2", "isDisplayed", "ref3", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "l", "AnimatePresence", "Floating", "css", "FramereODyo7sWT", "withCSS", "eODyo7sWT_default", "addPropertyControls", "ControlType", "addFonts", "MenuFonts", "getFonts", "Baa5_uFoa_default", "MenuWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "bqxIQHR7K_default", "ServiceListFonts", "eODyo7sWT_default", "SlideshowFonts", "Slideshow", "FormFieldFonts", "FormField", "SubmitButtonFonts", "SubmitButton", "FooterFonts", "j6LDmZXvp_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "animation5", "animation6", "animation7", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "ref2", "ref3", "isDisplayed", "isDisplayed1", "useRouteElementId", "id1", "ref4", "router", "useRouter", "isDisplayed2", "id2", "ref5", "isDisplayed3", "id3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "MenuWithVariantAppearEffect", "optimizeAppear", "MotionDivWithFX", "RichText2", "x", "bqxIQHR7K_default", "Image2", "eODyo7sWT_default", "Slideshow", "FormField", "ResolveLinks", "resolvedLinks", "SubmitButton", "j6LDmZXvp_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "MenuFonts", "ButtonFonts", "ServiceListFonts", "SlideshowFonts", "FormFieldFonts", "SubmitButtonFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
