Shader Image Reveal 7
Newly added
Shaders
Add
Shader Image Reveal 7
Copy Component
Copy external scripts and paste it in the body
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.164.1/build/three.module.js"
}
}
</script>
<script src="https://cdn.jsdelivr.net/gh/studio-freight/lenis@latest/bundled/lenis.js"></script>Copy javascript and paste it in the body
<script type="module">
import * as THREE from 'https://cdn.jsdelivr.net/npm/three@0.164.1/build/three.module.js';
import { EffectComposer } from 'https://cdn.jsdelivr.net/npm/three@0.164.1/examples/jsm/postprocessing/EffectComposer.js';
import { RenderPass } from 'https://cdn.jsdelivr.net/npm/three@0.164.1/examples/jsm/postprocessing/RenderPass.js';
import { ShaderPass } from 'https://cdn.jsdelivr.net/npm/three@0.164.1/examples/jsm/postprocessing/ShaderPass.js';
// smooth scroll (lenis)
let scroll = {
scrollY: window.scrollY,
scrollVelocity: 0
};
const lenis = new Lenis({
lerp: 0.08,
// infinite: true
});
lenis.on('scroll', (e) => {
scroll.scrollY = window.scrollY;
scroll.scrollVelocity = e.velocity;
});
function scrollRaf(time) {
lenis.raf(time);
requestAnimationFrame(scrollRaf);
}
requestAnimationFrame(scrollRaf);
// Three.js setup
const scene = new THREE.Scene();
const distance = 500;
const fov = 2 * Math.atan(window.innerHeight / 2 / distance) * (180 / Math.PI);
const camera = new THREE.PerspectiveCamera(
fov,
window.innerWidth / window.innerHeight,
0.1,
1000
);
const renderer = new THREE.WebGLRenderer({
canvas: document.getElementById('canvas'),
alpha: true,
premultipliedAlpha: false
});
renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2));
renderer.setSize(window.innerWidth, window.innerHeight);
renderer.setClearColor(0x000000, 0); // Set clear color with 0 alpha (transparent)
camera.position.z = distance;
// Set up composer and passes
const composer = new EffectComposer(renderer);
composer.renderTarget1.texture.format = THREE.RGBAFormat; // Enable alpha in render targets
composer.renderTarget2.texture.format = THREE.RGBAFormat;
const renderPass = new RenderPass(scene, camera);
composer.addPass(renderPass);
// Custom shader pass
const myEffect = {
uniforms: {
"tDiffuse": { value: null },
"scrollSpeed": { value: null },
},
vertexShader: `
varying vec2 vUv;
void main() {
vUv = uv;
gl_Position = projectionMatrix
* modelViewMatrix
* vec4( position, 1.0 );
}
`,
fragmentShader: `
uniform sampler2D tDiffuse;
varying vec2 vUv;
uniform float scrollSpeed;
void main(){
vec2 newUV = vUv;
float area = smoothstep(.6,0.,vUv.y + .1);
area = pow(area,5.);
newUV.x -= (vUv.x - 0.5)*0.15*area;
// Apply chromatic aberration
float aberrationAmount = 0.01 * area;
// Sample the texture with RGB channel offsets
vec4 r = texture2D(tDiffuse, newUV + vec2(aberrationAmount, 0.0));
vec4 g = texture2D(tDiffuse, newUV);
vec4 b = texture2D(tDiffuse, newUV - vec2(aberrationAmount, 0.0));
// Combine the channels while preserving alpha
gl_FragColor = vec4(r.r, g.g, b.b, g.a);
}
`
};
const customPass = new ShaderPass(myEffect);
customPass.renderToScreen = true;
composer.addPass(customPass);
// Shaders
const vertexShader = `
varying vec2 vUv;
uniform float uVelocity;
void main() {
vec3 newPosition = position;
gl_Position = projectionMatrix * modelViewMatrix * vec4(newPosition, 1.0);
vUv = uv;
}
`;
const fragmentShader = `
varying vec2 vUv;
uniform sampler2D uTexture;
uniform vec2 uContainerSize;
uniform vec2 uImageSize;
vec2 cover(vec2 uv, vec2 containerSize, vec2 imageSize) {
float containerRatio = containerSize.x / containerSize.y;
float imageRatio = imageSize.x / imageSize.y;
vec2 scale;
vec2 offset;
if(imageRatio > containerRatio) {
scale = vec2(containerSize.y / imageSize.y);
offset = vec2((containerSize.x - imageSize.x * scale.x) * 0.5, 0.0);
} else {
scale = vec2(containerSize.x / imageSize.x);
offset = vec2(0.0, (containerSize.y - imageSize.y * scale.y) * 0.5);
}
return (uv * containerSize - offset) / (imageSize * scale);
}
void main() {
vec2 uv = cover(vUv, uContainerSize, uImageSize);
gl_FragColor = texture2D(uTexture, uv);
}
`;
// Image planes setup
const images = document.querySelectorAll('.webgl img');
const planes = [];
const textureLoader = new THREE.TextureLoader();
textureLoader.crossOrigin = 'anonymous';
// Loading state
document.body.classList.add('loading');
const createPlane = (image, index) => {
const container = image.parentElement;
const bounds = container.getBoundingClientRect();
const geometry = new THREE.PlaneGeometry(bounds.width, bounds.height, 30, 30);
return new Promise((resolve) => {
textureLoader.load(image.src, (texture) => {
texture.minFilter = THREE.LinearFilter;
texture.magFilter = THREE.LinearFilter;
texture.generateMipmaps = true;
texture.anisotropy = renderer.capabilities.getMaxAnisotropy();
texture.needsUpdate = true;
const material = new THREE.ShaderMaterial({
uniforms: {
uTime: { value: 0 },
uTexture: { value: texture },
uContainerSize: { value: new THREE.Vector2(bounds.width, bounds.height) },
uImageSize: { value: new THREE.Vector2(texture.image.naturalWidth, texture.image.naturalHeight) },
uVelocity: { value: 0 }
},
vertexShader,
fragmentShader,
});
const plane = new THREE.Mesh(geometry, material);
plane.position.set(
bounds.left - window.innerWidth / 2 + bounds.width / 2,
-bounds.top + window.innerHeight / 2 - bounds.height / 2,
0
);
planes[index] = plane;
scene.add(plane);
resolve();
});
});
};
// Load all textures and show content when done
Promise.all(Array.from(images).map((image, index) => createPlane(image, index)))
.then(() => {
document.body.classList.remove('loading');
})
.catch((error) => {
console.error('Error loading textures:', error);
});
// Update plane positions - throttled to improve performance
const updatePlanePositions = () => {
planes.forEach((plane, index) => {
if (!plane) return;
const bounds = images[index].parentElement.getBoundingClientRect();
plane.position.set(
bounds.left - window.innerWidth / 2 + bounds.width / 2,
-bounds.top + window.innerHeight / 2 - bounds.height / 2,
0
);
});
};
// Animation loop with optimizations
const animate = () => {
requestAnimationFrame(animate);
// Update velocity for all planes
planes.forEach(plane => {
if (plane?.material) {
plane.material.uniforms.uVelocity.value = scroll.scrollVelocity;
}
});
// Update custom shader pass uniforms - preserve after user edits
customPass.uniforms.scrollSpeed.value = scroll.scrollVelocity;
updatePlanePositions();
// Use only composer.render() - remove renderer.render to avoid double rendering
composer.render();
};
animate();
// Handle window resize
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
</script>Copy styles and paste it in the head
Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"c49b943c-bc3f-b4d7-d339-c07579e494bc","type":"Block","tag":"div","classes":["4265dc5e-44c1-9675-8f61-2766709941df"],"children":["7be1eaa2-7f84-554d-a5ad-610a3ea8c25e","8fe1cbc8-3e26-6654-8c38-1db54318f562","4db8c7ac-4d5d-c7ee-db40-c16bc0b5157f","d3904089-f387-907c-3bd9-ea69c1ed6b5f","149497ab-e76b-9af8-b325-f01100a4f8d8","8072498f-9c6b-1cf6-4674-a89471bbabab"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"7be1eaa2-7f84-554d-a5ad-610a3ea8c25e","type":"Block","tag":"div","classes":["242167ca-2f9a-aeaf-5eb9-4f6f7cd47b73"],"children":[],"data":{"tag":"div","text":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"8fe1cbc8-3e26-6654-8c38-1db54318f562","type":"Block","tag":"div","classes":["ce4f44a9-86c8-6ccc-33a3-7650d24ae870"],"children":["63946ead-970b-481f-46a8-37165795ccc3"],"data":{"tag":"div","text":false,"attr":{"id":"page1"},"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"63946ead-970b-481f-46a8-37165795ccc3","type":"Block","tag":"div","classes":["5395b0a2-3928-da74-feaf-97d8c2253851"],"children":["d3935c36-34da-bba3-e14d-245f3269009d"],"data":{"tag":"div","text":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"d3935c36-34da-bba3-e14d-245f3269009d","type":"Image","tag":"img","classes":["4e10d76f-35e3-7dcc-0e1b-9edd51e86661"],"children":[],"data":{"attr":{"src":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cff3a6d7d7d709d048_Surreal%20Silhouette%20Art%20(2).webp","loading":"eager","width":"auto","height":"auto","alt":"__wf_reserved_inherit","id":""},"img":{"id":"69ef61cff3a6d7d7d709d048"},"srcsetDisabled":false,"sizes":[{"max":1200,"size":"100vw"},{"max":10000,"size":"1200px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"4db8c7ac-4d5d-c7ee-db40-c16bc0b5157f","type":"Block","tag":"div","classes":["80cfa81a-4b76-4943-f2e4-5e2d00198898"],"children":["350b10fa-e7b5-490f-d297-56ec29655b21"],"data":{"tag":"div","text":false,"attr":{"id":"page2"},"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"350b10fa-e7b5-490f-d297-56ec29655b21","type":"Block","tag":"div","classes":["5395b0a2-3928-da74-feaf-97d8c2253851"],"children":["0e3291de-16ae-6252-9988-70d9ef5f293a"],"data":{"tag":"div","text":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"0e3291de-16ae-6252-9988-70d9ef5f293a","type":"Image","tag":"img","classes":["4e10d76f-35e3-7dcc-0e1b-9edd51e86661"],"children":[],"data":{"attr":{"src":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf40490f8d4f60256f_Surreal%20Silhouette%20Art%20(1)%20(1).webp","loading":"eager","width":"auto","height":"auto","alt":"__wf_reserved_inherit","id":""},"img":{"id":"69ef61cf40490f8d4f60256f"},"srcsetDisabled":false,"sizes":[{"max":1200,"size":"100vw"},{"max":10000,"size":"1200px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"d3904089-f387-907c-3bd9-ea69c1ed6b5f","type":"Block","tag":"div","classes":["20cd7cc9-90d9-90b1-a753-f63ce7917548"],"children":["2fe0d81d-4ede-c241-71f7-ef81b6762f81"],"data":{"tag":"div","text":false,"attr":{"id":"page3"},"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"2fe0d81d-4ede-c241-71f7-ef81b6762f81","type":"Block","tag":"div","classes":["5395b0a2-3928-da74-feaf-97d8c2253851"],"children":["3bb86c15-015a-4e93-a370-79b445fc799d"],"data":{"tag":"div","text":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"3bb86c15-015a-4e93-a370-79b445fc799d","type":"Image","tag":"img","classes":["4e10d76f-35e3-7dcc-0e1b-9edd51e86661"],"children":[],"data":{"attr":{"src":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf3fdaadc4f4f9aaf9_Silhouette%20Motion%20Blur%20(1).webp","loading":"eager","width":"auto","height":"auto","alt":"__wf_reserved_inherit","id":""},"img":{"id":"69ef61cf3fdaadc4f4f9aaf9"},"srcsetDisabled":false,"sizes":[{"max":1200,"size":"100vw"},{"max":10000,"size":"1200px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"149497ab-e76b-9af8-b325-f01100a4f8d8","type":"Block","tag":"div","classes":["85970caa-7b00-76b2-7e82-fd6bdf4db4a2"],"children":["a924b939-8779-e54e-dc90-8afb5bb9b2b7"],"data":{"tag":"div","text":false,"attr":{"id":"page4"},"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"a924b939-8779-e54e-dc90-8afb5bb9b2b7","type":"Block","tag":"div","classes":["5395b0a2-3928-da74-feaf-97d8c2253851"],"children":["76135f5c-f870-8d0e-cc7d-8e6a92533a24"],"data":{"tag":"div","text":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"76135f5c-f870-8d0e-cc7d-8e6a92533a24","type":"Image","tag":"img","classes":["4e10d76f-35e3-7dcc-0e1b-9edd51e86661"],"children":[],"data":{"attr":{"src":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cef616dfb652a4eabb_Silhouette%20at%20Sunset%20(1).webp","loading":"eager","width":"auto","height":"auto","alt":"__wf_reserved_inherit","id":""},"img":{"id":"69ef61cef616dfb652a4eabb"},"srcsetDisabled":false,"sizes":[{"max":1200,"size":"100vw"},{"max":10000,"size":"1200px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"8072498f-9c6b-1cf6-4674-a89471bbabab","type":"DOM","tag":"div","classes":["ab45f034-4b46-68e2-4f7e-9abb93928848"],"children":[],"data":{"tag":"canvas","attributes":[{"name":"id","value":"canvas"}],"slot":"","text":false,"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}}],"styles":[{"_id":"5395b0a2-3928-da74-feaf-97d8c2253851","fake":false,"type":"class","name":"webgl","namespace":"","comb":"","styleLess":"width: 40vw; height: 25vw;","variants":{"medium":{"styleLess":"width: 60vw; height: 40vw;"},"small":{"styleLess":"width: 80%; height: 50vh;"},"tiny":{"styleLess":"height: 40vh;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"85970caa-7b00-76b2-7e82-fd6bdf4db4a2","fake":false,"type":"class","name":"page4","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"4265dc5e-44c1-9675-8f61-2766709941df","fake":false,"type":"class","name":"anim_wrapper","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"80cfa81a-4b76-4943-f2e4-5e2d00198898","fake":false,"type":"class","name":"page2","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"242167ca-2f9a-aeaf-5eb9-4f6f7cd47b73","fake":false,"type":"class","name":"blank-section","namespace":"","comb":"","styleLess":"height: 100vh;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"20cd7cc9-90d9-90b1-a753-f63ce7917548","fake":false,"type":"class","name":"page3","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"ce4f44a9-86c8-6ccc-33a3-7650d24ae870","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"ab45f034-4b46-68e2-4f7e-9abb93928848","fake":false,"type":"class","name":"canvas","namespace":"","comb":"","styleLess":"position: fixed; left: 0px; top: 0px; width: 100%; height: 100vh;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"4e10d76f-35e3-7dcc-0e1b-9edd51e86661","fake":false,"type":"class","name":"webgl-img","namespace":"","comb":"","styleLess":"height: 100%; opacity: 0;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cff3a6d7d7d709d048_Surreal%20Silhouette%20Art%20(2).webp","siteId":"6874e552da5c566d57024eda","width":1200,"isHD":false,"height":904,"fileName":"69ef61cff3a6d7d7d709d048_Surreal Silhouette Art (2).webp","createdOn":"2026-04-27T13:17:03.640Z","origFileName":"Surreal Silhouette Art (2).webp","fileHash":"694440aa79bc5043c7e877e663b0ee8d","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cff3a6d7d7d709d048_Surreal%20Silhouette%20Art%20(2)-p-500.webp","origFileName":"Surreal%20Silhouette%20Art%20(2)-p-500.webp","fileName":"69ef61cff3a6d7d7d709d048_Surreal Silhouette Art (2)-p-500.webp","format":"webp","width":500,"size":7226,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cff3a6d7d7d709d048_Surreal%20Silhouette%20Art%20(2)-p-500.webp","_id":"69ef61d3ec70bb70433e4603"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cff3a6d7d7d709d048_Surreal%20Silhouette%20Art%20(2)-p-800.webp","origFileName":"Surreal%20Silhouette%20Art%20(2)-p-800.webp","fileName":"69ef61cff3a6d7d7d709d048_Surreal Silhouette Art (2)-p-800.webp","format":"webp","width":800,"size":13042,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cff3a6d7d7d709d048_Surreal%20Silhouette%20Art%20(2)-p-800.webp","_id":"69ef61d3ec70bb70433e4604"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cff3a6d7d7d709d048_Surreal%20Silhouette%20Art%20(2)-p-1080.webp","origFileName":"Surreal%20Silhouette%20Art%20(2)-p-1080.webp","fileName":"69ef61cff3a6d7d7d709d048_Surreal Silhouette Art (2)-p-1080.webp","format":"webp","width":1080,"size":20122,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cff3a6d7d7d709d048_Surreal%20Silhouette%20Art%20(2)-p-1080.webp","_id":"69ef61d3ec70bb70433e4605"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cff3a6d7d7d709d048_Surreal%20Silhouette%20Art%20(2).webp","thumbUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cff3a6d7d7d709d048_Surreal%20Silhouette%20Art%20(2).webp","_id":"69ef61cff3a6d7d7d709d048","updatedOn":"2026-04-27T13:17:20.870Z","fileSize":22550,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf40490f8d4f60256f_Surreal%20Silhouette%20Art%20(1)%20(1).webp","siteId":"6874e552da5c566d57024eda","width":1200,"isHD":false,"height":904,"fileName":"69ef61cf40490f8d4f60256f_Surreal Silhouette Art (1) (1).webp","createdOn":"2026-04-27T13:17:03.612Z","origFileName":"Surreal Silhouette Art (1) (1).webp","fileHash":"1c085db21d28e1b2ce66eed8ed03a1c4","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cf40490f8d4f60256f_Surreal%20Silhouette%20Art%20(1)%20(1)-p-500.webp","origFileName":"Surreal%20Silhouette%20Art%20(1)%20(1)-p-500.webp","fileName":"69ef61cf40490f8d4f60256f_Surreal Silhouette Art (1) (1)-p-500.webp","format":"webp","width":500,"size":10648,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf40490f8d4f60256f_Surreal%20Silhouette%20Art%20(1)%20(1)-p-500.webp","_id":"69ef61d3e1cfabe43403fad0"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cf40490f8d4f60256f_Surreal%20Silhouette%20Art%20(1)%20(1)-p-800.webp","origFileName":"Surreal%20Silhouette%20Art%20(1)%20(1)-p-800.webp","fileName":"69ef61cf40490f8d4f60256f_Surreal Silhouette Art (1) (1)-p-800.webp","format":"webp","width":800,"size":21208,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf40490f8d4f60256f_Surreal%20Silhouette%20Art%20(1)%20(1)-p-800.webp","_id":"69ef61d3e1cfabe43403fad1"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cf40490f8d4f60256f_Surreal%20Silhouette%20Art%20(1)%20(1)-p-1080.webp","origFileName":"Surreal%20Silhouette%20Art%20(1)%20(1)-p-1080.webp","fileName":"69ef61cf40490f8d4f60256f_Surreal Silhouette Art (1) (1)-p-1080.webp","format":"webp","width":1080,"size":37376,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf40490f8d4f60256f_Surreal%20Silhouette%20Art%20(1)%20(1)-p-1080.webp","_id":"69ef61d3e1cfabe43403fad2"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cf40490f8d4f60256f_Surreal%20Silhouette%20Art%20(1)%20(1).webp","thumbUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf40490f8d4f60256f_Surreal%20Silhouette%20Art%20(1)%20(1).webp","_id":"69ef61cf40490f8d4f60256f","updatedOn":"2026-04-27T13:17:20.867Z","fileSize":50618,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf3fdaadc4f4f9aaf9_Silhouette%20Motion%20Blur%20(1).webp","siteId":"6874e552da5c566d57024eda","width":1200,"isHD":false,"height":904,"fileName":"69ef61cf3fdaadc4f4f9aaf9_Silhouette Motion Blur (1).webp","createdOn":"2026-04-27T13:17:03.184Z","origFileName":"Silhouette Motion Blur (1).webp","fileHash":"73bdf6609b0cd402756d48e91d5800b8","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cf3fdaadc4f4f9aaf9_Silhouette%20Motion%20Blur%20(1)-p-500.webp","origFileName":"Silhouette%20Motion%20Blur%20(1)-p-500.webp","fileName":"69ef61cf3fdaadc4f4f9aaf9_Silhouette Motion Blur (1)-p-500.webp","format":"webp","width":500,"size":8374,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf3fdaadc4f4f9aaf9_Silhouette%20Motion%20Blur%20(1)-p-500.webp","_id":"69ef61d3a4ae383487986216"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cf3fdaadc4f4f9aaf9_Silhouette%20Motion%20Blur%20(1)-p-800.webp","origFileName":"Silhouette%20Motion%20Blur%20(1)-p-800.webp","fileName":"69ef61cf3fdaadc4f4f9aaf9_Silhouette Motion Blur (1)-p-800.webp","format":"webp","width":800,"size":15172,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf3fdaadc4f4f9aaf9_Silhouette%20Motion%20Blur%20(1)-p-800.webp","_id":"69ef61d3a4ae383487986217"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cf3fdaadc4f4f9aaf9_Silhouette%20Motion%20Blur%20(1)-p-1080.webp","origFileName":"Silhouette%20Motion%20Blur%20(1)-p-1080.webp","fileName":"69ef61cf3fdaadc4f4f9aaf9_Silhouette Motion Blur (1)-p-1080.webp","format":"webp","width":1080,"size":26372,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf3fdaadc4f4f9aaf9_Silhouette%20Motion%20Blur%20(1)-p-1080.webp","_id":"69ef61d3a4ae383487986218"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cf3fdaadc4f4f9aaf9_Silhouette%20Motion%20Blur%20(1).webp","thumbUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cf3fdaadc4f4f9aaf9_Silhouette%20Motion%20Blur%20(1).webp","_id":"69ef61cf3fdaadc4f4f9aaf9","updatedOn":"2026-04-27T13:17:20.855Z","fileSize":35484,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cef616dfb652a4eabb_Silhouette%20at%20Sunset%20(1).webp","siteId":"6874e552da5c566d57024eda","width":1200,"isHD":false,"height":904,"fileName":"69ef61cef616dfb652a4eabb_Silhouette at Sunset (1).webp","createdOn":"2026-04-27T13:17:02.861Z","origFileName":"Silhouette at Sunset (1).webp","fileHash":"589e7cc2e8c9489465832c8c5d193502","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cef616dfb652a4eabb_Silhouette%20at%20Sunset%20(1)-p-500.webp","origFileName":"Silhouette%20at%20Sunset%20(1)-p-500.webp","fileName":"69ef61cef616dfb652a4eabb_Silhouette at Sunset (1)-p-500.webp","format":"webp","width":500,"size":5678,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cef616dfb652a4eabb_Silhouette%20at%20Sunset%20(1)-p-500.webp","_id":"69ef61d4b1af056e69e55869"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cef616dfb652a4eabb_Silhouette%20at%20Sunset%20(1)-p-800.webp","origFileName":"Silhouette%20at%20Sunset%20(1)-p-800.webp","fileName":"69ef61cef616dfb652a4eabb_Silhouette at Sunset (1)-p-800.webp","format":"webp","width":800,"size":10724,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cef616dfb652a4eabb_Silhouette%20at%20Sunset%20(1)-p-800.webp","_id":"69ef61d4b1af056e69e5586a"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cef616dfb652a4eabb_Silhouette%20at%20Sunset%20(1)-p-1080.webp","origFileName":"Silhouette%20at%20Sunset%20(1)-p-1080.webp","fileName":"69ef61cef616dfb652a4eabb_Silhouette at Sunset (1)-p-1080.webp","format":"webp","width":1080,"size":16614,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cef616dfb652a4eabb_Silhouette%20at%20Sunset%20(1)-p-1080.webp","_id":"69ef61d4b1af056e69e5586b"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874e552da5c566d57024eda/69ef61cef616dfb652a4eabb_Silhouette%20at%20Sunset%20(1).webp","thumbUrl":"https://cdn.prod.website-files.com/6874e552da5c566d57024eda/69ef61cef616dfb652a4eabb_Silhouette%20at%20Sunset%20(1).webp","_id":"69ef61cef616dfb652a4eabb","updatedOn":"2026-04-27T13:17:20.841Z","fileSize":19680,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0,"richTextComponentsStripped":false}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"150c5076-5d05-c42c-5eaa-5215c9428f54","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["fbfa0e56-9848-c893-1e31-65ae4b810d1e"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"fbfa0e56-9848-c893-1e31-65ae4b810d1e","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af27147"],"children":["8a216da6-3e0a-478f-370c-bd072ba001c6","a4e17833-f088-fe24-b341-4287f99badb2","5ab3d404-979d-7d5b-dd4b-d6bce1090226","35c5307a-b41f-69f5-2be9-f90e59d0a017","62f6ca4d-904d-220a-481f-7f30c5854bd4","b19aed41-8d08-6d06-8533-e847b77d832d"],"data":{"tag":"div","text":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"8a216da6-3e0a-478f-370c-bd072ba001c6","type":"Block","tag":"div","classes":["55dd3d43-4771-b7a5-40c7-41a537b24223"],"children":[],"data":{"tag":"div","text":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"a4e17833-f088-fe24-b341-4287f99badb2","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5358"],"children":["63db24ca-52af-5e6f-2597-9f61508c206b"],"data":{"text":false,"tag":"div","attr":{"id":"page1"},"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"63db24ca-52af-5e6f-2597-9f61508c206b","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5359"],"children":["09f5b9a6-3fc9-62a4-1269-0a29770f675f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"09f5b9a6-3fc9-62a4-1269-0a29770f675f","type":"Image","tag":"img","classes":["7485b389-6821-4de1-a48f-350be7bb535a"],"children":[],"data":{"img":{"id":"686f9b05f4bfc0f5867eb7d7"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash.webp","loading":"eager","id":""},"sizes":[{"max":1200,"size":"100vw"},{"max":10000,"size":"1200px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"5ab3d404-979d-7d5b-dd4b-d6bce1090226","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb535b"],"children":["fd172610-a9e4-f365-1006-48d068e56e9f"],"data":{"text":false,"tag":"div","attr":{"id":"page2"},"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"fd172610-a9e4-f365-1006-48d068e56e9f","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5359"],"children":["bd9af6c8-d90c-2e24-f896-a725510a0c35"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"bd9af6c8-d90c-2e24-f896-a725510a0c35","type":"Image","tag":"img","classes":["7485b389-6821-4de1-a48f-350be7bb535a"],"children":[],"data":{"img":{"id":"686f9b05f4bfc0f5867eb7d9"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash.webp","loading":"eager","id":""},"sizes":[{"max":1200,"size":"100vw"},{"max":10000,"size":"1200px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"35c5307a-b41f-69f5-2be9-f90e59d0a017","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb535c"],"children":["9bdadcdf-4508-e483-47b6-30875703536f"],"data":{"text":false,"tag":"div","attr":{"id":"page3"},"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"9bdadcdf-4508-e483-47b6-30875703536f","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5359"],"children":["d8e188af-74e7-48ae-cf4a-3491d86c8dcf"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"d8e188af-74e7-48ae-cf4a-3491d86c8dcf","type":"Image","tag":"img","classes":["7485b389-6821-4de1-a48f-350be7bb535a"],"children":[],"data":{"img":{"id":"686f9b05f4bfc0f5867eb7da"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","loading":"eager","id":""},"sizes":[{"max":1200,"size":"100vw"},{"max":10000,"size":"1200px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"62f6ca4d-904d-220a-481f-7f30c5854bd4","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb535d"],"children":["a7415aba-6d7d-d4b3-e230-48c973d0a7e1"],"data":{"text":false,"tag":"div","attr":{"id":"page4"},"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"a7415aba-6d7d-d4b3-e230-48c973d0a7e1","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5359"],"children":["71ddf94c-87db-40e3-ae42-6117b27f9858"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"71ddf94c-87db-40e3-ae42-6117b27f9858","type":"Image","tag":"img","classes":["7485b389-6821-4de1-a48f-350be7bb535a"],"children":[],"data":{"img":{"id":"686f9b05f4bfc0f5867eb7d4"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","loading":"eager","id":""},"sizes":[{"max":1200,"size":"100vw"},{"max":10000,"size":"1200px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"b19aed41-8d08-6d06-8533-e847b77d832d","type":"DOM","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb535e"],"children":[],"data":{"tag":"canvas","attributes":[{"name":"id","value":"canvas"}],"slot":"","text":false,"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}}],"styles":[{"_id":"7485b389-6821-4de1-a48f-350be7bb535b","fake":false,"type":"class","name":"page2","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb535c","fake":false,"type":"class","name":"page3","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb5359","fake":false,"type":"class","name":"webgl","namespace":"","comb":"","styleLess":"width: 40vw; height: 25vw;","variants":{"small":{"styleLess":"width: 80%; height: 50vh;"},"tiny":{"styleLess":"height: 40vh;"},"medium":{"styleLess":"width: 60vw; height: 40vw;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb535d","fake":false,"type":"class","name":"page4","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"55dd3d43-4771-b7a5-40c7-41a537b24223","fake":false,"type":"class","name":"blank-section","namespace":"","comb":"","styleLess":"height: 100vh;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"07815991-952a-8d98-0e00-e4c25af27147","fake":false,"type":"class","name":"container-large","namespace":"","comb":"","styleLess":"width: 100%; max-width: 80rem; margin-right: auto; margin-left: auto;","variants":{},"children":[],"origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb5358","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb535e","fake":false,"type":"class","name":"canvas","namespace":"","comb":"","styleLess":"position: fixed; left: 0px; top: 0px; width: 100%; height: 100vh;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center;","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb535a","fake":false,"type":"class","name":"webgl-img","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; opacity: 0;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash.webp","siteId":"686f9b05f4bfc0f5867eb7bd","width":1200,"isHD":false,"height":904,"fileName":"686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash.webp","createdOn":"2025-06-20T12:32:59.402Z","origFileName":"reinaldo-photography--NEGehNFXF0-unsplash.webp","fileHash":"694440aa79bc5043c7e877e663b0ee8d","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-500.webp","origFileName":"9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-500.webp","fileName":"686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-500.webp","format":"webp","width":500,"size":7226,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-500.webp","_id":"69ef6276bf611b0945ec301a"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-800.webp","origFileName":"9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-800.webp","fileName":"686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-800.webp","format":"webp","width":800,"size":13042,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-800.webp","_id":"69ef6276bf611b0945ec301b"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-1080.webp","origFileName":"9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-1080.webp","fileName":"686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-1080.webp","format":"webp","width":1080,"size":20122,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash-p-1080.webp","_id":"69ef6276bf611b0945ec301c"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d7_9f8f9c5bb1aeb24de6fb1a04eadb89bb_reinaldo-photography--NEGehNFXF0-unsplash.webp","_id":"686f9b05f4bfc0f5867eb7d7","updatedOn":"2026-04-27T13:19:57.137Z","markedAsDeleted":false,"fileSize":22550,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash.webp","siteId":"686f9b05f4bfc0f5867eb7bd","width":1200,"isHD":false,"height":904,"fileName":"686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash.webp","createdOn":"2025-06-20T12:32:59.405Z","origFileName":"ryan-klaus--xdYKP0g_Pg-unsplash.webp","fileHash":"1c085db21d28e1b2ce66eed8ed03a1c4","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-500.webp","origFileName":"72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-500.webp","fileName":"686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-500.webp","format":"webp","width":500,"size":10648,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-500.webp","_id":"69ef626e46a0eeaf104a1af6"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-800.webp","origFileName":"72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-800.webp","fileName":"686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-800.webp","format":"webp","width":800,"size":21208,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-800.webp","_id":"69ef626e46a0eeaf104a1af7"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-1080.webp","origFileName":"72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-1080.webp","fileName":"686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-1080.webp","format":"webp","width":1080,"size":37376,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash-p-1080.webp","_id":"69ef626e46a0eeaf104a1af8"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d9_72d862ebe6dcff45bdde85ff888ba005_ryan-klaus--xdYKP0g_Pg-unsplash.webp","_id":"686f9b05f4bfc0f5867eb7d9","updatedOn":"2026-04-27T13:19:57.170Z","markedAsDeleted":false,"fileSize":50618,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","siteId":"686f9b05f4bfc0f5867eb7bd","width":1200,"isHD":false,"height":904,"fileName":"686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","createdOn":"2025-06-20T12:32:59.408Z","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileHash":"73bdf6609b0cd402756d48e91d5800b8","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-500.webp","origFileName":"4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-500.webp","fileName":"686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-500.webp","format":"webp","width":500,"size":8374,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-500.webp","_id":"69ef62664ee86c328c9f436b"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-800.webp","origFileName":"4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-800.webp","fileName":"686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-800.webp","format":"webp","width":800,"size":15172,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-800.webp","_id":"69ef62664ee86c328c9f436c"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-1080.webp","origFileName":"4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-1080.webp","fileName":"686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-1080.webp","format":"webp","width":1080,"size":26372,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-1080.webp","_id":"69ef62664ee86c328c9f436d"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7da_4ead635b2e1b289b8a235e08760628fa_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","_id":"686f9b05f4bfc0f5867eb7da","updatedOn":"2026-04-27T13:19:57.167Z","markedAsDeleted":false,"fileSize":35484,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","siteId":"686f9b05f4bfc0f5867eb7bd","width":1200,"isHD":false,"height":904,"fileName":"686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","createdOn":"2025-06-20T12:32:59.411Z","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileHash":"589e7cc2e8c9489465832c8c5d193502","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-500.webp","origFileName":"76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-500.webp","fileName":"686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-500.webp","format":"webp","width":500,"size":5678,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-500.webp","_id":"69ef625e3da996af2b8189e5"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-800.webp","origFileName":"76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-800.webp","fileName":"686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-800.webp","format":"webp","width":800,"size":10724,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-800.webp","_id":"69ef625e3da996af2b8189e6"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1080.webp","origFileName":"76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1080.webp","fileName":"686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1080.webp","format":"webp","width":1080,"size":16614,"quality":100,"cdnUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1080.webp","_id":"69ef625e3da996af2b8189e7"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/686f9b05f4bfc0f5867eb7bd/686f9b05f4bfc0f5867eb7d4_76bcdb308aff555d529a0c300052c0c1_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","_id":"686f9b05f4bfc0f5867eb7d4","updatedOn":"2026-04-27T13:19:57.141Z","markedAsDeleted":false,"fileSize":19680,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0,"richTextComponentsStripped":false}}
Clip Path
Infinity Slider
Add
Infinity Slider
Copy Component
Copy external scripts and paste it in the body
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>Copy javascript and paste it in the body
<script>
const projectData = [
{
title: "Euphoria",
img: "https://images.unsplash.com/photo-1731142590180-ead5b9ff5d8c?q=80&w=1914&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
isAlternate: false,
},
{
title: "Scratcher",
img: "https://images.unsplash.com/photo-1735661998642-71a998eaf912?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
isAlternate: true,
},
{
title: "Ember",
img: "https://images.unsplash.com/photo-1735925123257-460671c27fd1?q=80&w=1909&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
isAlternate: false,
},
{
title: "Liquid",
img: "https://images.unsplash.com/photo-1736195674419-f32b4f82a1df?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
isAlternate: true,
},
{
title: "Vacuum",
img: "https://images.unsplash.com/photo-1736612356978-df5dc8f678d0?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
isAlternate: false,
},
{
title: "Synthesis",
img: "https://images.unsplash.com/photo-1736580602062-885256588e01?q=80&w=1935&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
isAlternate: true,
},
];
const lerp = (start, end, factor) => start + (end - start) * factor;
const config = {
SCROLL_SPEED: 0.75,
LERP_FACTOR: 0.05,
BUFFER_SIZE: 15,
CLEANUP_THRESHOLD: 50,
MAX_VELOCITY: 120,
SNAP_DURATION: 500,
MOBILE_BREAKPOINT: 768, // Added mobile breakpoint
};
const state = {
currentY: 0,
targetY: 0,
lastY: 0,
scrollVelocity: 0,
isDragging: false,
startY: 0,
projects: new Map(),
parallaxImages: new Map(),
projectHeight: window.innerHeight,
isSnapping: false,
snapStartTime: 0,
snapStartY: 0,
snapTargetY: 0,
lastScrollTime: Date.now(),
isScrolling: false,
isMobile: window.innerWidth < config.MOBILE_BREAKPOINT, // Added mobile state
};
const createParallaxImage = (imageElement) => {
let bounds = null;
let currentTranslateY = 0;
let targetTranslateY = 0;
const updateBounds = () => {
if (imageElement) {
const rect = imageElement.getBoundingClientRect();
bounds = {
top: rect.top + window.scrollY,
bottom: rect.bottom + window.scrollY,
};
}
};
const update = (scroll) => {
if (!bounds || state.isMobile) return; // Disable parallax on mobile
const relativeScroll = -scroll - bounds.top;
targetTranslateY = relativeScroll * 0.2;
currentTranslateY = lerp(currentTranslateY, targetTranslateY, 0.1);
if (Math.abs(currentTranslateY - targetTranslateY) > 0.01) {
imageElement.style.transform = `translateY(${currentTranslateY}px) scale(1.5)`;
}
};
updateBounds();
return { update, updateBounds };
};
const getProjectData = (index) => {
const dataIndex =
((Math.abs(index) % projectData.length) + projectData.length) %
projectData.length;
return projectData[dataIndex];
};
const createProjectElement = (index) => {
if (state.projects.has(index)) return;
const template = document.querySelector(".template");
const project = template.cloneNode(true);
project.style.display = "flex";
project.classList.remove("template");
const data = getProjectData(index);
const projectNumber = ((Math.abs(index) % projectData.length) + 1).toString().padStart(2, "0");
// Mobile-first layout
project.innerHTML = state.isMobile ? `
<div class="mobile-layout">
<div class="title">
<h1>${data.title}</h1>
<h1>${projectNumber}</h1>
</div>
<div class="img"><img src="${data.img}" alt="${data.title}"></div>
</div>
` : (data.isAlternate ? `
<div class="side">
<div class="img"><img src="${data.img}" alt="${data.title}"></div>
</div>
<div class="side">
<div class="title">
<h1>${data.title}</h1>
<h1>${projectNumber}</h1>
</div>
</div>
` : `
<div class="side">
<div class="title">
<h1>${data.title}</h1>
<h1>${projectNumber}</h1>
</div>
</div>
<div class="side">
<div class="img"><img src="${data.img}" alt="${data.title}"></div>
</div>
`);
project.style.transform = `translateY(${index * state.projectHeight}px)`;
project.style.position = "absolute";
project.style.width = "100%";
project.style.height = "100vh";
document.querySelector(".project-list").appendChild(project);
state.projects.set(index, project);
const img = project.querySelector("img");
if (img) {
state.parallaxImages.set(index, createParallaxImage(img));
}
};
const createInitialProjects = () => {
for (let i = -config.BUFFER_SIZE; i < config.BUFFER_SIZE; i++) {
createProjectElement(i);
}
};
const getCurrentIndex = () => Math.round(-state.targetY / state.projectHeight);
const checkAndCreateProjects = () => {
const currentIndex = getCurrentIndex();
const minNeeded = currentIndex - config.BUFFER_SIZE;
const maxNeeded = currentIndex + config.BUFFER_SIZE;
for (let i = minNeeded; i <= maxNeeded; i++) {
if (!state.projects.has(i)) {
createProjectElement(i);
}
}
state.projects.forEach((project, index) => {
if (
index < currentIndex - config.CLEANUP_THRESHOLD ||
index > currentIndex + config.CLEANUP_THRESHOLD
) {
project.remove();
state.projects.delete(index);
state.parallaxImages.delete(index);
}
});
};
const getClosestSnapPoint = () => {
const currentIndex = Math.round(-state.targetY / state.projectHeight);
return -currentIndex * state.projectHeight;
};
const initialSnap = () => {
state.isSnapping = true;
state.snapStartTime = Date.now();
state.snapStartY = state.targetY;
state.snapTargetY = getClosestSnapPoint();
};
const updateSnap = () => {
const elapsed = Date.now() - state.snapStartTime;
const progress = Math.min(elapsed / config.SNAP_DURATION, 1);
const t = 1 - Math.pow(1 - progress, 3);
state.targetY = state.snapStartY + (state.snapTargetY - state.snapStartY) * t;
if (progress >= 1) {
state.isSnapping = false;
state.targetY = state.snapTargetY;
}
};
const animate = () => {
const now = Date.now();
const timeSinceLastScroll = now - state.lastScrollTime;
if (!state.isSnapping && !state.isScrolling && timeSinceLastScroll > 100) {
const snapPoint = getClosestSnapPoint();
if (Math.abs(state.targetY - snapPoint) > 1) {
initialSnap();
}
}
if (state.isSnapping) {
updateSnap();
}
if (!state.isDragging) {
state.currentY += (state.targetY - state.currentY) * config.LERP_FACTOR;
}
checkAndCreateProjects();
state.projects.forEach((project, index) => {
const y = index * state.projectHeight + state.currentY;
project.style.transform = `translateY(${y}px)`;
const parallaxImage = state.parallaxImages.get(index);
if (parallaxImage) {
parallaxImage.update(state.currentY);
}
});
requestAnimationFrame(animate);
};
const handleWheel = (e) => {
e.preventDefault();
state.isSnapping = false;
state.lastScrollTime = Date.now();
const scrollDelta = e.deltaY * config.SCROLL_SPEED;
state.targetY -= Math.max(
Math.min(scrollDelta, config.MAX_VELOCITY),
-config.MAX_VELOCITY
);
};
const handleTouchStart = (e) => {
state.isDragging = true;
state.isSnapping = false;
state.startY = e.touches[0].clientY;
state.lastY = state.targetY;
state.lastScrollTime = Date.now();
};
const handleTouchMove = (e) => {
if (!state.isDragging) return;
const deltaY = (e.touches[0].clientY - state.startY) * 1.5;
state.targetY = state.lastY + deltaY;
state.lastScrollTime = Date.now();
state.isScrolling = true;
};
const handleTouchEnd = () => {
state.isDragging = false;
};
const handleResize = () => {
state.projectHeight = window.innerHeight;
state.isMobile = window.innerWidth < config.MOBILE_BREAKPOINT;
// Recreate all projects with new layout
state.projects.forEach((project) => project.remove());
state.projects.clear();
state.parallaxImages.clear();
createInitialProjects();
state.projects.forEach((project, index) => {
project.style.transform = `translateY(${index * state.projectHeight}px)`;
const parallaxImage = state.parallaxImages.get(index);
if (parallaxImage) {
parallaxImage.updateBounds();
}
});
};
const initializeScroll = () => {
window.addEventListener("wheel", handleWheel, { passive: false });
window.addEventListener("touchstart", handleTouchStart);
window.addEventListener("touchmove", handleTouchMove);
window.addEventListener("touchend", handleTouchEnd);
window.addEventListener("resize", handleResize);
createInitialProjects();
animate();
};
document.addEventListener("DOMContentLoaded", initializeScroll);
</script>Copy styles and paste it in the head
Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"85c12d2b-f02b-f4c0-54f2-7b7d953ab420","type":"Section","tag":"section","classes":["8b59a30f-f38d-e0c8-d4ca-15cae737e66f"],"children":["80513999-a41e-25c1-8d22-40e1f1afaab0"],"data":{"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[{"name":"data-theme","value":"dark"}],"search":{"exclude":false},"visibility":{"conditions":[]},"grid":{"type":"section"}}},{"_id":"80513999-a41e-25c1-8d22-40e1f1afaab0","type":"Block","tag":"div","classes":["9e97bbeb-854e-5415-fea8-ba75271ad77b"],"children":["29152285-b405-e908-8d86-414c3e69dcae"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"29152285-b405-e908-8d86-414c3e69dcae","type":"Block","tag":"div","classes":["7490c1fd-d915-974c-dc25-fea12396a2ca"],"children":["3b1035a3-3e7d-bd0f-8e65-c117122cb586"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3b1035a3-3e7d-bd0f-8e65-c117122cb586","type":"Block","tag":"div","classes":["4d591ba7-cf58-3afd-f33b-fd415dbcc55d","e2428409-9539-2ece-25cd-265e8317d230"],"children":["3ee8af99-d0b7-e62d-2ef9-70d657c4f7b0","6ccd9193-38eb-3417-3f92-023484a722ec"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3ee8af99-d0b7-e62d-2ef9-70d657c4f7b0","type":"Block","tag":"div","classes":["5c07535a-9acc-ce7e-0964-3d89873f453f"],"children":["fd382d5f-f60a-c499-9900-b6d0ef173ff6"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fd382d5f-f60a-c499-9900-b6d0ef173ff6","type":"Block","tag":"div","classes":["95e814a0-7457-9878-91e4-fb39fdba2d1b"],"children":["2e222524-8110-30d1-cb6b-f26eb092520d","572ac114-2ae2-88c6-c284-13ab0fc88788"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2e222524-8110-30d1-cb6b-f26eb092520d","type":"Heading","tag":"h2","classes":["6691f992-f81d-43fc-405d-ca0b61771c4f"],"children":["4e63b2af-fe68-edd4-f393-67c47a37d162"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"4e63b2af-fe68-edd4-f393-67c47a37d162","text":true,"v":"Euphoria"},{"_id":"572ac114-2ae2-88c6-c284-13ab0fc88788","type":"Heading","tag":"h2","classes":["70909063-f595-1d48-5da7-84880516eeb4"],"children":["68afe8be-c781-328c-59be-26bfd0b9dd6d"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"68afe8be-c781-328c-59be-26bfd0b9dd6d","text":true,"v":"01"},{"_id":"6ccd9193-38eb-3417-3f92-023484a722ec","type":"Block","tag":"div","classes":["5c07535a-9acc-ce7e-0964-3d89873f453f"],"children":["a7f2091c-8ccc-8f7a-cc32-c0287229dc02"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a7f2091c-8ccc-8f7a-cc32-c0287229dc02","type":"Block","tag":"div","classes":["1c010459-a617-b269-f6db-b25642c097b4"],"children":["5d3d0158-cc62-764c-1ffa-135c8658cefc"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"5d3d0158-cc62-764c-1ffa-135c8658cefc","type":"Image","tag":"img","classes":["590a1bd2-6553-a276-ec5c-6bea5b270a54"],"children":[],"data":{"img":{"id":"plugins/Basic/assets/placeholder.svg"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg","loading":"lazy","id":""},"sizes":[],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}}],"styles":[{"_id":"e2428409-9539-2ece-25cd-265e8317d230","fake":false,"type":"class","name":"template","namespace":"","comb":"&","styleLess":"display: none;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"6691f992-f81d-43fc-405d-ca0b61771c4f","fake":false,"type":"class","name":"heading","namespace":"","comb":"","styleLess":"padding-top: 0.5em; padding-right: 0.5em; padding-bottom: 0.5em; padding-left: 0.5em; text-transform: uppercase;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"8b59a30f-f38d-e0c8-d4ca-15cae737e66f","fake":false,"type":"class","name":"anim_wrap","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; background-color: black;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"5c07535a-9acc-ce7e-0964-3d89873f453f","fake":false,"type":"class","name":"side","namespace":"","comb":"","styleLess":"overflow: hidden; height: 100%; flex: @raw<|1|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"4d591ba7-cf58-3afd-f33b-fd415dbcc55d","fake":false,"type":"class","name":"project","namespace":"","comb":"","styleLess":"position: absolute; left: 0px; display: flex; overflow: hidden; width: 100vw; height: 100vh; will-change: @raw<|transform|>;","variants":{},"children":["e2428409-9539-2ece-25cd-265e8317d230"],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"1c010459-a617-b269-f6db-b25642c097b4","fake":false,"type":"class","name":"img","namespace":"","comb":"","styleLess":"overflow: hidden; width: 100%; height: 100%;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"95e814a0-7457-9878-91e4-fb39fdba2d1b","fake":false,"type":"class","name":"title","namespace":"","comb":"","styleLess":"display: flex; justify-content: center; align-items: center; font-size: 2.5rem; line-height: 1.5; font-weight: 500;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"70909063-f595-1d48-5da7-84880516eeb4","fake":false,"type":"class","name":"title-heading","namespace":"","comb":"","styleLess":"padding-top: 0.5em; padding-right: 0.5em; padding-bottom: 0.5em; padding-left: 0.5em; font-weight: 500; text-transform: uppercase;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"590a1bd2-6553-a276-ec5c-6bea5b270a54","fake":false,"type":"class","name":"image","namespace":"","comb":"","styleLess":"position: relative; height: 100%; transform: scale(1.5) translate(0px, 0px); object-fit: cover; will-change: @raw<|transform|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7490c1fd-d915-974c-dc25-fea12396a2ca","fake":false,"type":"class","name":"project-list","namespace":"","comb":"","styleLess":"position: absolute; width: 100%; will-change: @raw<|transform|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"9e97bbeb-854e-5415-fea8-ba75271ad77b","fake":false,"type":"class","name":"container","namespace":"","comb":"","styleLess":"position: fixed; width: 100%; height: 100vh;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"9a93e86f-9e59-8625-973e-7cced57e3077","type":"Block","tag":"div","classes":["9869e2c9-18da-14ff-33be-b24682df7914"],"children":["1d991961-090b-70bd-d0c4-7d66ad9dfb6b"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1d991961-090b-70bd-d0c4-7d66ad9dfb6b","type":"Block","tag":"div","classes":["ac751ef2-1eb5-a030-f95c-43fa7d569904"],"children":["e43aad54-2112-1bea-98af-51effac133a6"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e43aad54-2112-1bea-98af-51effac133a6","type":"Block","tag":"div","classes":["4d39540b-0651-23b4-0563-a988db0c8ee6"],"children":["81f0ee0e-f580-2e4a-12b9-39499183c4ae"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"81f0ee0e-f580-2e4a-12b9-39499183c4ae","type":"Block","tag":"div","classes":["aaab6531-2a7e-7638-1d97-cbaa5223bcdf","304892e7-09d2-1b3c-8441-a3453ddfd938"],"children":["491f9107-67ab-feb4-0cc5-e20e33ee2113","0ffa79f7-0841-9a23-266e-93290525fecc"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"491f9107-67ab-feb4-0cc5-e20e33ee2113","type":"Block","tag":"div","classes":["10c5122d-0d6a-7396-2eb3-769ab305e9f4"],"children":["6b8bbfb8-4efa-674d-0551-112ad861544a"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6b8bbfb8-4efa-674d-0551-112ad861544a","type":"Block","tag":"div","classes":["50afd45a-8bf0-6df0-fdea-4f9f02260157"],"children":["11932be3-b21e-7bcf-d6d0-dae68b8084cc","4aba6563-7f99-b1f7-dbf5-9922c8b5fd7e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"11932be3-b21e-7bcf-d6d0-dae68b8084cc","type":"Heading","tag":"h2","classes":["76ddd5f7-b8a4-1b2e-a874-5a4f374b6d81"],"children":["8cee41b7-5e3c-0a92-38a2-0f8a2a909d81"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"8cee41b7-5e3c-0a92-38a2-0f8a2a909d81","text":true,"v":"Euphoria"},{"_id":"4aba6563-7f99-b1f7-dbf5-9922c8b5fd7e","type":"Heading","tag":"h2","classes":["0974b267-56b7-924c-260b-7e6868539f83"],"children":["19dc9a9a-4087-6846-0687-e5731f58698e"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"19dc9a9a-4087-6846-0687-e5731f58698e","text":true,"v":"01"},{"_id":"0ffa79f7-0841-9a23-266e-93290525fecc","type":"Block","tag":"div","classes":["10c5122d-0d6a-7396-2eb3-769ab305e9f4"],"children":["f96c34a8-68f7-18f7-1184-5c3a0598b20f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"f96c34a8-68f7-18f7-1184-5c3a0598b20f","type":"Block","tag":"div","classes":["e32e7cc5-9419-b2e4-b212-dc9b88ed707f"],"children":["703db675-f482-a918-9d47-4d4b6eeac7b8"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"703db675-f482-a918-9d47-4d4b6eeac7b8","type":"Image","tag":"img","classes":["7834946f-b154-d7e5-a45a-07c58b303b9a"],"children":[],"data":{"img":{"id":"plugins/Basic/assets/placeholder.svg"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg","loading":"lazy","id":""},"sizes":[],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}}],"styles":[{"_id":"ac751ef2-1eb5-a030-f95c-43fa7d569904","fake":false,"type":"class","name":"container","namespace":"","comb":"","styleLess":"width: 100%; height: 100vh;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7834946f-b154-d7e5-a45a-07c58b303b9a","fake":false,"type":"class","name":"image","namespace":"","comb":"","styleLess":"position: relative; width: 100%; height: 100%; transform: scale(1.5) translate(0px, 0px); object-fit: cover; will-change: @raw<|transform|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"50afd45a-8bf0-6df0-fdea-4f9f02260157","fake":false,"type":"class","name":"title","namespace":"","comb":"","styleLess":"display: flex; justify-content: center; align-items: center; font-size: 2.5rem; font-weight: 500;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"e32e7cc5-9419-b2e4-b212-dc9b88ed707f","fake":false,"type":"class","name":"img","namespace":"","comb":"","styleLess":"overflow: hidden; width: 100%; height: 100%;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"4d39540b-0651-23b4-0563-a988db0c8ee6","fake":false,"type":"class","name":"project-list","namespace":"","comb":"","styleLess":"position: absolute; width: 100%; will-change: @raw<|transform|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"aaab6531-2a7e-7638-1d97-cbaa5223bcdf","fake":false,"type":"class","name":"project","namespace":"","comb":"","styleLess":"position: absolute; left: 0px; display: flex; overflow: hidden; width: 100vw; height: 100vh; will-change: @raw<|transform|>;","variants":{},"children":["304892e7-09d2-1b3c-8441-a3453ddfd938"],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"9869e2c9-18da-14ff-33be-b24682df7914","fake":false,"type":"class","name":"anim_wrapper","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; background-color: black;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"0974b267-56b7-924c-260b-7e6868539f83","fake":false,"type":"class","name":"title-heading","namespace":"","comb":"","styleLess":"padding-top: 0.5em; padding-right: 0.5em; padding-bottom: 0.5em; padding-left: 0.5em; color: hsla(0, 0.00%, 100.00%, 1.00); font-weight: 500; text-transform: uppercase;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"304892e7-09d2-1b3c-8441-a3453ddfd938","fake":false,"type":"class","name":"template","namespace":"","comb":"&","styleLess":"display: none;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"76ddd5f7-b8a4-1b2e-a874-5a4f374b6d81","fake":false,"type":"class","name":"heading","namespace":"","comb":"","styleLess":"padding-top: 0.5em; padding-right: 0.5em; padding-bottom: 0.5em; padding-left: 0.5em; color: hsla(0, 0.00%, 100.00%, 1.00); text-transform: uppercase;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"10c5122d-0d6a-7396-2eb3-769ab305e9f4","fake":false,"type":"class","name":"side","namespace":"","comb":"","styleLess":"overflow: hidden; height: 100%; flex: @raw<|1|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
UI
On Scroll Image Grid
Add
On Scroll Image Grid
Copy Component
Copy external scripts and paste it in the body
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/Flip.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/ScrollTrigger.min.js"></script>Copy javascript and paste it in the body
<script>
document.addEventListener("DOMContentLoaded", (event) => {
gsap.registerPlugin(Flip, ScrollTrigger);
// gsap code here!
const cards = document.querySelectorAll(".card");
let cols, rows, centerCol, centerRow;
// Function to determine grid dimensions based on screen size
function updateGridDimensions() {
// Check if we're on mobile (using the same breakpoint as in CSS)
if (window.innerWidth <= 768) {
cols = 3;
rows = 4;
} else {
cols = 4;
rows = 3;
}
// Find the center of the grid
centerCol = (cols - 1) / 2;
centerRow = (rows - 1) / 2;
}
// Initialize grid dimensions
updateGridDimensions();
// Update dimensions on window resize
window.addEventListener("resize", () => {
updateGridDimensions();
setInitialCardPositions();
});
const maxRotation = 45; // Increased maximum rotation for corner cards
const maxZ = -1500; // Maximum z-index for corner cards
const midZ = -1000; // Z value for middle cards to make them more prominent
// Function to set initial positions for cards
function setInitialCardPositions() {
// Set initial z and rotation for each card based on distance from center
cards.forEach((card, i) => {
const row = Math.floor(i / cols);
const col = i % cols;
// Calculate distance from center (0 to 1 scale)
const dist =
Math.sqrt(Math.pow(col - centerCol, 2) + Math.pow(row - centerRow, 2)) /
Math.sqrt(Math.pow(centerCol, 2) + Math.pow(centerRow, 2));
// Add randomness factor (0.8 to 1.2)
const randomFactor = 0.8 + Math.random() * 0.9;
// Modified z calculation to give middle cards more z presence
// Cards closer to center will have z values around midZ
// Corner cards will still have z values closer to maxZ
let z;
if (dist < 0.3) {
// Middle cards - more prominent z
z = midZ * randomFactor;
} else {
// Outer cards - gradually decrease to maxZ
z = maxZ * dist * randomFactor;
}
// More distance = more rotation with randomness
// Calculate rotation direction based on position relative to center
const rotationY = (col - centerCol) * maxRotation * dist * randomFactor;
const rotationX = (row - centerRow) * maxRotation * dist * randomFactor;
// Add slight random rotation on Z axis for more natural feel
const rotationZ = (Math.random() - 0.5) * 10 * dist;
gsap.set(card, {
z: z,
rotationX: -rotationX,
rotationY: rotationY,
rotationZ: rotationZ,
opacity: 0,
});
});
}
// Set initial positions
setInitialCardPositions();
// Animate all cards to z: 0 and rotation: 0
const tl = gsap.timeline({
scrollTrigger: {
trigger: ".page1",
start: "top top",
end: "+=400%",
scrub: 1,
pin: true,
},
});
tl.to(cards, {
z: 0,
rotationX: 0,
rotationY: 0,
rotationZ: 0,
opacity: 1,
duration: 1,
ease: "power2.out",
stagger: 0.0, // Added slight stagger for more interesting animation
});
});
</script>Copy styles and paste it in the head
Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"b361b512-9978-1f61-814a-f4f45bbe9559","type":"Block","tag":"div","classes":["4265dc5e-44c1-9675-8f61-2766709941df"],"children":["dd02bde0-fef0-0785-be69-036f80a9a7f4","aef13adc-d24a-3467-b3fd-c204189120a8","7e7a7da0-b153-fddf-a5cf-074e3b6f9f00"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"dd02bde0-fef0-0785-be69-036f80a9a7f4","type":"Block","tag":"div","classes":["c7c41523-3ca9-44ea-cac3-2b06f3c7f50d"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"aef13adc-d24a-3467-b3fd-c204189120a8","type":"Block","tag":"div","classes":["f908c4e7-c32a-e65b-313c-454361df4607"],"children":["cf6b9dbb-2dbb-2c5a-da7a-3220ac76cbc2"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"cf6b9dbb-2dbb-2c5a-da7a-3220ac76cbc2","type":"Block","tag":"div","classes":["034beba6-2540-4559-6112-72c549506388"],"children":["3508a535-7268-2462-bcc9-ecf605a978dc","be7cec67-9f65-379a-9bc8-52a66a66ba00","0420faf1-5d77-0010-9730-f2c260d6fd5d","76733e83-bcba-7c65-7940-7f38464412ac","079376cd-64bd-8bbe-a829-bc923c7f22df","20dee590-e73f-be49-aa48-544ee28686e9","fed38a57-7f41-3be0-fb56-da9e0d1c70aa","4103852f-c33b-2d44-51a6-4b3f5273115c","6650ceb5-3913-9045-9f8d-177a7dca24bf","46d4a4ab-2ac5-ac7e-01b3-8ad30429c242","38f605fc-5a7a-1886-70b5-82b882107c55","d66dadc2-42d2-6c0b-dab0-971db8545122"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3508a535-7268-2462-bcc9-ecf605a978dc","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["9776c109-2712-8a5e-bbd5-5d9bdfcadb77"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"9776c109-2712-8a5e-bbd5-5d9bdfcadb77","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c28020c002703673481cb2"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"be7cec67-9f65-379a-9bc8-52a66a66ba00","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["3d003d7b-1596-da67-0448-df2393358101"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"3d003d7b-1596-da67-0448-df2393358101","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c2801f32539330b206470a"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0420faf1-5d77-0010-9730-f2c260d6fd5d","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["19f5be90-e4a2-a7da-554b-8edea3f3af6f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"19f5be90-e4a2-a7da-554b-8edea3f3af6f","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c27ff13b1d66a910610fa9"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"76733e83-bcba-7c65-7940-7f38464412ac","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["42ca4722-87fb-98e5-097c-eba7d1c94719"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"42ca4722-87fb-98e5-097c-eba7d1c94719","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"6874a4e186f65ce5c127a8a2"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5208,"size":"100vw"},{"max":10000,"size":"5208px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"079376cd-64bd-8bbe-a829-bc923c7f22df","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["93e04836-4adb-96be-bfc1-bc6868e08cbf"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"93e04836-4adb-96be-bfc1-bc6868e08cbf","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"6874a4e186f65ce5c127a8a1"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"20dee590-e73f-be49-aa48-544ee28686e9","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["8cbbf779-81da-8132-a5d0-54adc49aee67"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"8cbbf779-81da-8132-a5d0-54adc49aee67","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"6874a4e186f65ce5c127a8a0"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fed38a57-7f41-3be0-fb56-da9e0d1c70aa","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["0498d007-a76f-96c1-14a5-dd5de361ae17"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"0498d007-a76f-96c1-14a5-dd5de361ae17","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"6874a4e186f65ce5c127a89f"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"4103852f-c33b-2d44-51a6-4b3f5273115c","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["a32da574-5b20-3f35-6167-95f282f5f45c"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"a32da574-5b20-3f35-6167-95f282f5f45c","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"6874a4e186f65ce5c127a89e"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5208,"size":"100vw"},{"max":10000,"size":"5208px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6650ceb5-3913-9045-9f8d-177a7dca24bf","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["ca41c042-c493-0ce3-3944-20aa3bb1405e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"ca41c042-c493-0ce3-3944-20aa3bb1405e","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"6874a4e186f65ce5c127a89d"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"46d4a4ab-2ac5-ac7e-01b3-8ad30429c242","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["42ac4b03-d928-6ef9-7c0b-47b45774f4a5"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"42ac4b03-d928-6ef9-7c0b-47b45774f4a5","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"6874a4e186f65ce5c127a89c"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"38f605fc-5a7a-1886-70b5-82b882107c55","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["91bc773e-dfc7-4e1d-ef26-a51c78cc210c"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"91bc773e-dfc7-4e1d-ef26-a51c78cc210c","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"6874a4e186f65ce5c127a88b"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d66dadc2-42d2-6c0b-dab0-971db8545122","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["4968a658-7a47-a997-4746-4ab3f63e011f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"4968a658-7a47-a997-4746-4ab3f63e011f","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"6874a4e186f65ce5c127a88c"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5208,"size":"100vw"},{"max":10000,"size":"5208px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"7e7a7da0-b153-fddf-a5cf-074e3b6f9f00","type":"Block","tag":"div","classes":["c7c41523-3ca9-44ea-cac3-2b06f3c7f50d"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}}],"styles":[{"_id":"4265dc5e-44c1-9675-8f61-2766709941df","fake":false,"type":"class","name":"anim_wrapper","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"c7c41523-3ca9-44ea-cac3-2b06f3c7f50d","fake":false,"type":"class","name":"test","namespace":"","comb":"","styleLess":"width: 100%; height: 100vh; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"f908c4e7-c32a-e65b-313c-454361df4607","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"position: relative; width: 100%; height: 100vh; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"034beba6-2540-4559-6112-72c549506388","fake":false,"type":"class","name":"card-container","namespace":"","comb":"","styleLess":"position: absolute; left: 50%; top: 50%; display: grid; overflow: hidden; width: 90%; height: 140vh; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; grid-auto-columns: 1fr; grid-column-gap: 10px; grid-row-gap: 10px; transform: translate(-50%, -50%); grid-template-columns: @raw<|repeat(4,1fr)|>; grid-template-rows: @raw<|repeat(3,1fr)|>; perspective: @raw<|1000px|>;","variants":{"medium":{"styleLess":"height: 50vh; grid-template-columns: @raw<|repeat(3,1fr)|>; grid-template-rows: @raw<|repeat(4,1fr)|>;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"8688dd7c-ad25-3c86-9f1b-f4118eb1f120","fake":false,"type":"class","name":"card","namespace":"","comb":"","styleLess":"display: flex; overflow: hidden; width: 100%; height: 100%; align-items: center; background-color: black; justify-content: @raw<|center|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"07b517d2-5330-19a8-a9e2-b1640c19315b","fake":false,"type":"class","name":"image","namespace":"","comb":"","styleLess":"height: 100%; object-fit: fill;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5207,"isHD":false,"height":4628,"fileName":"68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash.webp","createdOn":"2025-09-11T07:54:08.188Z","origFileName":"robert-bye-WTPp4wgourk-unsplash.webp","fileHash":"218669d30a9fef55b1508cb944f609f5","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-500.webp","origFileName":"robert-bye-WTPp4wgourk-unsplash.webp","fileName":"68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-500.webp","size":538,"format":"webp","width":500,"quality":100,"_id":"68c2b438a895ad71628c728b","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-800.webp","origFileName":"robert-bye-WTPp4wgourk-unsplash.webp","fileName":"68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-800.webp","size":1262,"format":"webp","width":800,"quality":100,"_id":"68c2b438a895ad71628c728c","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-1080.webp","origFileName":"robert-bye-WTPp4wgourk-unsplash.webp","fileName":"68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-1080.webp","size":2340,"format":"webp","width":1080,"quality":100,"_id":"68c2b438a895ad71628c728d","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-1600.webp","origFileName":"robert-bye-WTPp4wgourk-unsplash.webp","fileName":"68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-1600.webp","size":4942,"format":"webp","width":1600,"quality":100,"_id":"68c2b438a895ad71628c728e","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-2000.webp","origFileName":"robert-bye-WTPp4wgourk-unsplash.webp","fileName":"68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-2000.webp","size":7782,"format":"webp","width":2000,"quality":100,"_id":"68c2b438a895ad71628c728f","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-2600.webp","origFileName":"robert-bye-WTPp4wgourk-unsplash.webp","fileName":"68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-2600.webp","size":12700,"format":"webp","width":2600,"quality":100,"_id":"68c2b438a895ad71628c7290","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-3200.webp","origFileName":"robert-bye-WTPp4wgourk-unsplash.webp","fileName":"68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-3200.webp","size":18652,"format":"webp","width":3200,"quality":100,"_id":"68c2b438a895ad71628c7291","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c28020c002703673481cb2_ca94f3f5f9d6a415cffb3506f89746aa_robert-bye-WTPp4wgourk-unsplash.webp","_id":"68c28020c002703673481cb2","updatedOn":"2025-09-11T11:42:38.311Z","fileSize":46804,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5207,"isHD":false,"height":4628,"fileName":"6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash.webp","createdOn":"2025-07-11T13:33:29.674Z","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileHash":"eb93abdee5d4cc154d986128b1422151","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp","size":3946,"format":"webp","width":500,"quality":100,"_id":"68c2b4a589441ef6a074accf","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-800.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-800.webp","size":7004,"format":"webp","width":800,"quality":100,"_id":"68c2b4a589441ef6a074acd0","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-1080.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-1080.webp","size":11044,"format":"webp","width":1080,"quality":100,"_id":"68c2b4a589441ef6a074acd1","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-1600.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-1600.webp","size":19314,"format":"webp","width":1600,"quality":100,"_id":"68c2b4a589441ef6a074acd2","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-2000.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-2000.webp","size":27120,"format":"webp","width":2000,"quality":100,"_id":"68c2b4a589441ef6a074acd3","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-2600.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-2600.webp","size":40084,"format":"webp","width":2600,"quality":100,"_id":"68c2b4a589441ef6a074acd4","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-3200.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-3200.webp","size":54336,"format":"webp","width":3200,"quality":100,"_id":"68c2b4a589441ef6a074acd5","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89d_48e05e66e3e50c66bc68dceae67cc7f6_zhen-mogila-iYw2XrxRslA-unsplash.webp","_id":"6874a4e186f65ce5c127a89d","updatedOn":"2025-09-11T11:42:30.599Z","fileSize":113736,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5208,"isHD":false,"height":4628,"fileName":"6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash.webp","createdOn":"2025-05-14T12:27:38.884Z","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileHash":"f8ef164c76cc694fe76bc3b524659c8e","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp","size":2678,"format":"webp","width":500,"quality":100,"_id":"68c2b4ce8575dcd1469af28b","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-800.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-800.webp","size":5200,"format":"webp","width":800,"quality":100,"_id":"68c2b4ce8575dcd1469af28c","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-1080.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-1080.webp","size":9024,"format":"webp","width":1080,"quality":100,"_id":"68c2b4ce8575dcd1469af28d","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-1600.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-1600.webp","size":16824,"format":"webp","width":1600,"quality":100,"_id":"68c2b4ce8575dcd1469af28e","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-2000.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-2000.webp","size":23818,"format":"webp","width":2000,"quality":100,"_id":"68c2b4ce8575dcd1469af28f","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-2600.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-2600.webp","size":35260,"format":"webp","width":2600,"quality":100,"_id":"68c2b4ce8575dcd1469af290","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-3200.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-3200.webp","size":48184,"format":"webp","width":3200,"quality":100,"_id":"68c2b4ce8575dcd1469af291","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88c_17efccbc0070aac38b20718498af1853_jan-huber-hkmiiz2C3ts-unsplash.webp","_id":"6874a4e186f65ce5c127a88c","updatedOn":"2025-09-11T11:42:32.825Z","fileSize":99200,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5207,"isHD":false,"height":4628,"fileName":"68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash.webp","createdOn":"2025-09-11T07:54:07.652Z","origFileName":"ramiro-pianarosa-hiMEqdypubg-unsplash.webp","fileHash":"7832586f8e5a36e7f8381749325b7013","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-500.webp","origFileName":"ramiro-pianarosa-hiMEqdypubg-unsplash.webp","fileName":"68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-500.webp","size":3650,"format":"webp","width":500,"quality":100,"_id":"68c2b441414cdc0cd48cbe45","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-800.webp","origFileName":"ramiro-pianarosa-hiMEqdypubg-unsplash.webp","fileName":"68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-800.webp","size":6710,"format":"webp","width":800,"quality":100,"_id":"68c2b441414cdc0cd48cbe46","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-1080.webp","origFileName":"ramiro-pianarosa-hiMEqdypubg-unsplash.webp","fileName":"68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-1080.webp","size":10964,"format":"webp","width":1080,"quality":100,"_id":"68c2b441414cdc0cd48cbe47","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-1600.webp","origFileName":"ramiro-pianarosa-hiMEqdypubg-unsplash.webp","fileName":"68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-1600.webp","size":19862,"format":"webp","width":1600,"quality":100,"_id":"68c2b441414cdc0cd48cbe48","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-2000.webp","origFileName":"ramiro-pianarosa-hiMEqdypubg-unsplash.webp","fileName":"68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-2000.webp","size":28120,"format":"webp","width":2000,"quality":100,"_id":"68c2b441414cdc0cd48cbe49","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-2600.webp","origFileName":"ramiro-pianarosa-hiMEqdypubg-unsplash.webp","fileName":"68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-2600.webp","size":41630,"format":"webp","width":2600,"quality":100,"_id":"68c2b441414cdc0cd48cbe4a","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-3200.webp","origFileName":"ramiro-pianarosa-hiMEqdypubg-unsplash.webp","fileName":"68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-3200.webp","size":56006,"format":"webp","width":3200,"quality":100,"_id":"68c2b441414cdc0cd48cbe4b","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c2801f32539330b206470a_9b395db1484feccb8b80248e802d3228_ramiro-pianarosa-hiMEqdypubg-unsplash.webp","_id":"68c2801f32539330b206470a","updatedOn":"2025-09-11T11:42:38.330Z","fileSize":111658,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5207,"isHD":false,"height":4628,"fileName":"6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash.webp","createdOn":"2025-07-11T13:34:10.877Z","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileHash":"1c1b5bc8be9a86e3e11de26733f0e088","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp","size":5016,"format":"webp","width":500,"quality":100,"_id":"68c2b4739c9180d359202868","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-800.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-800.webp","size":9438,"format":"webp","width":800,"quality":100,"_id":"68c2b4739c9180d359202869","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-1080.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-1080.webp","size":14482,"format":"webp","width":1080,"quality":100,"_id":"68c2b4739c9180d35920286a","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-1600.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-1600.webp","size":26152,"format":"webp","width":1600,"quality":100,"_id":"68c2b4739c9180d35920286b","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-2000.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-2000.webp","size":36170,"format":"webp","width":2000,"quality":100,"_id":"68c2b4739c9180d35920286c","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-2600.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-2600.webp","size":52638,"format":"webp","width":2600,"quality":100,"_id":"68c2b4739c9180d35920286d","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-3200.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-3200.webp","size":70488,"format":"webp","width":3200,"quality":100,"_id":"68c2b4739c9180d35920286e","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a0_f6d69ec501626a9f5059ffcdb529abe6_andre-benz-PKAW8MQYlU8-unsplash.webp","_id":"6874a4e186f65ce5c127a8a0","updatedOn":"2025-09-11T11:42:34.690Z","fileSize":138468,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5208,"isHD":false,"height":4628,"fileName":"6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash.webp","createdOn":"2025-07-11T13:33:30.153Z","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileHash":"003a0c49131fdc2190edf226ce6e211f","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp","size":794,"format":"webp","width":500,"quality":100,"_id":"68c2b49083086644246b8d6e","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp","size":1730,"format":"webp","width":800,"quality":100,"_id":"68c2b49083086644246b8d6f","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp","size":3040,"format":"webp","width":1080,"quality":100,"_id":"68c2b49083086644246b8d70","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp","size":6088,"format":"webp","width":1600,"quality":100,"_id":"68c2b49083086644246b8d71","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-2000.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-2000.webp","size":9186,"format":"webp","width":2000,"quality":100,"_id":"68c2b49083086644246b8d72","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-2600.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-2600.webp","size":14626,"format":"webp","width":2600,"quality":100,"_id":"68c2b49083086644246b8d73","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-3200.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-3200.webp","size":21000,"format":"webp","width":3200,"quality":100,"_id":"68c2b49083086644246b8d74","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89e_5c250451e69965e380c27b056b01a44b_pascal-bullan-2OQEaRFwJdI-unsplash.webp","_id":"6874a4e186f65ce5c127a89e","updatedOn":"2025-09-11T11:42:30.659Z","fileSize":50020,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5207,"isHD":false,"height":4628,"fileName":"6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash.webp","createdOn":"2025-07-11T13:33:30.171Z","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileHash":"1f9756993b4ed510b89b0048674cd1c3","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp","size":3326,"format":"webp","width":500,"quality":100,"_id":"68c2b47b93367ba5a11d6bdc","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp","size":5888,"format":"webp","width":800,"quality":100,"_id":"68c2b47b93367ba5a11d6bdd","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp","size":9762,"format":"webp","width":1080,"quality":100,"_id":"68c2b47b93367ba5a11d6bde","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp","size":17842,"format":"webp","width":1600,"quality":100,"_id":"68c2b47b93367ba5a11d6bdf","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-2000.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-2000.webp","size":25062,"format":"webp","width":2000,"quality":100,"_id":"68c2b47b93367ba5a11d6be0","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-2600.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-2600.webp","size":36746,"format":"webp","width":2600,"quality":100,"_id":"68c2b47b93367ba5a11d6be1","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-3200.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-3200.webp","size":49286,"format":"webp","width":3200,"quality":100,"_id":"68c2b47b93367ba5a11d6be2","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89f_a1dd67fe3a58b93a5dd5ec30549bad99_luca-bravo-WeFDiEDModQ-unsplash.webp","_id":"6874a4e186f65ce5c127a89f","updatedOn":"2025-09-11T11:42:34.578Z","fileSize":99350,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5207,"isHD":false,"height":4628,"fileName":"68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","createdOn":"2025-09-11T07:53:21.413Z","origFileName":"nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","fileHash":"f3f1efa68db1cd628d04d14b3c8bffa9","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-500.webp","origFileName":"nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","fileName":"68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-500.webp","size":1448,"format":"webp","width":500,"quality":100,"_id":"68c2b44b81578425a44bd21a","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-800.webp","origFileName":"nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","fileName":"68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-800.webp","size":2838,"format":"webp","width":800,"quality":100,"_id":"68c2b44b81578425a44bd21b","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-1080.webp","origFileName":"nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","fileName":"68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-1080.webp","size":5244,"format":"webp","width":1080,"quality":100,"_id":"68c2b44b81578425a44bd21c","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-1600.webp","origFileName":"nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","fileName":"68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-1600.webp","size":10884,"format":"webp","width":1600,"quality":100,"_id":"68c2b44b81578425a44bd21d","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-2000.webp","origFileName":"nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","fileName":"68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-2000.webp","size":15724,"format":"webp","width":2000,"quality":100,"_id":"68c2b44b81578425a44bd21e","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-2600.webp","origFileName":"nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","fileName":"68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-2600.webp","size":24466,"format":"webp","width":2600,"quality":100,"_id":"68c2b44b81578425a44bd21f","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-3200.webp","origFileName":"nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","fileName":"68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-3200.webp","size":33758,"format":"webp","width":3200,"quality":100,"_id":"68c2b44b81578425a44bd220","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/68c27ff13b1d66a910610fa9_6a5c883404115bc538170a9c1837a7ad_nataliya-smirnova-rbeIG_Jpvv0-unsplash.webp","_id":"68c27ff13b1d66a910610fa9","updatedOn":"2025-09-11T11:42:36.626Z","fileSize":72760,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5207,"isHD":false,"height":4628,"fileName":"6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash.webp","createdOn":"2025-07-11T13:33:28.794Z","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileHash":"3eaa8414587ae1040e820b2323f88168","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp","size":3834,"format":"webp","width":500,"quality":100,"_id":"68c2b4bb178b3b625b04c125","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp","size":7184,"format":"webp","width":800,"quality":100,"_id":"68c2b4bb178b3b625b04c126","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp","size":11150,"format":"webp","width":1080,"quality":100,"_id":"68c2b4bb178b3b625b04c127","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp","size":19990,"format":"webp","width":1600,"quality":100,"_id":"68c2b4bb178b3b625b04c128","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-2000.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-2000.webp","size":28030,"format":"webp","width":2000,"quality":100,"_id":"68c2b4bb178b3b625b04c129","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-2600.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-2600.webp","size":41482,"format":"webp","width":2600,"quality":100,"_id":"68c2b4bb178b3b625b04c12a","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-3200.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-3200.webp","size":56734,"format":"webp","width":3200,"quality":100,"_id":"68c2b4bb178b3b625b04c12b","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a89c_af8972e80a71ffb74b8c8458f6e6fe0a_jordan-steranka-64LL2fP9uXM-unsplash.webp","_id":"6874a4e186f65ce5c127a89c","updatedOn":"2025-09-11T11:42:31.132Z","fileSize":117886,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5207,"isHD":false,"height":4628,"fileName":"6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash.webp","createdOn":"2025-05-14T12:27:38.888Z","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileHash":"9e125a1c1a5984033835312e9c752325","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp","size":3138,"format":"webp","width":500,"quality":100,"_id":"68c2b4c381ae6a01085bbab6","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-800.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-800.webp","size":5624,"format":"webp","width":800,"quality":100,"_id":"68c2b4c381ae6a01085bbab7","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-1080.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-1080.webp","size":8688,"format":"webp","width":1080,"quality":100,"_id":"68c2b4c381ae6a01085bbab8","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-1600.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-1600.webp","size":15956,"format":"webp","width":1600,"quality":100,"_id":"68c2b4c381ae6a01085bbab9","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-2000.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-2000.webp","size":22366,"format":"webp","width":2000,"quality":100,"_id":"68c2b4c381ae6a01085bbaba","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-2600.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-2600.webp","size":33734,"format":"webp","width":2600,"quality":100,"_id":"68c2b4c381ae6a01085bbabb","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-3200.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-3200.webp","size":45846,"format":"webp","width":3200,"quality":100,"_id":"68c2b4c381ae6a01085bbabc","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a88b_011ea6bf891df47bd750ac27f1b295cd_patrick-bald-llZIWkNGzS4-unsplash.webp","_id":"6874a4e186f65ce5c127a88b","updatedOn":"2025-09-11T11:42:30.844Z","fileSize":94964,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5208,"isHD":false,"height":4628,"fileName":"6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash.webp","createdOn":"2025-07-11T13:34:11.423Z","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileHash":"6d26f513a317fee142fb0348563c4a34","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","size":590,"format":"webp","width":500,"quality":100,"_id":"68c2b4512e3dbaef5e6d5a64","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","size":1378,"format":"webp","width":800,"quality":100,"_id":"68c2b4512e3dbaef5e6d5a65","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp","size":2484,"format":"webp","width":1080,"quality":100,"_id":"68c2b4512e3dbaef5e6d5a66","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-1600.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-1600.webp","size":5168,"format":"webp","width":1600,"quality":100,"_id":"68c2b4512e3dbaef5e6d5a67","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-2000.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-2000.webp","size":7982,"format":"webp","width":2000,"quality":100,"_id":"68c2b4512e3dbaef5e6d5a68","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-2600.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-2600.webp","size":12868,"format":"webp","width":2600,"quality":100,"_id":"68c2b4512e3dbaef5e6d5a69","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-3200.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-3200.webp","size":18818,"format":"webp","width":3200,"quality":100,"_id":"68c2b4512e3dbaef5e6d5a6a","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a2_0f9b7b814bb7344a1a83cfffa84d1ba7_guillaume-briard-zuDk8NunJ3I-unsplash.webp","_id":"6874a4e186f65ce5c127a8a2","updatedOn":"2025-09-11T11:42:35.619Z","fileSize":46886,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","siteId":"6874a4e186f65ce5c127a86f","width":5207,"isHD":false,"height":4628,"fileName":"6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","createdOn":"2025-07-11T13:34:11.417Z","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileHash":"1608cb237bd9e0af592547ece9b81c38","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-500.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-500.webp","size":578,"format":"webp","width":500,"quality":100,"_id":"68c2b45d412545dbbbc8d19b","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-800.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-800.webp","size":1382,"format":"webp","width":800,"quality":100,"_id":"68c2b45d412545dbbbc8d19c","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-1080.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-1080.webp","size":2480,"format":"webp","width":1080,"quality":100,"_id":"68c2b45d412545dbbbc8d19d","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-1600.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-1600.webp","size":5094,"format":"webp","width":1600,"quality":100,"_id":"68c2b45d412545dbbbc8d19e","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-2000.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-2000.webp","size":7960,"format":"webp","width":2000,"quality":100,"_id":"68c2b45d412545dbbbc8d19f","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-2600.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-2600.webp","size":12836,"format":"webp","width":2600,"quality":100,"_id":"68c2b45d412545dbbbc8d1a0","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-3200.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-3200.webp","size":18780,"format":"webp","width":3200,"quality":100,"_id":"68c2b45d412545dbbbc8d1a1","cdnUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874a4e186f65ce5c127a86f/6874a4e186f65ce5c127a8a1_55a98c92a7a1fce460d849b2a4747e65_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","_id":"6874a4e186f65ce5c127a8a1","updatedOn":"2025-09-11T11:42:34.845Z","fileSize":46480,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"862b086f-280b-b665-da51-29708ecee754","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["2ca4a22e-3202-817c-c107-5c1e120c62cb","569d18c2-6524-0337-9e58-7bd49cfb87f6","b6acec9a-9ece-b6fd-c36b-bddbc2c3f3ed"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2ca4a22e-3202-817c-c107-5c1e120c62cb","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf14"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"569d18c2-6524-0337-9e58-7bd49cfb87f6","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5358"],"children":["289508cd-fd26-23a8-857e-a2dcb4a583a2"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"289508cd-fd26-23a8-857e-a2dcb4a583a2","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf15"],"children":["6bb9c4c6-0f13-64af-052e-983d63328135","3264f795-2247-4e67-3b23-0ffe64794827","367fc193-cd35-b721-02fc-905865b261c7","41f8e75f-a17d-fdd6-fbaf-79277cb955c0","929c2734-7755-0372-ce3e-83fae31eb996","c0ae2bd8-7028-d838-89e5-6d961843940e","06e1a2e9-1036-41df-aebd-ff5cf3cb2232","49bce615-e469-3208-1e8e-6758b4584b82","6546e93e-c906-3161-ecb7-71981611b52c","42aa0aad-1b57-6173-7066-26e3cca22ef8","65324b87-0165-7bb6-472c-7b68a6479534","6e664731-f8ff-37d2-0920-777d908a0494"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6bb9c4c6-0f13-64af-052e-983d63328135","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["ea80b376-2418-3470-9446-f9dc08ce60da"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ea80b376-2418-3470-9446-f9dc08ce60da","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68774889a222038342baac37"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3264f795-2247-4e67-3b23-0ffe64794827","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["6950adbc-49cf-abbe-47f6-730a1a2fbd3e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"6950adbc-49cf-abbe-47f6-730a1a2fbd3e","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68774889a222038342baac34"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"367fc193-cd35-b721-02fc-905865b261c7","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["4f328844-5e2b-c80c-4e60-a415a8792efb"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"4f328844-5e2b-c80c-4e60-a415a8792efb","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68774889a222038342baac26"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"41f8e75f-a17d-fdd6-fbaf-79277cb955c0","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["ebfd8a6b-00ed-4939-304a-929a12bd0b72"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"ebfd8a6b-00ed-4939-304a-929a12bd0b72","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68774889a222038342baac2e"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5208,"size":"100vw"},{"max":10000,"size":"5208px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"929c2734-7755-0372-ce3e-83fae31eb996","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["79adf50e-54ec-640d-2499-3b017a80147e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"79adf50e-54ec-640d-2499-3b017a80147e","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68774889a222038342baac3b"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"c0ae2bd8-7028-d838-89e5-6d961843940e","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["6f906612-dd2d-a74b-3a37-32f29a502645"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"6f906612-dd2d-a74b-3a37-32f29a502645","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68774889a222038342baac31"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"06e1a2e9-1036-41df-aebd-ff5cf3cb2232","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["3d87731a-795e-b56b-b17e-7fc29ff2a7e2"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"3d87731a-795e-b56b-b17e-7fc29ff2a7e2","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68774889a222038342baac2b"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"49bce615-e469-3208-1e8e-6758b4584b82","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["f0f1c2a8-9519-4c3b-ca32-3cab9416e70f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"f0f1c2a8-9519-4c3b-ca32-3cab9416e70f","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"6876566b0cabe8902028b5b7"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5208,"size":"100vw"},{"max":10000,"size":"5208px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6546e93e-c906-3161-ecb7-71981611b52c","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["57abc99a-b14a-2246-4a50-f94d4b6c1cfd"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"57abc99a-b14a-2246-4a50-f94d4b6c1cfd","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"6876566b0cabe8902028b5ad"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"42aa0aad-1b57-6173-7066-26e3cca22ef8","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["27b6b2d7-4568-53ab-9d5a-f5c44be289c6"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"27b6b2d7-4568-53ab-9d5a-f5c44be289c6","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"6876566b0cabe8902028b5b4"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"65324b87-0165-7bb6-472c-7b68a6479534","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["3d2dc88e-35aa-7d4e-ea70-a0584985949a"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"3d2dc88e-35aa-7d4e-ea70-a0584985949a","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"6876566b0cabe8902028b5b5"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5207,"size":"100vw"},{"max":10000,"size":"5207px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6e664731-f8ff-37d2-0920-777d908a0494","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf16"],"children":["8448b019-0097-c6e9-b8af-36c2346b0db7"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"8448b019-0097-c6e9-b8af-36c2346b0db7","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"6876566b0cabe8902028b5b2"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":5208,"size":"100vw"},{"max":10000,"size":"5208px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b6acec9a-9ece-b6fd-c36b-bddbc2c3f3ed","type":"Block","tag":"div","classes":["f515ada4-9337-5d6c-0ca9-1794fca1bf14"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}}],"styles":[{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center;","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"f515ada4-9337-5d6c-0ca9-1794fca1bf14","fake":false,"type":"class","name":"test","namespace":"","comb":"","styleLess":"width: 100%; height: 100vh; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb5358","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"position: relative; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"f515ada4-9337-5d6c-0ca9-1794fca1bf15","fake":false,"type":"class","name":"card-container","namespace":"","comb":"","styleLess":"position: absolute; left: 50%; top: 50%; display: grid; overflow: hidden; width: 90%; height: 140vh; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; grid-auto-columns: 1fr; grid-column-gap: 10px; grid-row-gap: 10px; transform: translate(-50%, -50%); grid-template-columns: @raw<|repeat(4,1fr)|>; grid-template-rows: @raw<|repeat(3,1fr)|>; perspective: @raw<|1000px|>;","variants":{"medium":{"styleLess":"height: 50vh; grid-template-columns: @raw<|repeat(3,1fr)|>; grid-template-rows: @raw<|repeat(4,1fr)|>;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"f515ada4-9337-5d6c-0ca9-1794fca1bf16","fake":false,"type":"class","name":"card","namespace":"","comb":"","styleLess":"display: flex; overflow: hidden; width: 100%; height: 100%; align-items: center; background-color: black; justify-content: @raw<|center|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"4a1bff29-f0bf-99e7-f985-30bf93bcfe42","fake":false,"type":"class","name":"image","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; object-fit: fill;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5207,"isHD":false,"height":4628,"fileName":"68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash.webp","createdOn":"2025-07-16T06:36:58.052Z","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileHash":"7832586f8e5a36e7f8381749325b7013","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp","size":3650,"format":"webp","width":500,"quality":100,"_id":"68c2ab0329de89f3693aa215","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp","size":6710,"format":"webp","width":800,"quality":100,"_id":"68c2ab0329de89f3693aa216","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp","size":10964,"format":"webp","width":1080,"quality":100,"_id":"68c2ab0329de89f3693aa217","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp","size":19862,"format":"webp","width":1600,"quality":100,"_id":"68c2ab0329de89f3693aa218","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-2000.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-2000.webp","size":28120,"format":"webp","width":2000,"quality":100,"_id":"68c2ab0329de89f3693aa219","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-2600.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-2600.webp","size":41630,"format":"webp","width":2600,"quality":100,"_id":"68c2ab0329de89f3693aa21a","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-3200.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-3200.webp","size":56006,"format":"webp","width":3200,"quality":100,"_id":"68c2ab0329de89f3693aa21b","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac34_9b395db1484feccb8b80248e802d3228_luca-bravo-WeFDiEDModQ-unsplash.webp","_id":"68774889a222038342baac34","updatedOn":"2025-09-11T11:35:39.857Z","fileSize":111658,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5208,"isHD":false,"height":4628,"fileName":"6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash.webp","createdOn":"2025-07-02T07:20:00.292Z","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileHash":"003a0c49131fdc2190edf226ce6e211f","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-500.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-500.webp","size":794,"format":"webp","width":500,"quality":100,"_id":"68c2ab3c949cb0ccf82f2e65","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-800.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-800.webp","size":1730,"format":"webp","width":800,"quality":100,"_id":"68c2ab3c949cb0ccf82f2e66","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-1080.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-1080.webp","size":3040,"format":"webp","width":1080,"quality":100,"_id":"68c2ab3c949cb0ccf82f2e67","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-1600.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-1600.webp","size":6088,"format":"webp","width":1600,"quality":100,"_id":"68c2ab3c949cb0ccf82f2e68","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-2000.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-2000.webp","size":9186,"format":"webp","width":2000,"quality":100,"_id":"68c2ab3c949cb0ccf82f2e69","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-2600.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-2600.webp","size":14626,"format":"webp","width":2600,"quality":100,"_id":"68c2ab3c949cb0ccf82f2e6a","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-3200.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-3200.webp","size":21000,"format":"webp","width":3200,"quality":100,"_id":"68c2ab3c949cb0ccf82f2e6b","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b7_5c250451e69965e380c27b056b01a44b_zany-jadraque-ZCRtfop2hZY-unsplash.webp","_id":"6876566b0cabe8902028b5b7","updatedOn":"2025-09-11T11:35:33.387Z","fileSize":50020,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5207,"isHD":false,"height":4628,"fileName":"6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash.webp","createdOn":"2025-07-02T07:20:00.287Z","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileHash":"eb93abdee5d4cc154d986128b1422151","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-500.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-500.webp","size":3946,"format":"webp","width":500,"quality":100,"_id":"68c2ab4a084011741e3dd153","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-800.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-800.webp","size":7004,"format":"webp","width":800,"quality":100,"_id":"68c2ab4a084011741e3dd154","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-1080.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-1080.webp","size":11044,"format":"webp","width":1080,"quality":100,"_id":"68c2ab4a084011741e3dd155","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-1600.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-1600.webp","size":19314,"format":"webp","width":1600,"quality":100,"_id":"68c2ab4a084011741e3dd156","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-2000.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-2000.webp","size":27120,"format":"webp","width":2000,"quality":100,"_id":"68c2ab4a084011741e3dd157","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-2600.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-2600.webp","size":40084,"format":"webp","width":2600,"quality":100,"_id":"68c2ab4a084011741e3dd158","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-3200.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-3200.webp","size":54336,"format":"webp","width":3200,"quality":100,"_id":"68c2ab4a084011741e3dd159","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5ad_48e05e66e3e50c66bc68dceae67cc7f6_quino-al-mBQIfKlvowM-unsplash.webp","_id":"6876566b0cabe8902028b5ad","updatedOn":"2025-09-11T11:35:33.275Z","fileSize":113736,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5207,"isHD":false,"height":4628,"fileName":"68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash.webp","createdOn":"2025-07-16T06:36:58.055Z","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileHash":"218669d30a9fef55b1508cb944f609f5","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp","size":538,"format":"webp","width":500,"quality":100,"_id":"68c2abb1bc809a0e30c434cf","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-800.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-800.webp","size":1262,"format":"webp","width":800,"quality":100,"_id":"68c2abb1bc809a0e30c434d0","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-1080.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-1080.webp","size":2340,"format":"webp","width":1080,"quality":100,"_id":"68c2abb1bc809a0e30c434d1","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-1600.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-1600.webp","size":4942,"format":"webp","width":1600,"quality":100,"_id":"68c2abb1bc809a0e30c434d2","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-2000.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-2000.webp","size":7782,"format":"webp","width":2000,"quality":100,"_id":"68c2abb1bc809a0e30c434d3","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-2600.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-2600.webp","size":12700,"format":"webp","width":2600,"quality":100,"_id":"68c2abb1bc809a0e30c434d4","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-3200.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-3200.webp","size":18652,"format":"webp","width":3200,"quality":100,"_id":"68c2abb1bc809a0e30c434d5","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac37_ca94f3f5f9d6a415cffb3506f89746aa_zhen-mogila-iYw2XrxRslA-unsplash.webp","_id":"68774889a222038342baac37","updatedOn":"2025-09-11T11:35:40.910Z","fileSize":46804,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5207,"isHD":false,"height":4628,"fileName":"68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash.webp","createdOn":"2025-07-16T06:36:58.050Z","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileHash":"f3f1efa68db1cd628d04d14b3c8bffa9","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","size":1448,"format":"webp","width":500,"quality":100,"_id":"68c2ab0725b371feed9fd1d6","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","size":2838,"format":"webp","width":800,"quality":100,"_id":"68c2ab0725b371feed9fd1d7","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp","size":5244,"format":"webp","width":1080,"quality":100,"_id":"68c2ab0725b371feed9fd1d8","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-1600.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-1600.webp","size":10884,"format":"webp","width":1600,"quality":100,"_id":"68c2ab0725b371feed9fd1d9","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-2000.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-2000.webp","size":15724,"format":"webp","width":2000,"quality":100,"_id":"68c2ab0725b371feed9fd1da","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-2600.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-2600.webp","size":24466,"format":"webp","width":2600,"quality":100,"_id":"68c2ab0725b371feed9fd1db","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-3200.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-3200.webp","size":33758,"format":"webp","width":3200,"quality":100,"_id":"68c2ab0725b371feed9fd1dc","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac26_6a5c883404115bc538170a9c1837a7ad_guillaume-briard-zuDk8NunJ3I-unsplash.webp","_id":"68774889a222038342baac26","updatedOn":"2025-09-11T11:35:37.392Z","fileSize":72760,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5207,"isHD":false,"height":4628,"fileName":"68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash.webp","createdOn":"2025-07-16T06:36:58.040Z","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileHash":"1608cb237bd9e0af592547ece9b81c38","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp","size":578,"format":"webp","width":500,"quality":100,"_id":"68c2ab1f44cc545bec180b88","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp","size":1382,"format":"webp","width":800,"quality":100,"_id":"68c2ab1f44cc545bec180b89","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp","size":2480,"format":"webp","width":1080,"quality":100,"_id":"68c2ab1f44cc545bec180b8a","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp","size":5094,"format":"webp","width":1600,"quality":100,"_id":"68c2ab1f44cc545bec180b8b","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-2000.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-2000.webp","size":7960,"format":"webp","width":2000,"quality":100,"_id":"68c2ab1f44cc545bec180b8c","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-2600.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-2600.webp","size":12836,"format":"webp","width":2600,"quality":100,"_id":"68c2ab1f44cc545bec180b8d","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-3200.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-3200.webp","size":18780,"format":"webp","width":3200,"quality":100,"_id":"68c2ab1f44cc545bec180b8e","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac3b_55a98c92a7a1fce460d849b2a4747e65_pascal-bullan-2OQEaRFwJdI-unsplash.webp","_id":"68774889a222038342baac3b","updatedOn":"2025-09-11T11:35:41.110Z","fileSize":46480,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5207,"isHD":false,"height":4628,"fileName":"68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash.webp","createdOn":"2025-07-16T06:36:58.038Z","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileHash":"1c1b5bc8be9a86e3e11de26733f0e088","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp","size":5016,"format":"webp","width":500,"quality":100,"_id":"68c2ab2c14bff80c2ccbf00c","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp","size":9438,"format":"webp","width":800,"quality":100,"_id":"68c2ab2c14bff80c2ccbf00d","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp","size":14482,"format":"webp","width":1080,"quality":100,"_id":"68c2ab2c14bff80c2ccbf00e","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp","size":26152,"format":"webp","width":1600,"quality":100,"_id":"68c2ab2c14bff80c2ccbf00f","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-2000.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-2000.webp","size":36170,"format":"webp","width":2000,"quality":100,"_id":"68c2ab2c14bff80c2ccbf010","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-2600.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-2600.webp","size":52638,"format":"webp","width":2600,"quality":100,"_id":"68c2ab2c14bff80c2ccbf011","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-3200.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-3200.webp","size":70488,"format":"webp","width":3200,"quality":100,"_id":"68c2ab2c14bff80c2ccbf012","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac31_f6d69ec501626a9f5059ffcdb529abe6_jordan-steranka-64LL2fP9uXM-unsplash.webp","_id":"68774889a222038342baac31","updatedOn":"2025-09-11T11:35:38.525Z","fileSize":138468,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5208,"isHD":false,"height":4628,"fileName":"68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash.webp","createdOn":"2025-07-16T06:36:58.042Z","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileHash":"6d26f513a317fee142fb0348563c4a34","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp","size":590,"format":"webp","width":500,"quality":100,"_id":"68c2ab1579c2a5b3f6333ade","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-800.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-800.webp","size":1378,"format":"webp","width":800,"quality":100,"_id":"68c2ab1579c2a5b3f6333adf","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-1080.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-1080.webp","size":2484,"format":"webp","width":1080,"quality":100,"_id":"68c2ab1579c2a5b3f6333ae0","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-1600.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-1600.webp","size":5168,"format":"webp","width":1600,"quality":100,"_id":"68c2ab1579c2a5b3f6333ae1","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-2000.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-2000.webp","size":7982,"format":"webp","width":2000,"quality":100,"_id":"68c2ab1579c2a5b3f6333ae2","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-2600.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-2600.webp","size":12868,"format":"webp","width":2600,"quality":100,"_id":"68c2ab1579c2a5b3f6333ae3","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-3200.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-3200.webp","size":18818,"format":"webp","width":3200,"quality":100,"_id":"68c2ab1579c2a5b3f6333ae4","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2e_0f9b7b814bb7344a1a83cfffa84d1ba7_patrick-bald-llZIWkNGzS4-unsplash.webp","_id":"68774889a222038342baac2e","updatedOn":"2025-09-11T11:35:37.853Z","fileSize":46886,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5207,"isHD":false,"height":4628,"fileName":"68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash.webp","createdOn":"2025-07-16T06:36:58.035Z","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileHash":"1f9756993b4ed510b89b0048674cd1c3","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp","size":3326,"format":"webp","width":500,"quality":100,"_id":"68c2ab32da35f51ce7f597d0","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-800.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-800.webp","size":5888,"format":"webp","width":800,"quality":100,"_id":"68c2ab32da35f51ce7f597d1","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-1080.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-1080.webp","size":9762,"format":"webp","width":1080,"quality":100,"_id":"68c2ab32da35f51ce7f597d2","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-1600.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-1600.webp","size":17842,"format":"webp","width":1600,"quality":100,"_id":"68c2ab32da35f51ce7f597d3","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-2000.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-2000.webp","size":25062,"format":"webp","width":2000,"quality":100,"_id":"68c2ab32da35f51ce7f597d4","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-2600.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-2600.webp","size":36746,"format":"webp","width":2600,"quality":100,"_id":"68c2ab32da35f51ce7f597d5","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-3200.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-3200.webp","size":49286,"format":"webp","width":3200,"quality":100,"_id":"68c2ab32da35f51ce7f597d6","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/68774889a222038342baac2b_a1dd67fe3a58b93a5dd5ec30549bad99_jan-huber-hkmiiz2C3ts-unsplash.webp","_id":"68774889a222038342baac2b","updatedOn":"2025-09-11T11:35:37.243Z","fileSize":99350,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5208,"isHD":false,"height":4628,"fileName":"6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","createdOn":"2025-06-20T12:32:59.408Z","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileHash":"f8ef164c76cc694fe76bc3b524659c8e","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-500.webp","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileName":"6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-500.webp","size":2678,"format":"webp","width":500,"quality":100,"_id":"68c2ab727d97c10418e45aca","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-800.webp","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileName":"6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-800.webp","size":5200,"format":"webp","width":800,"quality":100,"_id":"68c2ab727d97c10418e45acb","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-1080.webp","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileName":"6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-1080.webp","size":9024,"format":"webp","width":1080,"quality":100,"_id":"68c2ab727d97c10418e45acc","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-1600.webp","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileName":"6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-1600.webp","size":16824,"format":"webp","width":1600,"quality":100,"_id":"68c2ab727d97c10418e45acd","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-2000.webp","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileName":"6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-2000.webp","size":23818,"format":"webp","width":2000,"quality":100,"_id":"68c2ab727d97c10418e45ace","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-2600.webp","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileName":"6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-2600.webp","size":35260,"format":"webp","width":2600,"quality":100,"_id":"68c2ab727d97c10418e45acf","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-3200.webp","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileName":"6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-3200.webp","size":48184,"format":"webp","width":3200,"quality":100,"_id":"68c2ab727d97c10418e45ad0","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b2_17efccbc0070aac38b20718498af1853_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","_id":"6876566b0cabe8902028b5b2","updatedOn":"2025-09-11T11:35:35.615Z","markedAsDeleted":false,"fileSize":99200,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5207,"isHD":false,"height":4628,"fileName":"6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash.webp","createdOn":"2025-07-02T07:20:00.283Z","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileHash":"3eaa8414587ae1040e820b2323f88168","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-500.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-500.webp","size":3834,"format":"webp","width":500,"quality":100,"_id":"68c2ab6046bf825d7fcccffd","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-800.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-800.webp","size":7184,"format":"webp","width":800,"quality":100,"_id":"68c2ab6046bf825d7fcccffe","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-1080.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-1080.webp","size":11150,"format":"webp","width":1080,"quality":100,"_id":"68c2ab6046bf825d7fcccfff","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-1600.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-1600.webp","size":19990,"format":"webp","width":1600,"quality":100,"_id":"68c2ab6046bf825d7fccd000","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-2000.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-2000.webp","size":28030,"format":"webp","width":2000,"quality":100,"_id":"68c2ab6046bf825d7fccd001","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-2600.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-2600.webp","size":41482,"format":"webp","width":2600,"quality":100,"_id":"68c2ab6046bf825d7fccd002","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-3200.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-3200.webp","size":56734,"format":"webp","width":3200,"quality":100,"_id":"68c2ab6046bf825d7fccd003","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b4_af8972e80a71ffb74b8c8458f6e6fe0a_samuel-ferrara-1527pjeb6jg-unsplash.webp","_id":"6876566b0cabe8902028b5b4","updatedOn":"2025-09-11T11:35:33.968Z","fileSize":117886,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","siteId":"6876566b0cabe8902028b598","width":5207,"isHD":false,"height":4628,"fileName":"6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","createdOn":"2025-06-20T12:32:59.411Z","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileHash":"9e125a1c1a5984033835312e9c752325","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-500.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-500.webp","size":3138,"format":"webp","width":500,"quality":100,"_id":"68c2ab6a29dbfc705561d796","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-800.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-800.webp","size":5624,"format":"webp","width":800,"quality":100,"_id":"68c2ab6a29dbfc705561d797","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1080.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1080.webp","size":8688,"format":"webp","width":1080,"quality":100,"_id":"68c2ab6a29dbfc705561d798","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1600.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1600.webp","size":15956,"format":"webp","width":1600,"quality":100,"_id":"68c2ab6a29dbfc705561d799","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-2000.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-2000.webp","size":22366,"format":"webp","width":2000,"quality":100,"_id":"68c2ab6a29dbfc705561d79a","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-2000.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-2600.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-2600.webp","size":33734,"format":"webp","width":2600,"quality":100,"_id":"68c2ab6a29dbfc705561d79b","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-2600.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-3200.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-3200.webp","size":45846,"format":"webp","width":3200,"quality":100,"_id":"68c2ab6a29dbfc705561d79c","cdnUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash-p-3200.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6876566b0cabe8902028b598/6876566b0cabe8902028b5b5_011ea6bf891df47bd750ac27f1b295cd_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","_id":"6876566b0cabe8902028b5b5","updatedOn":"2025-09-11T11:35:33.477Z","markedAsDeleted":false,"fileSize":94964,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
UI
On Scroll Image Grid
Add
On Scroll Image Grid
Copy Component
Copy external scripts and paste it in the body
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/Flip.min.js"></script>Copy javascript and paste it in the body
<script>
document.addEventListener("DOMContentLoaded", (event) => {
gsap.registerPlugin(Flip, ScrollTrigger);
// gsap code here!
const tl = gsap.timeline({
scrollTrigger: {
trigger: ".page1",
start: "top top",
end: "+=400%",
scrub: 2,
pin: true,
},
});
// Get all cards
const cards = document.querySelectorAll(".card");
// Set initial random positions for all cards
cards.forEach((card) => {
// Generate random positions off-screen
const randomX = gsap.utils.random(-200, 200);
const randomY = gsap.utils.random(-1000, 1000);
// Set initial position
gsap.set(card, {
x: randomX,
y: randomY,
opacity: 0,
});
// Animate cards to their original position on scroll
tl.to(
card,
{
x: 0,
y: 0,
rotation: 0,
opacity: 1,
duration: 1,
ease: "power2.out",
},
"<+=0.1"
); // Slight stagger between each card
});
});
</script>Copy styles and paste it in the head
Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"b8728e64-c6f5-922c-5f08-fc4478383e97","type":"Block","tag":"div","classes":["4265dc5e-44c1-9675-8f61-2766709941df"],"children":["51bb83ee-fd7b-e4d7-ad87-000040c1e196","4f3b2fd6-a86b-cb17-65c7-89a77a3addbb","6cafd10c-8779-1999-a409-e87e23f2f32a"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"51bb83ee-fd7b-e4d7-ad87-000040c1e196","type":"Block","tag":"div","classes":["c7c41523-3ca9-44ea-cac3-2b06f3c7f50d"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"4f3b2fd6-a86b-cb17-65c7-89a77a3addbb","type":"Block","tag":"div","classes":["f908c4e7-c32a-e65b-313c-454361df4607"],"children":["d1418f1e-61e3-4301-c0b5-b585dbde922d"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d1418f1e-61e3-4301-c0b5-b585dbde922d","type":"Block","tag":"div","classes":["034beba6-2540-4559-6112-72c549506388"],"children":["e40f5038-9955-e76d-2cc0-48afaa3deea7","abb315de-0f53-c442-a4ba-03dbe69b672d","af11725c-e0dd-7277-ad93-27dc32e00f7d","f6e28e65-f963-4edc-a896-26c08492e563","c2f17007-b551-429b-4f3f-7a1b23c9fb2a","c2f6a3fd-0389-d961-24a3-fa94782ca826","b78c9ccf-88f1-67ec-0b7a-161a34cdda24","177c6eb2-2d8b-a179-6aa4-3a7f25f6de45","b91dc151-8990-1483-7ea9-e7157a335616","763eb52a-0657-b6d7-cf16-f48bebedff95","802a9201-d0a2-ddf0-6c6a-1002a15193c0","74353191-3cfa-9a3d-ef9e-1c2fca7ff7a7","7a53d62f-03e9-250a-95b5-dea3115cdf53","c8f43147-4599-8de7-7a73-233a1860f276","e447b7c0-4faf-9875-1e85-67cfc6e807e7","bb6d97e2-af63-97a0-74c6-544174c7b26c"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e40f5038-9955-e76d-2cc0-48afaa3deea7","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["3b68b825-cc3e-933b-f8b5-adbb70370cba"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3b68b825-cc3e-933b-f8b5-adbb70370cba","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68710f10ee69d3ee6d00260c"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260c_jan-huber-hkmiiz2C3ts-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"abb315de-0f53-c442-a4ba-03dbe69b672d","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["ae851d7e-f9a5-ef61-5679-c811dbfd2cde"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"ae851d7e-f9a5-ef61-5679-c811dbfd2cde","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68710f10ee69d3ee6d00260a"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260a_patrick-bald-llZIWkNGzS4-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"af11725c-e0dd-7277-ad93-27dc32e00f7d","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["358f93da-a199-50b1-7a4b-10486bfdd59d"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"358f93da-a199-50b1-7a4b-10486bfdd59d","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"687112a809392cf6768376c3"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_jordan-steranka-64LL2fP9uXM-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"f6e28e65-f963-4edc-a896-26c08492e563","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["07193529-bf21-dba9-93f8-47b2e3ee38f5"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"07193529-bf21-dba9-93f8-47b2e3ee38f5","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"687112a9211526ffb719a0dd"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a9211526ffb719a0dd_zhen-mogila-iYw2XrxRslA-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"c2f17007-b551-429b-4f3f-7a1b23c9fb2a","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["0ba92695-278f-1514-e7fe-c0dd728bdd4f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"0ba92695-278f-1514-e7fe-c0dd728bdd4f","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"687112aa0ce7eaa991a3c88d"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_pascal-bullan-2OQEaRFwJdI-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"c2f6a3fd-0389-d961-24a3-fa94782ca826","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["2a79b032-e816-7779-c37c-f44d19cbacdb"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"2a79b032-e816-7779-c37c-f44d19cbacdb","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"687112aa419ece22b527734b"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_luca-bravo-WeFDiEDModQ-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b78c9ccf-88f1-67ec-0b7a-161a34cdda24","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["e7638207-e107-3afc-7016-05c128b2bfdb"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"e7638207-e107-3afc-7016-05c128b2bfdb","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"687112d298282c931fee4f88"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d298282c931fee4f88_andre-benz-PKAW8MQYlU8-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"177c6eb2-2d8b-a179-6aa4-3a7f25f6de45","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["7607213d-9466-d560-72fd-0bb61385e67e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"7607213d-9466-d560-72fd-0bb61385e67e","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"687112d34eb5c08d610fc63f"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d34eb5c08d610fc63f_guillaume-briard-zuDk8NunJ3I-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b91dc151-8990-1483-7ea9-e7157a335616","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["191d3853-9d30-3100-e291-283cba12aa64"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"191d3853-9d30-3100-e291-283cba12aa64","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c272aac4d7bc671b6c1aa1"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1).jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"763eb52a-0657-b6d7-cf16-f48bebedff95","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["731e41a4-8b21-6a68-413b-9bcd29221d8f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"731e41a4-8b21-6a68-413b-9bcd29221d8f","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c272aa084011741e2846e5"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1).jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"802a9201-d0a2-ddf0-6c6a-1002a15193c0","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["86b4593a-fd49-918f-0c5a-08f161b40fc1"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"86b4593a-fd49-918f-0c5a-08f161b40fc1","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c272ab95065bcff284417f"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1).jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"74353191-3cfa-9a3d-ef9e-1c2fca7ff7a7","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["2aab9f48-90ba-328d-e571-bf1b3b9da1f3"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"2aab9f48-90ba-328d-e571-bf1b3b9da1f3","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c272aa1ffe772847bf9490"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"7a53d62f-03e9-250a-95b5-dea3115cdf53","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["e420709d-614c-bead-c735-4e1888f41dba"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"e420709d-614c-bead-c735-4e1888f41dba","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c272aaf3f1c3e9fcf5d562"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aaf3f1c3e9fcf5d562_023a7c8983531e72c804edf2d5b086ce_shubham-dhage-5lWGzDQku4A-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"c8f43147-4599-8de7-7a73-233a1860f276","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["c2f2fb4f-cd2e-0851-66b3-4df8fcd1d744"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"c2f2fb4f-cd2e-0851-66b3-4df8fcd1d744","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c272aac84ee9788e5df3a9"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e447b7c0-4faf-9875-1e85-67cfc6e807e7","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["f1de7b27-ec1b-f4af-b7ce-3903d085bbe9"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"f1de7b27-ec1b-f4af-b7ce-3903d085bbe9","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c272a929de89f369260f36"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"bb6d97e2-af63-97a0-74c6-544174c7b26c","type":"Block","tag":"div","classes":["8688dd7c-ad25-3c86-9f1b-f4118eb1f120"],"children":["a56ec082-5aaf-24f4-1719-9331ffbd97e0"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"a56ec082-5aaf-24f4-1719-9331ffbd97e0","type":"Image","tag":"img","classes":["07b517d2-5330-19a8-a9e2-b1640c19315b"],"children":[],"data":{"img":{"id":"68c272a944cc545bec022f21"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a944cc545bec022f21_robert-bye-WTPp4wgourk-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6cafd10c-8779-1999-a409-e87e23f2f32a","type":"Block","tag":"div","classes":["c7c41523-3ca9-44ea-cac3-2b06f3c7f50d"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}}],"styles":[{"_id":"4265dc5e-44c1-9675-8f61-2766709941df","fake":false,"type":"class","name":"anim_wrapper","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"c7c41523-3ca9-44ea-cac3-2b06f3c7f50d","fake":false,"type":"class","name":"test","namespace":"","comb":"","styleLess":"display: flex; overflow: hidden; width: 100%; height: 100vh; align-items: center; background-color: black; justify-content: @raw<|center|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"f908c4e7-c32a-e65b-313c-454361df4607","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"display: flex; overflow: hidden; width: 100%; height: 100vh; align-items: center; background-color: black; justify-content: @raw<|center|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"034beba6-2540-4559-6112-72c549506388","fake":false,"type":"class","name":"card-container","namespace":"","comb":"","styleLess":"display: grid; width: 100%; grid-auto-columns: 1fr; grid-column-gap: 10px; grid-row-gap: 10px; grid-template-columns: @raw<|repeat(8, 1fr)|>; grid-template-rows: @raw<|repeat(2, 1fr)|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"8688dd7c-ad25-3c86-9f1b-f4118eb1f120","fake":false,"type":"class","name":"card","namespace":"","comb":"","styleLess":"display: block; width: 100%; height: 100%; background-color: black;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"07b517d2-5330-19a8-a9e2-b1640c19315b","fake":false,"type":"class","name":"image","namespace":"","comb":"","styleLess":"height: 100%;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1).webp","siteId":"68710f10ee69d3ee6d0025f0","width":1920,"isHD":false,"height":2391,"fileName":"68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash (1).webp","createdOn":"2025-09-11T06:56:43.119Z","origFileName":"prince-patel-NXKZ-Ii6efI-unsplash (1).webp","fileHash":"fb64232614c663ad85c8b0aea4cc672a","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1)-p-500.webp","origFileName":"prince-patel-NXKZ-Ii6efI-unsplash (1).webp","fileName":"68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash (1)-p-500.webp","size":74700,"format":"webp","width":500,"quality":100,"_id":"68c272adeb07c580ea069f15","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1)-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1)-p-800.webp","origFileName":"prince-patel-NXKZ-Ii6efI-unsplash (1).webp","fileName":"68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash (1)-p-800.webp","size":136762,"format":"webp","width":800,"quality":100,"_id":"68c272adeb07c580ea069f16","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1)-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1)-p-1080.webp","origFileName":"prince-patel-NXKZ-Ii6efI-unsplash (1).webp","fileName":"68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash (1)-p-1080.webp","size":188444,"format":"webp","width":1080,"quality":100,"_id":"68c272adeb07c580ea069f17","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1)-p-1080.webp"},{"origFileName":"prince-patel-NXKZ-Ii6efI-unsplash%20(1)-p-1600.jpg","fileName":"68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1)-p-1600.jpg","size":448424,"format":"jpg","width":1600,"quality":100,"error":"FILESIZE_EXCEEDS_CAP","_id":"68c272adeb07c580ea069f18"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1).webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272ab95065bcff284417f_prince-patel-NXKZ-Ii6efI-unsplash%20(1).webp","_id":"68c272ab95065bcff284417f","updatedOn":"2025-09-11T07:03:28.684Z","fileSize":336602,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a9211526ffb719a0dd_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":640,"isHD":false,"height":960,"fileName":"687112a9211526ffb719a0dd_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash.webp","createdOn":"2025-07-11T13:33:29.674Z","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileHash":"573ca397d65095b1a6854aced045de89","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112a9211526ffb719a0dd_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"687112a9211526ffb719a0dd_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp","size":48678,"format":"webp","width":500,"quality":100,"_id":"68c2706ceb07c580ea05f8af","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a9211526ffb719a0dd_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112a9211526ffb719a0dd_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a9211526ffb719a0dd_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash.webp","_id":"687112a9211526ffb719a0dd","updatedOn":"2025-09-11T07:03:24.736Z","fileSize":85808,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260c_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":640,"isHD":false,"height":956,"fileName":"68710f10ee69d3ee6d00260c_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash.webp","createdOn":"2025-05-14T12:27:38.884Z","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileHash":"ba5246662cb43c3774906e19ed94ef1c","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260c_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"68710f10ee69d3ee6d00260c_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp","size":87006,"format":"webp","width":500,"quality":100,"_id":"68c26f46b142c4c5677be699","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260c_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260c_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260c_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash.webp","_id":"68710f10ee69d3ee6d00260c","updatedOn":"2025-09-11T07:03:24.760Z","fileSize":132144,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":1920,"isHD":false,"height":2883,"fileName":"687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash.webp","createdOn":"2025-07-11T13:34:11.423Z","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileHash":"5122b066a5ff32147fda1aecee0ff7c4","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","size":45914,"format":"webp","width":500,"quality":100,"_id":"68c272183d1dbd1cec95bd7e","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","size":93906,"format":"webp","width":800,"quality":100,"_id":"68c272183d1dbd1cec95bd7f","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp","size":142568,"format":"webp","width":1080,"quality":100,"_id":"68c272183d1dbd1cec95bd80","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp"},{"origFileName":"d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-1600.jpg","fileName":"687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-1600.jpg","size":423141,"format":"jpg","width":1600,"quality":100,"error":"FILESIZE_EXCEEDS_CAP","_id":"68c272183d1dbd1cec95bd81"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d34eb5c08d610fc63f_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash.webp","_id":"687112d34eb5c08d610fc63f","updatedOn":"2025-09-11T07:03:26.867Z","fileSize":298220,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d298282c931fee4f88_524fb427d14f04cd73e69bbe3787aae7_andre-benz-PKAW8MQYlU8-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":640,"isHD":false,"height":960,"fileName":"687112d298282c931fee4f88_524fb427d14f04cd73e69bbe3787aae7_andre-benz-PKAW8MQYlU8-unsplash.webp","createdOn":"2025-07-11T13:34:10.877Z","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileHash":"4e49c13c6f8650061e10686b31cc082e","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112d298282c931fee4f88_524fb427d14f04cd73e69bbe3787aae7_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"687112d298282c931fee4f88_524fb427d14f04cd73e69bbe3787aae7_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp","size":32064,"format":"webp","width":500,"quality":100,"_id":"68c27192b09fcd49540590c0","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d298282c931fee4f88_524fb427d14f04cd73e69bbe3787aae7_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112d298282c931fee4f88_524fb427d14f04cd73e69bbe3787aae7_andre-benz-PKAW8MQYlU8-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d298282c931fee4f88_524fb427d14f04cd73e69bbe3787aae7_andre-benz-PKAW8MQYlU8-unsplash.webp","_id":"687112d298282c931fee4f88","updatedOn":"2025-09-11T07:03:25.121Z","fileSize":44286,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a944cc545bec022f21_robert-bye-WTPp4wgourk-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":640,"isHD":false,"height":962,"fileName":"68c272a944cc545bec022f21_robert-bye-WTPp4wgourk-unsplash.webp","createdOn":"2025-09-11T06:56:41.993Z","origFileName":"robert-bye-WTPp4wgourk-unsplash.webp","fileHash":"2f42c6e6c9cc6df0a6ec8f3d499306dc","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272a944cc545bec022f21_robert-bye-WTPp4wgourk-unsplash-p-500.webp","origFileName":"robert-bye-WTPp4wgourk-unsplash.webp","fileName":"68c272a944cc545bec022f21_robert-bye-WTPp4wgourk-unsplash-p-500.webp","size":75474,"format":"webp","width":500,"quality":100,"_id":"68c272ad1ffbfdc0af83f472","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a944cc545bec022f21_robert-bye-WTPp4wgourk-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272a944cc545bec022f21_robert-bye-WTPp4wgourk-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a944cc545bec022f21_robert-bye-WTPp4wgourk-unsplash.webp","_id":"68c272a944cc545bec022f21","updatedOn":"2025-09-11T07:03:26.629Z","fileSize":113768,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":1920,"isHD":false,"height":1920,"fileName":"687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash.webp","createdOn":"2025-07-11T13:33:30.153Z","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileHash":"a29d6ebd7f6556275f79c313a47b0190","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp","size":6800,"format":"webp","width":500,"quality":100,"_id":"68c2711afa582cf787d6fc58","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp","size":11980,"format":"webp","width":800,"quality":100,"_id":"68c2711afa582cf787d6fc59","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp","size":17720,"format":"webp","width":1080,"quality":100,"_id":"68c2711afa582cf787d6fc5a","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp","size":30044,"format":"webp","width":1600,"quality":100,"_id":"68c2711afa582cf787d6fc5b","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa0ce7eaa991a3c88d_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash.webp","_id":"687112aa0ce7eaa991a3c88d","updatedOn":"2025-09-11T07:03:25.437Z","fileSize":38132,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260a_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":640,"isHD":false,"height":800,"fileName":"68710f10ee69d3ee6d00260a_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash.webp","createdOn":"2025-05-14T12:27:38.888Z","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileHash":"18849068aeba3e832b3add75912c6400","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260a_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"68710f10ee69d3ee6d00260a_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp","size":19106,"format":"webp","width":500,"quality":100,"_id":"68c26feead3043b59df504b8","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260a_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260a_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68710f10ee69d3ee6d00260a_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash.webp","_id":"68710f10ee69d3ee6d00260a","updatedOn":"2025-09-11T07:03:24.703Z","fileSize":27600,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":1920,"isHD":false,"height":2172,"fileName":"687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash.webp","createdOn":"2025-07-11T13:33:30.171Z","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileHash":"e532956a5c3a16be92413a71446e24f9","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp","size":13966,"format":"webp","width":500,"quality":100,"_id":"68c27136e57da60ccab0de52","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp","size":25856,"format":"webp","width":800,"quality":100,"_id":"68c27136e57da60ccab0de53","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp","size":38308,"format":"webp","width":1080,"quality":100,"_id":"68c27136e57da60ccab0de54","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp","size":63080,"format":"webp","width":1600,"quality":100,"_id":"68c27136e57da60ccab0de55","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112aa419ece22b527734b_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash.webp","_id":"687112aa419ece22b527734b","updatedOn":"2025-09-11T07:03:26.350Z","fileSize":79082,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":1920,"isHD":false,"height":3413,"fileName":"687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash.webp","createdOn":"2025-07-11T13:33:28.794Z","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileHash":"e8a2cfe8f5dd203bb58452fa1b3910ee","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp","size":26882,"format":"webp","width":500,"quality":100,"_id":"68c2705429dbfc70554c5e1e","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp","size":59314,"format":"webp","width":800,"quality":100,"_id":"68c2705429dbfc70554c5e1f","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp","size":93694,"format":"webp","width":1080,"quality":100,"_id":"68c2705429dbfc70554c5e20","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp","size":159086,"format":"webp","width":1600,"quality":100,"_id":"68c2705429dbfc70554c5e21","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112a809392cf6768376c3_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash.webp","_id":"687112a809392cf6768376c3","updatedOn":"2025-09-11T07:03:26.422Z","fileSize":200834,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":1920,"isHD":false,"height":2880,"fileName":"68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash.webp","createdOn":"2025-09-11T06:56:42.818Z","origFileName":"sueda-dilli-Yty-rHVuihY-unsplash.webp","fileHash":"ad4e24213fa256571277a8071ea377b1","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-500.webp","origFileName":"sueda-dilli-Yty-rHVuihY-unsplash.webp","fileName":"68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-500.webp","size":18120,"format":"webp","width":500,"quality":100,"_id":"68c272aefd866eaa4c5b969c","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-800.webp","origFileName":"sueda-dilli-Yty-rHVuihY-unsplash.webp","fileName":"68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-800.webp","size":34236,"format":"webp","width":800,"quality":100,"_id":"68c272aefd866eaa4c5b969d","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-1080.webp","origFileName":"sueda-dilli-Yty-rHVuihY-unsplash.webp","fileName":"68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-1080.webp","size":51882,"format":"webp","width":1080,"quality":100,"_id":"68c272aefd866eaa4c5b969e","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-1600.webp","origFileName":"sueda-dilli-Yty-rHVuihY-unsplash.webp","fileName":"68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-1600.webp","size":88700,"format":"webp","width":1600,"quality":100,"_id":"68c272aefd866eaa4c5b969f","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac84ee9788e5df3a9_sueda-dilli-Yty-rHVuihY-unsplash.webp","_id":"68c272aac84ee9788e5df3a9","updatedOn":"2025-09-11T07:03:28.476Z","fileSize":109902,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":1920,"isHD":false,"height":2560,"fileName":"68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash.webp","createdOn":"2025-09-11T06:56:42.621Z","origFileName":"shubham-dhage-sby-OwGZD6A-unsplash.webp","fileHash":"bad278bb9410dfefd3d4bd09c9562184","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-500.webp","origFileName":"shubham-dhage-sby-OwGZD6A-unsplash.webp","fileName":"68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-500.webp","size":24226,"format":"webp","width":500,"quality":100,"_id":"68c272aef25d2ac85092cad6","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-800.webp","origFileName":"shubham-dhage-sby-OwGZD6A-unsplash.webp","fileName":"68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-800.webp","size":46182,"format":"webp","width":800,"quality":100,"_id":"68c272aef25d2ac85092cad7","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-1080.webp","origFileName":"shubham-dhage-sby-OwGZD6A-unsplash.webp","fileName":"68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-1080.webp","size":68060,"format":"webp","width":1080,"quality":100,"_id":"68c272aef25d2ac85092cad8","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-1600.webp","origFileName":"shubham-dhage-sby-OwGZD6A-unsplash.webp","fileName":"68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-1600.webp","size":112496,"format":"webp","width":1600,"quality":100,"_id":"68c272aef25d2ac85092cad9","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa1ffe772847bf9490_shubham-dhage-sby-OwGZD6A-unsplash.webp","_id":"68c272aa1ffe772847bf9490","updatedOn":"2025-09-11T07:03:28.030Z","fileSize":141636,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aaf3f1c3e9fcf5d562_023a7c8983531e72c804edf2d5b086ce_shubham-dhage-5lWGzDQku4A-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":640,"isHD":false,"height":893,"fileName":"68c272aaf3f1c3e9fcf5d562_023a7c8983531e72c804edf2d5b086ce_shubham-dhage-5lWGzDQku4A-unsplash.webp","createdOn":"2025-09-11T06:56:42.376Z","origFileName":"shubham-dhage-5lWGzDQku4A-unsplash.webp","fileHash":"a4fd751135704240bdfce18929acbc89","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aaf3f1c3e9fcf5d562_023a7c8983531e72c804edf2d5b086ce_shubham-dhage-5lWGzDQku4A-unsplash-p-500.webp","origFileName":"shubham-dhage-5lWGzDQku4A-unsplash.webp","fileName":"68c272aaf3f1c3e9fcf5d562_023a7c8983531e72c804edf2d5b086ce_shubham-dhage-5lWGzDQku4A-unsplash-p-500.webp","size":70558,"format":"webp","width":500,"quality":100,"_id":"68c273e5798bb8a4826c980e","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aaf3f1c3e9fcf5d562_023a7c8983531e72c804edf2d5b086ce_shubham-dhage-5lWGzDQku4A-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aaf3f1c3e9fcf5d562_023a7c8983531e72c804edf2d5b086ce_shubham-dhage-5lWGzDQku4A-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aaf3f1c3e9fcf5d562_023a7c8983531e72c804edf2d5b086ce_shubham-dhage-5lWGzDQku4A-unsplash.webp","_id":"68c272aaf3f1c3e9fcf5d562","updatedOn":"2025-09-11T07:03:27.299Z","fileSize":123536,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1).webp","siteId":"68710f10ee69d3ee6d0025f0","width":1920,"isHD":false,"height":1920,"fileName":"68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash (1).webp","createdOn":"2025-09-11T06:56:42.348Z","origFileName":"dynamic-wang-KjH0tFg67Bc-unsplash (1).webp","fileHash":"3824237d071982d882f923b40f126c04","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1)-p-500.webp","origFileName":"dynamic-wang-KjH0tFg67Bc-unsplash (1).webp","fileName":"68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash (1)-p-500.webp","size":5910,"format":"webp","width":500,"quality":100,"_id":"68c272ad6de9bb023a73858a","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1)-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1)-p-800.webp","origFileName":"dynamic-wang-KjH0tFg67Bc-unsplash (1).webp","fileName":"68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash (1)-p-800.webp","size":10388,"format":"webp","width":800,"quality":100,"_id":"68c272ad6de9bb023a73858b","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1)-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1)-p-1080.webp","origFileName":"dynamic-wang-KjH0tFg67Bc-unsplash (1).webp","fileName":"68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash (1)-p-1080.webp","size":15468,"format":"webp","width":1080,"quality":100,"_id":"68c272ad6de9bb023a73858c","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1)-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1)-p-1600.webp","origFileName":"dynamic-wang-KjH0tFg67Bc-unsplash (1).webp","fileName":"68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash (1)-p-1600.webp","size":26294,"format":"webp","width":1600,"quality":100,"_id":"68c272ad6de9bb023a73858d","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1)-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1).webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aac4d7bc671b6c1aa1_dynamic-wang-KjH0tFg67Bc-unsplash%20(1).webp","_id":"68c272aac4d7bc671b6c1aa1","updatedOn":"2025-09-11T07:03:27.806Z","fileSize":33772,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash.webp","siteId":"68710f10ee69d3ee6d0025f0","width":1920,"isHD":false,"height":2400,"fileName":"68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash.webp","createdOn":"2025-09-11T06:56:41.623Z","origFileName":"nataliya-smirnova-InnO84xnSI4-unsplash.webp","fileHash":"5998783f508f68d78abcd65defdb8105","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-500.webp","origFileName":"nataliya-smirnova-InnO84xnSI4-unsplash.webp","fileName":"68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-500.webp","size":11572,"format":"webp","width":500,"quality":100,"_id":"68c2734b8f8df66888037ef6","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-800.webp","origFileName":"nataliya-smirnova-InnO84xnSI4-unsplash.webp","fileName":"68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-800.webp","size":23564,"format":"webp","width":800,"quality":100,"_id":"68c2734b8f8df66888037ef7","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-1080.webp","origFileName":"nataliya-smirnova-InnO84xnSI4-unsplash.webp","fileName":"68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-1080.webp","size":38062,"format":"webp","width":1080,"quality":100,"_id":"68c2734b8f8df66888037ef8","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-1600.webp","origFileName":"nataliya-smirnova-InnO84xnSI4-unsplash.webp","fileName":"68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-1600.webp","size":69190,"format":"webp","width":1600,"quality":100,"_id":"68c2734b8f8df66888037ef9","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272a929de89f369260f36_c0038b2fd0284e7c791d5f6152662664_nataliya-smirnova-InnO84xnSI4-unsplash.webp","_id":"68c272a929de89f369260f36","updatedOn":"2025-09-11T07:03:26.751Z","fileSize":94148,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1).webp","siteId":"68710f10ee69d3ee6d0025f0","width":1920,"isHD":false,"height":3051,"fileName":"68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash (1).webp","createdOn":"2025-09-11T06:56:42.360Z","origFileName":"eugene-golovesov-n5y1UdDaqGw-unsplash (1).webp","fileHash":"e78c824d7e35f40ba0ba6b2a1a75969d","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1)-p-500.webp","origFileName":"eugene-golovesov-n5y1UdDaqGw-unsplash (1).webp","fileName":"68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash (1)-p-500.webp","size":36744,"format":"webp","width":500,"quality":100,"_id":"68c272aef2590aece2468c39","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1)-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1)-p-800.webp","origFileName":"eugene-golovesov-n5y1UdDaqGw-unsplash (1).webp","fileName":"68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash (1)-p-800.webp","size":66986,"format":"webp","width":800,"quality":100,"_id":"68c272aef2590aece2468c3a","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1)-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1)-p-1080.webp","origFileName":"eugene-golovesov-n5y1UdDaqGw-unsplash (1).webp","fileName":"68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash (1)-p-1080.webp","size":97676,"format":"webp","width":1080,"quality":100,"_id":"68c272aef2590aece2468c3b","cdnUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1)-p-1080.webp"},{"origFileName":"eugene-golovesov-n5y1UdDaqGw-unsplash%20(1)-p-1600.jpg","fileName":"68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1)-p-1600.jpg","size":314783,"format":"jpg","width":1600,"quality":100,"error":"FILESIZE_EXCEEDS_CAP","_id":"68c272aef2590aece2468c3c"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68710f10ee69d3ee6d0025f0/68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1).webp","thumbUrl":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/68c272aa084011741e2846e5_eugene-golovesov-n5y1UdDaqGw-unsplash%20(1).webp","_id":"68c272aa084011741e2846e5","updatedOn":"2025-09-11T07:03:27.731Z","fileSize":198104,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"b60820c7-e97f-80a5-b421-78232e61a172","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["62f15d95-0de6-19a0-7da8-015def7d4fc5","ee93a209-18ee-d4b4-4dd0-404b74dcfb26","3d525f86-e6bb-644e-9b30-47cc0292b790"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"62f15d95-0de6-19a0-7da8-015def7d4fc5","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565db"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ee93a209-18ee-d4b4-4dd0-404b74dcfb26","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5358"],"children":["67cd6778-7f71-4f85-f3f1-bae172cda220"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"67cd6778-7f71-4f85-f3f1-bae172cda220","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dc"],"children":["bef0bbdb-427b-b83c-a6fa-4338c3baa07a","a86618ec-e2c0-0786-6637-862a6ef43ce1","f9fb5487-0e71-55d8-1d7c-de94996347a9","1e01031d-d04d-675f-d444-8d3441b3b647","d279eeac-5386-937b-9bae-56afd5e6aefc","743a8d33-0837-1926-514b-a782eb9f5965","02a4459e-a142-20be-6480-7df555f513dc","0a51c0bb-6ec4-461a-52ae-c3a212a05fc4","28403b23-be4d-e86a-c20c-574c5f24c1d9","2f3929f3-e990-62fa-dfbe-97c3a1946f30","5e3b1a05-5803-bdb1-77cd-19f337948b6f","9316d77c-706c-6bb5-fc42-7a35a303e84e","8291bf3f-9a9d-0267-5cce-6d4b44afc7ed","11dad1e4-e5f8-d8c4-fad9-18e251d1b8e3","b962daed-d4f2-dce5-285e-05575e270ad9","fde54fdd-bb41-6e29-2ce1-d6047a9c442d"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"bef0bbdb-427b-b83c-a6fa-4338c3baa07a","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["5579eb9a-2722-657b-c582-7977cbd55d8a"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"5579eb9a-2722-657b-c582-7977cbd55d8a","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765d621d2232a7495e0835"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0835_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a86618ec-e2c0-0786-6637-862a6ef43ce1","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["ac1612f2-ed8f-23cf-f59e-31a313be47c1"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"ac1612f2-ed8f-23cf-f59e-31a313be47c1","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765d621d2232a7495e082c"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082c_patrick-bald-llZIWkNGzS4-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"f9fb5487-0e71-55d8-1d7c-de94996347a9","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["38f7ff5d-36b4-0eaf-c240-5d99e7321bc5"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"38f7ff5d-36b4-0eaf-c240-5d99e7321bc5","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765d621d2232a7495e0841"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_jordan-steranka-64LL2fP9uXM-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1e01031d-d04d-675f-d444-8d3441b3b647","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["5995c4cd-976c-f4cd-4d2a-75418fa262be"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"5995c4cd-976c-f4cd-4d2a-75418fa262be","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765d621d2232a7495e0830"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0830_zhen-mogila-iYw2XrxRslA-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d279eeac-5386-937b-9bae-56afd5e6aefc","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["2f548432-8fe3-cfde-b2b7-69bbe133d220"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"2f548432-8fe3-cfde-b2b7-69bbe133d220","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765d621d2232a7495e0832"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_pascal-bullan-2OQEaRFwJdI-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"743a8d33-0837-1926-514b-a782eb9f5965","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["875fa7d8-d656-d94b-8cf4-2edd31155e29"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"875fa7d8-d656-d94b-8cf4-2edd31155e29","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765d621d2232a7495e082e"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_luca-bravo-WeFDiEDModQ-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"02a4459e-a142-20be-6480-7df555f513dc","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["f7006940-887e-5234-75c3-7407929e7b57"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"f7006940-887e-5234-75c3-7407929e7b57","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"687112d298282c931fee4f88"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68710f10ee69d3ee6d0025f0/687112d298282c931fee4f88_andre-benz-PKAW8MQYlU8-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1000,"size":"100vw"},{"max":10000,"size":"1000px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0a51c0bb-6ec4-461a-52ae-c3a212a05fc4","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["0de3cacf-95e5-6c87-f02d-be65c8cf852b"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"0de3cacf-95e5-6c87-f02d-be65c8cf852b","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765d621d2232a7495e083b"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e083b_guillaume-briard-zuDk8NunJ3I-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"28403b23-be4d-e86a-c20c-574c5f24c1d9","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["37bfab42-a487-6fa0-8f7e-b80a5375d0fb"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"37bfab42-a487-6fa0-8f7e-b80a5375d0fb","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765669228a8b7f926b5a28"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2f3929f3-e990-62fa-dfbe-97c3a1946f30","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["00d5a480-50b7-1b5b-1823-ecde0d74ba6c"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"00d5a480-50b7-1b5b-1823-ecde0d74ba6c","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765669228a8b7f926b5a1e"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"5e3b1a05-5803-bdb1-77cd-19f337948b6f","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["7b2bc8b9-baff-89b8-7ce7-23d8dbc0d736"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"7b2bc8b9-baff-89b8-7ce7-23d8dbc0d736","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765669228a8b7f926b5a25"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"9316d77c-706c-6bb5-fc42-7a35a303e84e","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["2872ffc7-3aad-6871-31ae-9c05b92418c5"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"2872ffc7-3aad-6871-31ae-9c05b92418c5","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765669228a8b7f926b5a26"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"8291bf3f-9a9d-0267-5cce-6d4b44afc7ed","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["1e8634a6-7841-757d-5cfb-40c7ac62351c"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"1e8634a6-7841-757d-5cfb-40c7ac62351c","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765669228a8b7f926b5a23"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a23_023a7c8983531e72c804edf2d5b086ce_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"11dad1e4-e5f8-d8c4-fad9-18e251d1b8e3","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["fcb4663a-8c99-d9f7-1b1c-318290799800"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"fcb4663a-8c99-d9f7-1b1c-318290799800","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765669228a8b7f926b5a22"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b962daed-d4f2-dce5-285e-05575e270ad9","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["93b4cbdf-7785-7baa-e79b-b5ae2927f497"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"93b4cbdf-7785-7baa-e79b-b5ae2927f497","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765669228a8b7f926b5a1d"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1920,"size":"100vw"},{"max":10000,"size":"1920px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fde54fdd-bb41-6e29-2ce1-d6047a9c442d","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565dd"],"children":["7f66cfe7-9de9-0e0d-2b85-07c1fdc2f85c"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"style":{"base":{"main":{"noPseudo":{}}}}}},{"_id":"7f66cfe7-9de9-0e0d-2b85-07c1fdc2f85c","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765669228a8b7f926b5a27"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a27_6eeccc95ab6745a3788691ae3ecf6ae7_filip-kvasnak-DFR-QiTbwBI-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":640,"size":"100vw"},{"max":10000,"size":"640px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3d525f86-e6bb-644e-9b30-47cc0292b790","type":"Block","tag":"div","classes":["16b1ad3f-0205-636f-2a02-0577f9e565db"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}}],"styles":[{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center;","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"16b1ad3f-0205-636f-2a02-0577f9e565db","fake":false,"type":"class","name":"test","namespace":"","comb":"","styleLess":"display: flex; overflow: hidden; width: 100%; height: 100vh; align-items: center; background-color: black; justify-content: @raw<|center|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb5358","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"display: flex; overflow: hidden; width: 100%; height: 100vh; align-items: center; background-color: hsla(0, 0.00%, 0.00%, 1.00); justify-content: @raw<|center|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"16b1ad3f-0205-636f-2a02-0577f9e565dc","fake":false,"type":"class","name":"card-container","namespace":"","comb":"","styleLess":"display: grid; width: 100%; grid-auto-columns: 1fr; grid-column-gap: 10px; grid-row-gap: 10px; grid-template-columns: @raw<|repeat(8, 1fr)|>; grid-template-rows: @raw<|repeat(2, 1fr)|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"16b1ad3f-0205-636f-2a02-0577f9e565dd","fake":false,"type":"class","name":"card","namespace":"","comb":"","styleLess":"display: block; width: 100%; height: 100%; background-color: black;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"4a1bff29-f0bf-99e7-f985-30bf93bcfe42","fake":false,"type":"class","name":"image","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; object-fit: cover;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":1920,"isHD":false,"height":2560,"fileName":"68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","createdOn":"2025-06-20T12:32:59.411Z","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileHash":"bad278bb9410dfefd3d4bd09c9562184","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-500.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-500.webp","size":24226,"format":"webp","width":500,"quality":100,"_id":"68c276ba51243064989dc8d8","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-800.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-800.webp","size":46182,"format":"webp","width":800,"quality":100,"_id":"68c276ba51243064989dc8d9","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1080.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1080.webp","size":68060,"format":"webp","width":1080,"quality":100,"_id":"68c276ba51243064989dc8da","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1600.webp","origFileName":"rafael-garcin-HO2OGsZ1P6U-unsplash.webp","fileName":"68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1600.webp","size":112496,"format":"webp","width":1600,"quality":100,"_id":"68c276ba51243064989dc8db","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a26_20189c47090e1591657c2bc250588da0_rafael-garcin-HO2OGsZ1P6U-unsplash.webp","_id":"68765669228a8b7f926b5a26","updatedOn":"2025-09-11T07:17:39.899Z","markedAsDeleted":false,"fileSize":141636,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":1920,"isHD":false,"height":2880,"fileName":"68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash.webp","createdOn":"2025-06-20T12:32:59.405Z","origFileName":"ryan-klaus--xdYKP0g_Pg-unsplash.webp","fileHash":"ad4e24213fa256571277a8071ea377b1","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-500.webp","origFileName":"ryan-klaus--xdYKP0g_Pg-unsplash.webp","fileName":"68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-500.webp","size":18120,"format":"webp","width":500,"quality":100,"_id":"68c27718705b8af2b8ff6819","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-800.webp","origFileName":"ryan-klaus--xdYKP0g_Pg-unsplash.webp","fileName":"68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-800.webp","size":34236,"format":"webp","width":800,"quality":100,"_id":"68c27718705b8af2b8ff681a","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-1080.webp","origFileName":"ryan-klaus--xdYKP0g_Pg-unsplash.webp","fileName":"68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-1080.webp","size":51882,"format":"webp","width":1080,"quality":100,"_id":"68c27718705b8af2b8ff681b","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-1600.webp","origFileName":"ryan-klaus--xdYKP0g_Pg-unsplash.webp","fileName":"68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-1600.webp","size":88700,"format":"webp","width":1600,"quality":100,"_id":"68c27718705b8af2b8ff681c","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a22_fdc2a5a65e6e734daf5aeee24af158b2_ryan-klaus--xdYKP0g_Pg-unsplash.webp","_id":"68765669228a8b7f926b5a22","updatedOn":"2025-09-11T07:17:39.610Z","markedAsDeleted":false,"fileSize":109902,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082c_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":640,"isHD":false,"height":800,"fileName":"68765d621d2232a7495e082c_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash.webp","createdOn":"2025-07-15T13:53:39.025Z","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileHash":"18849068aeba3e832b3add75912c6400","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e082c_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"68765d621d2232a7495e082c_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp","size":19106,"format":"webp","width":500,"quality":100,"_id":"68c27590cd76e1d673eba118","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082c_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e082c_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082c_2164d8a418751b58973cb4bff9cc9996_patrick-bald-llZIWkNGzS4-unsplash.webp","_id":"68765d621d2232a7495e082c","updatedOn":"2025-09-11T07:17:39.903Z","fileSize":27600,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a27_6eeccc95ab6745a3788691ae3ecf6ae7_filip-kvasnak-DFR-QiTbwBI-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":640,"isHD":false,"height":962,"fileName":"68765669228a8b7f926b5a27_6eeccc95ab6745a3788691ae3ecf6ae7_filip-kvasnak-DFR-QiTbwBI-unsplash.webp","createdOn":"2025-06-20T12:32:59.398Z","origFileName":"filip-kvasnak-DFR-QiTbwBI-unsplash.webp","fileHash":"2f42c6e6c9cc6df0a6ec8f3d499306dc","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a27_6eeccc95ab6745a3788691ae3ecf6ae7_filip-kvasnak-DFR-QiTbwBI-unsplash-p-500.webp","origFileName":"filip-kvasnak-DFR-QiTbwBI-unsplash.webp","fileName":"68765669228a8b7f926b5a27_6eeccc95ab6745a3788691ae3ecf6ae7_filip-kvasnak-DFR-QiTbwBI-unsplash-p-500.webp","size":75474,"format":"webp","width":500,"quality":100,"_id":"68c27736892773fc62848cf8","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a27_6eeccc95ab6745a3788691ae3ecf6ae7_filip-kvasnak-DFR-QiTbwBI-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a27_6eeccc95ab6745a3788691ae3ecf6ae7_filip-kvasnak-DFR-QiTbwBI-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a27_6eeccc95ab6745a3788691ae3ecf6ae7_filip-kvasnak-DFR-QiTbwBI-unsplash.webp","_id":"68765669228a8b7f926b5a27","updatedOn":"2025-09-11T07:17:39.745Z","markedAsDeleted":false,"fileSize":113768,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a23_023a7c8983531e72c804edf2d5b086ce_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":640,"isHD":false,"height":893,"fileName":"68765669228a8b7f926b5a23_023a7c8983531e72c804edf2d5b086ce_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","createdOn":"2025-06-20T12:32:59.408Z","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileHash":"a4fd751135704240bdfce18929acbc89","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a23_023a7c8983531e72c804edf2d5b086ce_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-500.webp","origFileName":"wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","fileName":"68765669228a8b7f926b5a23_023a7c8983531e72c804edf2d5b086ce_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-500.webp","size":70558,"format":"webp","width":500,"quality":100,"_id":"68c27709e7e7ffec2314bb44","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a23_023a7c8983531e72c804edf2d5b086ce_wolfgang-hasselmann-JBjtbr-lgOA-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a23_023a7c8983531e72c804edf2d5b086ce_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a23_023a7c8983531e72c804edf2d5b086ce_wolfgang-hasselmann-JBjtbr-lgOA-unsplash.webp","_id":"68765669228a8b7f926b5a23","updatedOn":"2025-09-11T07:17:38.363Z","markedAsDeleted":false,"fileSize":123536,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":1920,"isHD":false,"height":2400,"fileName":"68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash.webp","createdOn":"2025-06-20T12:32:59.402Z","origFileName":"reinaldo-photography--NEGehNFXF0-unsplash.webp","fileHash":"5998783f508f68d78abcd65defdb8105","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-500.webp","origFileName":"reinaldo-photography--NEGehNFXF0-unsplash.webp","fileName":"68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-500.webp","size":11572,"format":"webp","width":500,"quality":100,"_id":"68c2772717eb7d3b69858522","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-800.webp","origFileName":"reinaldo-photography--NEGehNFXF0-unsplash.webp","fileName":"68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-800.webp","size":23564,"format":"webp","width":800,"quality":100,"_id":"68c2772717eb7d3b69858523","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-1080.webp","origFileName":"reinaldo-photography--NEGehNFXF0-unsplash.webp","fileName":"68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-1080.webp","size":38062,"format":"webp","width":1080,"quality":100,"_id":"68c2772717eb7d3b69858524","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-1600.webp","origFileName":"reinaldo-photography--NEGehNFXF0-unsplash.webp","fileName":"68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-1600.webp","size":69190,"format":"webp","width":1600,"quality":100,"_id":"68c2772717eb7d3b69858525","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1d_c0038b2fd0284e7c791d5f6152662664_reinaldo-photography--NEGehNFXF0-unsplash.webp","_id":"68765669228a8b7f926b5a1d","updatedOn":"2025-09-11T07:17:39.379Z","markedAsDeleted":false,"fileSize":94148,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":1920,"isHD":false,"height":2172,"fileName":"68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash.webp","createdOn":"2025-07-15T13:53:39.132Z","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileHash":"e532956a5c3a16be92413a71446e24f9","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp","size":13966,"format":"webp","width":500,"quality":100,"_id":"68c276098b0e9f57b9490355","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp","size":25856,"format":"webp","width":800,"quality":100,"_id":"68c276098b0e9f57b9490356","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp","size":38308,"format":"webp","width":1080,"quality":100,"_id":"68c276098b0e9f57b9490357","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp","size":63080,"format":"webp","width":1600,"quality":100,"_id":"68c276098b0e9f57b9490358","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e082e_400177d64be6488bacf8932ea7551091_luca-bravo-WeFDiEDModQ-unsplash.webp","_id":"68765d621d2232a7495e082e","updatedOn":"2025-09-11T07:17:40.904Z","fileSize":79082,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0830_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":640,"isHD":false,"height":960,"fileName":"68765d621d2232a7495e0830_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash.webp","createdOn":"2025-07-15T13:53:39.023Z","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileHash":"573ca397d65095b1a6854aced045de89","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0830_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"68765d621d2232a7495e0830_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp","size":48678,"format":"webp","width":500,"quality":100,"_id":"68c275ea084011741e294981","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0830_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0830_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0830_e04fdd50ce44b13da9d7078f5933164b_zhen-mogila-iYw2XrxRslA-unsplash.webp","_id":"68765d621d2232a7495e0830","updatedOn":"2025-09-11T07:17:40.133Z","fileSize":85808,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":1920,"isHD":false,"height":2883,"fileName":"68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash.webp","createdOn":"2025-07-15T13:53:39.043Z","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileHash":"5122b066a5ff32147fda1aecee0ff7c4","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","size":45914,"format":"webp","width":500,"quality":100,"_id":"68c27644b09fcd495406f4d6","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","size":93906,"format":"webp","width":800,"quality":100,"_id":"68c27644b09fcd495406f4d7","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp","size":142568,"format":"webp","width":1080,"quality":100,"_id":"68c27644b09fcd495406f4d8","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp"},{"origFileName":"d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-1600.jpg","fileName":"68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash-p-1600.jpg","size":423141,"format":"jpg","width":1600,"quality":100,"error":"FILESIZE_EXCEEDS_CAP","_id":"68c27644b09fcd495406f4d9"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e083b_d2cacc0d1882d59f68ce4e331d9dacbf_guillaume-briard-zuDk8NunJ3I-unsplash.webp","_id":"68765d621d2232a7495e083b","updatedOn":"2025-09-11T07:17:41.620Z","fileSize":298220,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0835_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":640,"isHD":false,"height":956,"fileName":"68765d621d2232a7495e0835_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash.webp","createdOn":"2025-07-15T13:53:39.122Z","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileHash":"ba5246662cb43c3774906e19ed94ef1c","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0835_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"68765d621d2232a7495e0835_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp","size":87006,"format":"webp","width":500,"quality":100,"_id":"68c2755920431994da75bacd","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0835_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0835_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0835_e68b788d9e36afcc29157694c8fc3f95_jan-huber-hkmiiz2C3ts-unsplash.webp","_id":"68765d621d2232a7495e0835","updatedOn":"2025-09-11T07:17:40.347Z","fileSize":132144,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":1920,"isHD":false,"height":2391,"fileName":"68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash.webp","createdOn":"2025-07-02T07:20:00.283Z","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileHash":"fb64232614c663ad85c8b0aea4cc672a","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-500.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-500.webp","size":74700,"format":"webp","width":500,"quality":100,"_id":"68c276ab2c26aa5c60165bc2","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-800.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-800.webp","size":136762,"format":"webp","width":800,"quality":100,"_id":"68c276ab2c26aa5c60165bc3","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-1080.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-1080.webp","size":188444,"format":"webp","width":1080,"quality":100,"_id":"68c276ab2c26aa5c60165bc4","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-1080.webp"},{"origFileName":"d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-1600.jpg","fileName":"68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash-p-1600.jpg","size":448424,"format":"jpg","width":1600,"quality":100,"error":"FILESIZE_EXCEEDS_CAP","_id":"68c276ab2c26aa5c60165bc5"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a25_d5d05ef86c74d25df6bcec611ded1a57_samuel-ferrara-1527pjeb6jg-unsplash.webp","_id":"68765669228a8b7f926b5a25","updatedOn":"2025-09-11T07:17:39.658Z","fileSize":336602,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":1920,"isHD":false,"height":3413,"fileName":"68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash.webp","createdOn":"2025-07-15T13:53:39.020Z","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileHash":"e8a2cfe8f5dd203bb58452fa1b3910ee","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp","size":26882,"format":"webp","width":500,"quality":100,"_id":"68c275b1c44761feefc51110","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp","size":59314,"format":"webp","width":800,"quality":100,"_id":"68c275b1c44761feefc51111","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp","size":93694,"format":"webp","width":1080,"quality":100,"_id":"68c275b1c44761feefc51112","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp","size":159086,"format":"webp","width":1600,"quality":100,"_id":"68c275b1c44761feefc51113","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0841_242c4a6ee4b2536279f7acaa07a9b4c9_jordan-steranka-64LL2fP9uXM-unsplash.webp","_id":"68765d621d2232a7495e0841","updatedOn":"2025-09-11T07:17:42.244Z","fileSize":200834,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":1920,"isHD":false,"height":1920,"fileName":"68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash.webp","createdOn":"2025-07-02T07:20:00.292Z","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileHash":"3824237d071982d882f923b40f126c04","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-500.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-500.webp","size":5910,"format":"webp","width":500,"quality":100,"_id":"68c27689ace7bb604a7366ce","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-800.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-800.webp","size":10388,"format":"webp","width":800,"quality":100,"_id":"68c27689ace7bb604a7366cf","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-1080.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-1080.webp","size":15468,"format":"webp","width":1080,"quality":100,"_id":"68c27689ace7bb604a7366d0","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-1600.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-1600.webp","size":26294,"format":"webp","width":1600,"quality":100,"_id":"68c27689ace7bb604a7366d1","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a28_51b855c8355072d62f62553143e80808_zany-jadraque-ZCRtfop2hZY-unsplash.webp","_id":"68765669228a8b7f926b5a28","updatedOn":"2025-09-11T07:17:40.485Z","fileSize":33772,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":1920,"isHD":false,"height":3051,"fileName":"68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash.webp","createdOn":"2025-07-02T07:20:00.287Z","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileHash":"e78c824d7e35f40ba0ba6b2a1a75969d","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-500.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-500.webp","size":36744,"format":"webp","width":500,"quality":100,"_id":"68c27696f2590aece247fd11","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-800.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-800.webp","size":66986,"format":"webp","width":800,"quality":100,"_id":"68c27696f2590aece247fd12","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-1080.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-1080.webp","size":97676,"format":"webp","width":1080,"quality":100,"_id":"68c27696f2590aece247fd13","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-1080.webp"},{"origFileName":"cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-1600.jpg","fileName":"68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash-p-1600.jpg","size":314783,"format":"jpg","width":1600,"quality":100,"error":"FILESIZE_EXCEEDS_CAP","_id":"68c27696f2590aece247fd14"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765669228a8b7f926b5a1e_cd4b0109ab58e14641b10e330a01c738_quino-al-mBQIfKlvowM-unsplash.webp","_id":"68765669228a8b7f926b5a1e","updatedOn":"2025-09-11T07:17:39.439Z","fileSize":198104,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash.webp","siteId":"68765669228a8b7f926b5a29","width":1920,"isHD":false,"height":1920,"fileName":"68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash.webp","createdOn":"2025-07-15T13:53:39.111Z","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileHash":"a29d6ebd7f6556275f79c313a47b0190","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp","size":6800,"format":"webp","width":500,"quality":100,"_id":"68c275fac44761feefc53f0b","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp","size":11980,"format":"webp","width":800,"quality":100,"_id":"68c275fac44761feefc53f0c","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp","size":17720,"format":"webp","width":1080,"quality":100,"_id":"68c275fac44761feefc53f0d","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp","size":30044,"format":"webp","width":1600,"quality":100,"_id":"68c275fac44761feefc53f0e","cdnUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765669228a8b7f926b5a29/68765d621d2232a7495e0832_a12fe20997d2d0a8227c09de0de3799f_pascal-bullan-2OQEaRFwJdI-unsplash.webp","_id":"68765d621d2232a7495e0832","updatedOn":"2025-09-11T07:17:40.942Z","fileSize":38132,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
On Scroll Image Revel 8
Add
On Scroll Image Revel 8
Copy Component
Copy external scripts and paste it in the body
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@studio-freight/lenis@1.0.39/dist/lenis.min.js"></script>Copy javascript and paste it in the body
<script>
// Initialize Lenis
const lenis = new Lenis({
duration: 1.2, // Duration in seconds (1200 would be milliseconds)
});
// RAF for smooth scrolling
function raf(time) {
lenis.raf(time);
requestAnimationFrame(raf);
}
requestAnimationFrame(raf);
const works = document.querySelectorAll(".works");
works.forEach(work => {
gsap.to(work.querySelector(".works-img"), {
duration: 1.2,
clipPath: "polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)",
scrollTrigger: {
trigger: work,
start: "top 80%",
end: "top 30%",
scrub: true,
},
});
gsap.to(work.querySelector(".works-img img"), {
filter: "contrast(1) brightness(1)",
scrollTrigger: {
trigger: work,
start: "top 80%",
end: "top 30%",
scrub: true,
},
});
gsap.to(work.querySelector("p"), {
opacity: 1,
scrollTrigger: {
trigger: work,
start: "top 30%",
end: "top 0%",
scrub: true,
},
});
});
</script>Copy styles and paste it in the head
Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"4c5fca77-99cb-dba7-2bbe-37cf991d4309","type":"Block","tag":"div","classes":["4265dc5e-44c1-9675-8f61-2766709941df"],"children":["af6a781e-3f1a-ea62-09e4-0fac9585c170","b4f46fa6-5499-abd2-d696-239f2540005f","95bfb185-4411-75a0-6a4b-0372def9fbad","41745d0a-8a1c-7c94-7704-59f26aabbcd4"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"af6a781e-3f1a-ea62-09e4-0fac9585c170","type":"Block","tag":"div","classes":["a289eb38-91bd-96c8-c879-37c319dcf3d1"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b4f46fa6-5499-abd2-d696-239f2540005f","type":"Block","tag":"div","classes":["c151ea3d-4a5c-41e5-476d-687458a3f0ed"],"children":["25f29535-06db-d329-da36-b35b928881eb","a9e4c938-57da-9930-7989-04ca0204d898","ce334d1c-ff67-20e1-ba2c-bc1207fc6103","488603a2-7b3a-f36b-8b4a-eaf322469d81","62c5832e-747b-fddc-8ad9-47f23628f28c","a1b4e825-6d1b-b962-2113-a59908eab6d5"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"25f29535-06db-d329-da36-b35b928881eb","type":"Block","tag":"div","classes":["1ccca3ec-a7ee-8da4-ee9c-e243364d2423"],"children":["1e2d6683-6d0c-1797-4a97-0c0f98342422"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"type1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1e2d6683-6d0c-1797-4a97-0c0f98342422","type":"Block","tag":"div","classes":["ee235c9e-612b-9b7a-7c11-ba7d36b05d5b"],"children":["7e5a0a4a-9d12-ff36-84d0-ee4780f522e4","0f6d0e48-3d4c-b189-60d4-e2cebc5d1cd1"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"7e5a0a4a-9d12-ff36-84d0-ee4780f522e4","type":"Block","tag":"div","classes":["83baa115-3f25-59a7-e826-ec518332aa61"],"children":["6faaef5a-a9bd-7eb9-121b-39a75b5a4637"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6faaef5a-a9bd-7eb9-121b-39a75b5a4637","type":"Image","tag":"img","classes":["34ee7990-7d6e-5dbc-a281-711759006f39"],"children":[],"data":{"img":{"id":"6874aaad8b4ed62391d7c3e1"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e1_guillaume-briard-zuDk8NunJ3I-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":5000,"size":"30vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0f6d0e48-3d4c-b189-60d4-e2cebc5d1cd1","type":"Paragraph","tag":"p","classes":["8a893afb-5285-9a83-26aa-19bc009eee60"],"children":["53e1c1dd-5660-717c-5099-a98ca0920439"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"53e1c1dd-5660-717c-5099-a98ca0920439","text":true,"v":"Project Name"},{"_id":"a9e4c938-57da-9930-7989-04ca0204d898","type":"Block","tag":"div","classes":["88210ae2-fafa-f50e-5d14-aebd42ee7c84"],"children":["2795e920-87bc-0ac7-0a0a-27ee407b86b7"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2795e920-87bc-0ac7-0a0a-27ee407b86b7","type":"Block","tag":"div","classes":["ee235c9e-612b-9b7a-7c11-ba7d36b05d5b"],"children":["4f516541-88a7-6829-41c4-89f0fc250560","5013d2f4-cc7c-6084-138d-3f4c138a409e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"4f516541-88a7-6829-41c4-89f0fc250560","type":"Block","tag":"div","classes":["83baa115-3f25-59a7-e826-ec518332aa61"],"children":["a1e4688d-5954-8444-67f3-faba1bce24b0"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a1e4688d-5954-8444-67f3-faba1bce24b0","type":"Image","tag":"img","classes":["34ee7990-7d6e-5dbc-a281-711759006f39"],"children":[],"data":{"img":{"id":"6874aaad8b4ed62391d7c3e2"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e2_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":4285,"size":"35vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"5013d2f4-cc7c-6084-138d-3f4c138a409e","type":"Paragraph","tag":"p","classes":["8a893afb-5285-9a83-26aa-19bc009eee60"],"children":["3e156fa9-63c8-84dd-36f4-a1704d2627d8"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3e156fa9-63c8-84dd-36f4-a1704d2627d8","text":true,"v":"Project Name"},{"_id":"ce334d1c-ff67-20e1-ba2c-bc1207fc6103","type":"Block","tag":"div","classes":["1ccca3ec-a7ee-8da4-ee9c-e243364d2423"],"children":["1cc0438d-8389-45f7-2d92-431f795a30e3"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"type2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1cc0438d-8389-45f7-2d92-431f795a30e3","type":"Block","tag":"div","classes":["ee235c9e-612b-9b7a-7c11-ba7d36b05d5b"],"children":["f8ba3248-a35c-c0b2-bd44-34e8c646b513","11ac5bb5-bd21-d0a7-2873-c97fd20b7293"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"f8ba3248-a35c-c0b2-bd44-34e8c646b513","type":"Block","tag":"div","classes":["83baa115-3f25-59a7-e826-ec518332aa61"],"children":["d1447f5c-540e-09c6-30d8-58a0dd53f9bc"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d1447f5c-540e-09c6-30d8-58a0dd53f9bc","type":"Image","tag":"img","classes":["34ee7990-7d6e-5dbc-a281-711759006f39"],"children":[],"data":{"img":{"id":"6874aaad8b4ed62391d7c3e6"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e6_andre-benz-PKAW8MQYlU8-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":6000,"size":"25vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"11ac5bb5-bd21-d0a7-2873-c97fd20b7293","type":"Paragraph","tag":"p","classes":["8a893afb-5285-9a83-26aa-19bc009eee60"],"children":["276e2b31-9f61-93db-c01c-bccec0f9c151"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"276e2b31-9f61-93db-c01c-bccec0f9c151","text":true,"v":"Project Name"},{"_id":"488603a2-7b3a-f36b-8b4a-eaf322469d81","type":"Block","tag":"div","classes":["88210ae2-fafa-f50e-5d14-aebd42ee7c84"],"children":["2762f39f-5cd2-8c7c-d6e4-c6f9beb2b438"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"type1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2762f39f-5cd2-8c7c-d6e4-c6f9beb2b438","type":"Block","tag":"div","classes":["ee235c9e-612b-9b7a-7c11-ba7d36b05d5b"],"children":["2c7800cb-b9b0-875a-977f-17cf14caa1f1","0e2f26cb-c629-5fd2-12ba-3fde9c8e6c72"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2c7800cb-b9b0-875a-977f-17cf14caa1f1","type":"Block","tag":"div","classes":["83baa115-3f25-59a7-e826-ec518332aa61"],"children":["c13f4abd-ef1c-4126-214e-d349b6628593"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"c13f4abd-ef1c-4126-214e-d349b6628593","type":"Image","tag":"img","classes":["34ee7990-7d6e-5dbc-a281-711759006f39"],"children":[],"data":{"img":{"id":"6874aaad8b4ed62391d7c3dd"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_luca-bravo-WeFDiEDModQ-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":5666,"size":"30vw"},{"max":10000,"size":"1700px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0e2f26cb-c629-5fd2-12ba-3fde9c8e6c72","type":"Paragraph","tag":"p","classes":["8a893afb-5285-9a83-26aa-19bc009eee60"],"children":["f610ac01-4ae1-95ff-a07a-53ae233e73af"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"f610ac01-4ae1-95ff-a07a-53ae233e73af","text":true,"v":"Project Name"},{"_id":"62c5832e-747b-fddc-8ad9-47f23628f28c","type":"Block","tag":"div","classes":["1ccca3ec-a7ee-8da4-ee9c-e243364d2423"],"children":["b8b26caf-c8d5-2408-ffbc-542ceb19f513"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"type3"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b8b26caf-c8d5-2408-ffbc-542ceb19f513","type":"Block","tag":"div","classes":["ee235c9e-612b-9b7a-7c11-ba7d36b05d5b"],"children":["46d2906d-d0d1-f1c0-08b3-8260eb7ad4b1","eda7569f-9b50-fcb3-7bb4-1d7729f5e357"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"46d2906d-d0d1-f1c0-08b3-8260eb7ad4b1","type":"Block","tag":"div","classes":["83baa115-3f25-59a7-e826-ec518332aa61"],"children":["61442fe0-65bf-1512-928d-ff0e018ac92e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"61442fe0-65bf-1512-928d-ff0e018ac92e","type":"Image","tag":"img","classes":["34ee7990-7d6e-5dbc-a281-711759006f39"],"children":[],"data":{"img":{"id":"6874aaad8b4ed62391d7c3d5"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d5_pascal-bullan-2OQEaRFwJdI-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":4285,"size":"35vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"eda7569f-9b50-fcb3-7bb4-1d7729f5e357","type":"Paragraph","tag":"p","classes":["8a893afb-5285-9a83-26aa-19bc009eee60"],"children":["7e872bc5-408d-b44a-842d-0197235cb2ca"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"7e872bc5-408d-b44a-842d-0197235cb2ca","text":true,"v":"Project Name"},{"_id":"a1b4e825-6d1b-b962-2113-a59908eab6d5","type":"Block","tag":"div","classes":["88210ae2-fafa-f50e-5d14-aebd42ee7c84"],"children":["df165cd8-f975-dc3c-da69-f00b1ce03cd9"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"type2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"df165cd8-f975-dc3c-da69-f00b1ce03cd9","type":"Block","tag":"div","classes":["ee235c9e-612b-9b7a-7c11-ba7d36b05d5b"],"children":["1daf552c-9da7-edb3-7004-dd61496db9db","cf8ecbb3-cdff-9e90-41c3-cd3f1deaa467"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1daf552c-9da7-edb3-7004-dd61496db9db","type":"Block","tag":"div","classes":["83baa115-3f25-59a7-e826-ec518332aa61"],"children":["83d59802-973c-fa76-4c7d-5b03be201866"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"83d59802-973c-fa76-4c7d-5b03be201866","type":"Image","tag":"img","classes":["34ee7990-7d6e-5dbc-a281-711759006f39"],"children":[],"data":{"img":{"id":"6874aaad8b4ed62391d7c3d8"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d8_zhen-mogila-iYw2XrxRslA-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":6000,"size":"25vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"cf8ecbb3-cdff-9e90-41c3-cd3f1deaa467","type":"Paragraph","tag":"p","classes":["8a893afb-5285-9a83-26aa-19bc009eee60"],"children":["ebc5b220-ea01-ff2e-a1f7-18d40001b40d"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ebc5b220-ea01-ff2e-a1f7-18d40001b40d","text":true,"v":"Project Name"},{"_id":"95bfb185-4411-75a0-6a4b-0372def9fbad","type":"Block","tag":"div","classes":["a289eb38-91bd-96c8-c879-37c319dcf3d1"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"41745d0a-8a1c-7c94-7704-59f26aabbcd4","type":"HtmlEmbed","tag":"div","classes":[],"children":[],"v":"<style>\n.row2 .works-img{\n clip-path: polygon(0 0, 0 0, 0 0, 0 0);\n}\n\n.row1 .works-img{\n clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);\n}\n\n.works p{\n opacity: 0;\n font-family: sans-serif;\n font-size: 1.5rem;\n color: white;\n margin-top: 1vw;\n}\n\n.row1{\n width: 100%;\n display: flex;\n justify-content: flex-end;\n padding-right: 2vw;\n}\n\n.row1 p{\n text-align: left;\n}\n\n.row2{\n width: 100%;\n display: flex;\n justify-content: flex-start;\n padding-left: 2vw;\n}\n\n.row2 p{\n text-align: right;\n}\n\n#type1 > .works > .works-img{\n height: 20vw;\n width: 30vw;\n background-color: red;\n overflow: hidden;\n}\n\n.row2 > .works > .works-img{\n height: 25vw;\n width: 35vw;\n background-color: red;\n overflow: hidden;\n}\n\n#type2 > .works > .works-img{\n height: 15vw;\n width: 25vw;\n background-color: red;\n overflow: hidden;\n}\n\n#type3 > .works > .works-img{\n height: 25vw;\n width: 35vw;\n background-color: red;\n overflow: hidden;\n}\n\n@media screen and (max-width: 768px) {\n #page1 {\n gap: 4vw;\n }\n\n .works p {\n font-size: 1rem;\n margin-top: 2vw;\n color: white;\n }\n\n .row1, .row2 {\n padding: 0;\n justify-content: center;\n }\n\n #type1 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n .row2 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n #type2 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n #type3 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n}\n\n@media screen and (max-width: 480px) {\n #page1 {\n gap: 6vw;\n }\n\n .works p {\n font-size: 1rem;\n margin-top: 3vw;\n color: white;\n }\n\n #type1 > .works > .works-img,\n .row2 > .works > .works-img,\n #type2 > .works > .works-img,\n #type3 > .works > .works-img {\n height: 60vw;\n width: 90vw;\n }\n}\n\n\n</style>","data":{"search":{"exclude":true},"embed":{"meta":{"html":"<style>\n.row2 .works-img{\n clip-path: polygon(0 0, 0 0, 0 0, 0 0);\n}\n\n.row1 .works-img{\n clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);\n}\n\n.works p{\n opacity: 0;\n font-family: sans-serif;\n font-size: 1.5rem;\n color: white;\n margin-top: 1vw;\n}\n\n.row1{\n width: 100%;\n display: flex;\n justify-content: flex-end;\n padding-right: 2vw;\n}\n\n.row1 p{\n text-align: left;\n}\n\n.row2{\n width: 100%;\n display: flex;\n justify-content: flex-start;\n padding-left: 2vw;\n}\n\n.row2 p{\n text-align: right;\n}\n\n#type1 > .works > .works-img{\n height: 20vw;\n width: 30vw;\n background-color: red;\n overflow: hidden;\n}\n\n.row2 > .works > .works-img{\n height: 25vw;\n width: 35vw;\n background-color: red;\n overflow: hidden;\n}\n\n#type2 > .works > .works-img{\n height: 15vw;\n width: 25vw;\n background-color: red;\n overflow: hidden;\n}\n\n#type3 > .works > .works-img{\n height: 25vw;\n width: 35vw;\n background-color: red;\n overflow: hidden;\n}\n\n@media screen and (max-width: 768px) {\n #page1 {\n gap: 4vw;\n }\n\n .works p {\n font-size: 1rem;\n margin-top: 2vw;\n color: white;\n }\n\n .row1, .row2 {\n padding: 0;\n justify-content: center;\n }\n\n #type1 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n .row2 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n #type2 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n #type3 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n}\n\n@media screen and (max-width: 480px) {\n #page1 {\n gap: 6vw;\n }\n\n .works p {\n font-size: 1rem;\n margin-top: 3vw;\n color: white;\n }\n\n #type1 > .works > .works-img,\n .row2 > .works > .works-img,\n #type2 > .works > .works-img,\n #type3 > .works > .works-img {\n height: 60vw;\n width: 90vw;\n }\n}\n\n\n</style>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"},"insideRTE":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]}}}],"styles":[{"_id":"88210ae2-fafa-f50e-5d14-aebd42ee7c84","fake":false,"type":"class","name":"row2","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"ee235c9e-612b-9b7a-7c11-ba7d36b05d5b","fake":false,"type":"class","name":"works","namespace":"","comb":"","styleLess":"display: flex; flex-direction: column; flex-wrap: nowrap; grid-column-gap: 0.5rem; grid-row-gap: 0.5rem;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"8a893afb-5285-9a83-26aa-19bc009eee60","fake":false,"type":"class","name":"u-text-style-large","namespace":"","comb":"","styleLess":"font-family: system-ui; font-size: 0px; line-height: 1.5; font-weight: 400; letter-spacing: 0em; ---mode--collection-b7222b48-79c4-934f-5073-fc41f016b656: mode-5208c5a5-0de0-01a0-a3b6-bcbe489ecc38; text-transform: @raw<|var(--_text-style---text-transform)|>; text-wrap: @raw<|pretty|>; display: @raw<|flow-root|>;","variants":{},"children":[],"createdBy":"5b94700c7794ec3bc175efda","origin":null,"selector":null},{"_id":"34ee7990-7d6e-5dbc-a281-711759006f39","fake":false,"type":"class","name":"image","namespace":"","comb":"","styleLess":"height: 100%; filter: brightness(6%) contrast(2%);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"4265dc5e-44c1-9675-8f61-2766709941df","fake":false,"type":"class","name":"anim_wrapper","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"a289eb38-91bd-96c8-c879-37c319dcf3d1","fake":false,"type":"class","name":"test","namespace":"","comb":"","styleLess":"width: 100%; height: 100vh; background-color: black;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"1ccca3ec-a7ee-8da4-ee9c-e243364d2423","fake":false,"type":"class","name":"row1","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"83baa115-3f25-59a7-e826-ec518332aa61","fake":false,"type":"class","name":"works-img","namespace":"","comb":"","styleLess":"background-color: hsla(0, 0.00%, 0.00%, 1.00);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"c151ea3d-4a5c-41e5-476d-687458a3f0ed","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"display: flex; width: 100%; padding-top: 2vw; padding-right: 0px; padding-bottom: 2vw; padding-left: 0px; flex-direction: column; flex-wrap: nowrap; grid-column-gap: 2vw; grid-row-gap: 2vw; background-color: black;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash.webp","siteId":"6874aaad8b4ed62391d7c38f","width":1500,"isHD":false,"height":971,"fileName":"6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash.webp","createdOn":"2025-07-11T13:34:11.423Z","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileHash":"abc7694a3e63d649666cd1b343b4537d","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","size":13766,"format":"webp","width":500,"quality":100,"_id":"6874b8928384993d93c65dd5","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","size":32060,"format":"webp","width":800,"quality":100,"_id":"6874b8928384993d93c65dd6","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp","size":56098,"format":"webp","width":1080,"quality":100,"_id":"6874b8928384993d93c65dd7","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash-p-1080.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e1_33ce844183dafa4f32770556a1cd4ed7_guillaume-briard-zuDk8NunJ3I-unsplash.webp","_id":"6874aaad8b4ed62391d7c3e1","updatedOn":"2025-07-14T08:01:16.599Z","fileSize":112258,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","siteId":"6874aaad8b4ed62391d7c38f","width":1500,"isHD":false,"height":1000,"fileName":"6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","createdOn":"2025-07-11T13:34:11.417Z","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileHash":"53095e8bf53d503c388d3faf4c6bc4b0","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash-p-500.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash-p-500.webp","size":7478,"format":"webp","width":500,"quality":100,"_id":"6874b8a12219a5da5391c8fb","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash-p-800.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash-p-800.webp","size":19306,"format":"webp","width":800,"quality":100,"_id":"6874b8a12219a5da5391c8fc","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash-p-1080.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash-p-1080.webp","size":34332,"format":"webp","width":1080,"quality":100,"_id":"6874b8a12219a5da5391c8fd","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash-p-1080.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e2_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","_id":"6874aaad8b4ed62391d7c3e2","updatedOn":"2025-07-14T08:01:24.408Z","fileSize":68306,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash.webp","siteId":"6874aaad8b4ed62391d7c38f","width":1500,"isHD":false,"height":1117,"fileName":"6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash.webp","createdOn":"2025-07-11T13:34:10.877Z","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileHash":"7acfc94d4de38443ebe59d9a71c80489","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp","size":23128,"format":"webp","width":500,"quality":100,"_id":"6874b8a6f23cb71fe3390459","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash-p-800.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash-p-800.webp","size":52314,"format":"webp","width":800,"quality":100,"_id":"6874b8a6f23cb71fe339045a","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash-p-1080.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash-p-1080.webp","size":84642,"format":"webp","width":1080,"quality":100,"_id":"6874b8a6f23cb71fe339045b","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash-p-1080.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3e6_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash.webp","_id":"6874aaad8b4ed62391d7c3e6","updatedOn":"2025-07-14T08:01:29.490Z","fileSize":146826,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash.webp","siteId":"6874aaad8b4ed62391d7c38f","width":1700,"isHD":false,"height":1133,"fileName":"6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash.webp","createdOn":"2025-07-11T13:33:30.171Z","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileHash":"f6527636ab72853a09727345fc0ff04c","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp","size":4158,"format":"webp","width":500,"quality":100,"_id":"6874b8b23e4df322cd4c0ee0","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp","size":7874,"format":"webp","width":800,"quality":100,"_id":"6874b8b23e4df322cd4c0ee1","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp","size":12204,"format":"webp","width":1080,"quality":100,"_id":"6874b8b23e4df322cd4c0ee2","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-1080.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp","size":22234,"format":"webp","width":1600,"quality":100,"_id":"6874b8b23e4df322cd4c0ee3","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash-p-1600.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3dd_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash.webp","_id":"6874aaad8b4ed62391d7c3dd","updatedOn":"2025-07-14T08:01:35.934Z","fileSize":23226,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash.webp","siteId":"6874aaad8b4ed62391d7c38f","width":1500,"isHD":false,"height":1000,"fileName":"6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash.webp","createdOn":"2025-07-11T13:33:30.153Z","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileHash":"9ef22b0cef237e761c8cb1c002038386","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp","size":13192,"format":"webp","width":500,"quality":100,"_id":"6874b8c32f8c8e53bbf1e97e","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp","size":29294,"format":"webp","width":800,"quality":100,"_id":"6874b8c32f8c8e53bbf1e97f","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp","size":47596,"format":"webp","width":1080,"quality":100,"_id":"6874b8c32f8c8e53bbf1e980","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash-p-1080.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d5_77a0c2ab982caf077dbce9cabe8efde1_pascal-bullan-2OQEaRFwJdI-unsplash.webp","_id":"6874aaad8b4ed62391d7c3d5","updatedOn":"2025-07-14T08:01:42.186Z","fileSize":95870,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash.webp","siteId":"6874aaad8b4ed62391d7c38f","width":1500,"isHD":false,"height":1000,"fileName":"6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash.webp","createdOn":"2025-07-11T13:33:29.674Z","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileHash":"4019b9b44df98556d16c44a4f1c49ca1","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp","size":28216,"format":"webp","width":500,"quality":100,"_id":"6874b8dd17ae20d6ea095cae","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash-p-800.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash-p-800.webp","size":61518,"format":"webp","width":800,"quality":100,"_id":"6874b8dd17ae20d6ea095caf","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash-p-1080.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash-p-1080.webp","size":95210,"format":"webp","width":1080,"quality":100,"_id":"6874b8dd17ae20d6ea095cb0","cdnUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash-p-1080.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6874aaad8b4ed62391d7c38f/6874aaad8b4ed62391d7c3d8_66baca20af0290c42fcfaba9141b3273_zhen-mogila-iYw2XrxRslA-unsplash.webp","_id":"6874aaad8b4ed62391d7c3d8","updatedOn":"2025-07-14T08:01:59.727Z","fileSize":161410,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"bafc1a09-762a-bc04-bc76-6418b098b84c","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["0a270bf7-ebdc-398b-ce67-173e953b6c9d","871a4adc-77ff-0838-5946-0c0e74c25060","ec3e4bc6-b0c9-c577-de7e-b97ccbeb036b","be5a2d45-392e-210e-856a-2c7c85abc5af"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0a270bf7-ebdc-398b-ce67-173e953b6c9d","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e1"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"871a4adc-77ff-0838-5946-0c0e74c25060","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5358"],"children":["6b7e7959-1d7f-6562-24bd-86302895c738","33992b65-4f95-eccc-d78e-d03f7ef09942","a7c1ed4e-b467-e2b6-d2b5-4d92ed363268","4ea96c78-9c9b-437b-f058-5bf18e69d6a0","a437e18b-b69d-5f52-e02e-a9cc95ec07fd","358e1ded-0df9-c3b2-c921-efd8f6f87787"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6b7e7959-1d7f-6562-24bd-86302895c738","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e2"],"children":["b3e07c26-8964-f66f-5ad1-55d89a325f74"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"type1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b3e07c26-8964-f66f-5ad1-55d89a325f74","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e3"],"children":["111a5a85-6e1e-d8de-5a44-64c2078bdf58","7ebc98e5-7c7b-fe43-c75e-63d67c9e9831"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"111a5a85-6e1e-d8de-5a44-64c2078bdf58","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e4"],"children":["bffdeaf0-e682-fbc0-c101-3ca831107604"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"bffdeaf0-e682-fbc0-c101-3ca831107604","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"6876583bb481b5100071f6e3"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":5000,"size":"30vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"7ebc98e5-7c7b-fe43-c75e-63d67c9e9831","type":"Paragraph","tag":"p","classes":["07815991-952a-8d98-0e00-e4c25af27140"],"children":["32a1022c-47f3-d4f0-6da8-5a307ee5804c"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"32a1022c-47f3-d4f0-6da8-5a307ee5804c","text":true,"v":"Project Name"},{"_id":"33992b65-4f95-eccc-d78e-d03f7ef09942","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e6"],"children":["362e59fb-7813-6277-47de-8a959b02b286"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"362e59fb-7813-6277-47de-8a959b02b286","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e3"],"children":["b10f49e8-0d61-cb53-0123-7d8a7957c4b7","06136575-b247-a36f-6cb7-ee75d088b32c"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b10f49e8-0d61-cb53-0123-7d8a7957c4b7","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e4"],"children":["9ed5f97c-10b8-6651-5030-6f2b02aae511"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"9ed5f97c-10b8-6651-5030-6f2b02aae511","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"6876583bb481b5100071f6db"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":4285,"size":"35vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"06136575-b247-a36f-6cb7-ee75d088b32c","type":"Paragraph","tag":"p","classes":["2b98b6a5-4825-271b-2603-247860b265e5"],"children":["21752c01-1be0-f92d-7881-8d23c0a379c4"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"21752c01-1be0-f92d-7881-8d23c0a379c4","text":true,"v":"Project Name"},{"_id":"a7c1ed4e-b467-e2b6-d2b5-4d92ed363268","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e2"],"children":["da02e2b1-cb6f-0a77-77b6-1e72618f462e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"type2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"da02e2b1-cb6f-0a77-77b6-1e72618f462e","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e3"],"children":["3db75628-9197-503d-e7bb-771b9b200ac2","d948774c-33b9-fa65-db99-92b0d575b0cc"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3db75628-9197-503d-e7bb-771b9b200ac2","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e4"],"children":["885bc6ef-992d-dca9-7a87-992cd753185b"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"885bc6ef-992d-dca9-7a87-992cd753185b","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"6876583bb481b5100071f6d2"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":6800,"size":"25vw"},{"max":10000,"size":"1700px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d948774c-33b9-fa65-db99-92b0d575b0cc","type":"Paragraph","tag":"p","classes":["2b98b6a5-4825-271b-2603-247860b265e5"],"children":["08ca60ba-8332-d376-df99-e0dfd76a18d7"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"08ca60ba-8332-d376-df99-e0dfd76a18d7","text":true,"v":"Project Name"},{"_id":"4ea96c78-9c9b-437b-f058-5bf18e69d6a0","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e6"],"children":["64553e1f-2ae5-b0b9-13db-f9c0d79dad26"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"type1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"64553e1f-2ae5-b0b9-13db-f9c0d79dad26","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e3"],"children":["d8b98c16-376a-f63c-401f-e113dca8580f","8265f7bb-c42f-2d1b-3ae9-1bc2fd06ff4f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d8b98c16-376a-f63c-401f-e113dca8580f","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e4"],"children":["fa950df2-3f35-3531-8a9a-d6d7fd553b98"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fa950df2-3f35-3531-8a9a-d6d7fd553b98","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765667b68b2b07701901ea"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":5000,"size":"30vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"8265f7bb-c42f-2d1b-3ae9-1bc2fd06ff4f","type":"Paragraph","tag":"p","classes":["2b98b6a5-4825-271b-2603-247860b265e5"],"children":["8fd2652a-87a3-209a-149e-eaa6ad8eec7d"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"8fd2652a-87a3-209a-149e-eaa6ad8eec7d","text":true,"v":"Project Name"},{"_id":"a437e18b-b69d-5f52-e02e-a9cc95ec07fd","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e2"],"children":["7d4a2f97-3a82-9c51-e39a-a70d518c7a76"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"type3"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"7d4a2f97-3a82-9c51-e39a-a70d518c7a76","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e3"],"children":["19ad5765-eef2-f821-a073-f11958862acd","36147538-1567-25e0-1e92-82be4907bd0b"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"19ad5765-eef2-f821-a073-f11958862acd","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e4"],"children":["9aeeea7f-8b3b-1544-c8f6-5619f85c61e6"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"9aeeea7f-8b3b-1544-c8f6-5619f85c61e6","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765667b68b2b07701901f4"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":4285,"size":"35vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"36147538-1567-25e0-1e92-82be4907bd0b","type":"Paragraph","tag":"p","classes":["2b98b6a5-4825-271b-2603-247860b265e5"],"children":["3a5e2d4f-e7dc-7c74-2d04-23e833a9e9bf"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3a5e2d4f-e7dc-7c74-2d04-23e833a9e9bf","text":true,"v":"Project Name"},{"_id":"358e1ded-0df9-c3b2-c921-efd8f6f87787","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e6"],"children":["1964c9ce-af4d-9d5d-be2f-f22b1c903ebc"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"type2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1964c9ce-af4d-9d5d-be2f-f22b1c903ebc","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e3"],"children":["d51b9256-b741-d3e4-874b-eeaab46a5f58","00d3bd86-7de0-fff7-d7ae-a0167fef8b96"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d51b9256-b741-d3e4-874b-eeaab46a5f58","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e4"],"children":["0b1765d1-2b17-a56a-9fc6-23dba91aea42"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0b1765d1-2b17-a56a-9fc6-23dba91aea42","type":"Image","tag":"img","classes":["4a1bff29-f0bf-99e7-f985-30bf93bcfe42"],"children":[],"data":{"img":{"id":"68765667b68b2b07701901f1"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":767,"size":"90vw"},{"max":991,"size":"80vw"},{"max":6000,"size":"25vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"00d3bd86-7de0-fff7-d7ae-a0167fef8b96","type":"Paragraph","tag":"p","classes":["2b98b6a5-4825-271b-2603-247860b265e5"],"children":["2b0011df-c60a-d0cd-5c56-75a4084ef4f7"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2b0011df-c60a-d0cd-5c56-75a4084ef4f7","text":true,"v":"Project Name"},{"_id":"ec3e4bc6-b0c9-c577-de7e-b97ccbeb036b","type":"Block","tag":"div","classes":["2b98b6a5-4825-271b-2603-247860b265e1"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"be5a2d45-392e-210e-856a-2c7c85abc5af","type":"HtmlEmbed","tag":"div","classes":[],"children":[],"v":"<style>\n.row2 .works-img{\n clip-path: polygon(0 0, 0 0, 0 0, 0 0);\n}\n\n.row1 .works-img{\n clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);\n}\n\n.works p{\n opacity: 0;\n font-family: sans-serif;\n font-size: 1.5rem;\n color: white;\n margin-top: 1vw;\n}\n\n.row1{\n width: 100%;\n display: flex;\n justify-content: flex-end;\n padding-right: 2vw;\n}\n\n.row1 p{\n text-align: left;\n}\n\n.row2{\n width: 100%;\n display: flex;\n justify-content: flex-start;\n padding-left: 2vw;\n}\n\n.row2 p{\n text-align: right;\n}\n\n#type1 > .works > .works-img{\n height: 20vw;\n width: 30vw;\n background-color: red;\n overflow: hidden;\n}\n\n.row2 > .works > .works-img{\n height: 25vw;\n width: 35vw;\n background-color: red;\n overflow: hidden;\n}\n\n#type2 > .works > .works-img{\n height: 15vw;\n width: 25vw;\n background-color: red;\n overflow: hidden;\n}\n\n#type3 > .works > .works-img{\n height: 25vw;\n width: 35vw;\n background-color: red;\n overflow: hidden;\n}\n\n@media screen and (max-width: 768px) {\n #page1 {\n gap: 4vw;\n }\n\n .works p {\n font-size: 1rem;\n margin-top: 2vw;\n color: white;\n }\n\n .row1, .row2 {\n padding: 0;\n justify-content: center;\n }\n\n #type1 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n .row2 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n #type2 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n #type3 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n}\n\n@media screen and (max-width: 480px) {\n #page1 {\n gap: 6vw;\n }\n\n .works p {\n font-size: 1rem;\n margin-top: 3vw;\n color: white;\n }\n\n #type1 > .works > .works-img,\n .row2 > .works > .works-img,\n #type2 > .works > .works-img,\n #type3 > .works > .works-img {\n height: 60vw;\n width: 90vw;\n }\n}\n\n\n</style>","data":{"search":{"exclude":true},"embed":{"meta":{"html":"<style>\n.row2 .works-img{\n clip-path: polygon(0 0, 0 0, 0 0, 0 0);\n}\n\n.row1 .works-img{\n clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);\n}\n\n.works p{\n opacity: 0;\n font-family: sans-serif;\n font-size: 1.5rem;\n color: white;\n margin-top: 1vw;\n}\n\n.row1{\n width: 100%;\n display: flex;\n justify-content: flex-end;\n padding-right: 2vw;\n}\n\n.row1 p{\n text-align: left;\n}\n\n.row2{\n width: 100%;\n display: flex;\n justify-content: flex-start;\n padding-left: 2vw;\n}\n\n.row2 p{\n text-align: right;\n}\n\n#type1 > .works > .works-img{\n height: 20vw;\n width: 30vw;\n background-color: red;\n overflow: hidden;\n}\n\n.row2 > .works > .works-img{\n height: 25vw;\n width: 35vw;\n background-color: red;\n overflow: hidden;\n}\n\n#type2 > .works > .works-img{\n height: 15vw;\n width: 25vw;\n background-color: red;\n overflow: hidden;\n}\n\n#type3 > .works > .works-img{\n height: 25vw;\n width: 35vw;\n background-color: red;\n overflow: hidden;\n}\n\n@media screen and (max-width: 768px) {\n #page1 {\n gap: 4vw;\n }\n\n .works p {\n font-size: 1rem;\n margin-top: 2vw;\n color: white;\n }\n\n .row1, .row2 {\n padding: 0;\n justify-content: center;\n }\n\n #type1 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n .row2 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n #type2 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n\n #type3 > .works > .works-img {\n height: 45vw;\n width: 80vw;\n }\n}\n\n@media screen and (max-width: 480px) {\n #page1 {\n gap: 6vw;\n }\n\n .works p {\n font-size: 1rem;\n margin-top: 3vw;\n color: white;\n }\n\n #type1 > .works > .works-img,\n .row2 > .works > .works-img,\n #type2 > .works > .works-img,\n #type3 > .works > .works-img {\n height: 60vw;\n width: 90vw;\n }\n}\n\n\n</style>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"},"insideRTE":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]}}}],"styles":[{"_id":"2b98b6a5-4825-271b-2603-247860b265e1","fake":false,"type":"class","name":"test","namespace":"","comb":"","styleLess":"width: 100%; height: 100vh; background-color: black;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"2b98b6a5-4825-271b-2603-247860b265e4","fake":false,"type":"class","name":"works-img","namespace":"","comb":"","styleLess":"background-color: hsla(0, 0.00%, 0.00%, 1.00);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"4a1bff29-f0bf-99e7-f985-30bf93bcfe42","fake":false,"type":"class","name":"image","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; object-fit: cover;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"07815991-952a-8d98-0e00-e4c25af27140","fake":false,"type":"class","name":"text-size-large","namespace":"","comb":"","styleLess":"","variants":{"small":{"styleLess":"font-size: 1.25rem;"}},"children":[],"origin":null,"selector":null},{"_id":"2b98b6a5-4825-271b-2603-247860b265e3","fake":false,"type":"class","name":"works","namespace":"","comb":"","styleLess":"display: flex; flex-direction: column; flex-wrap: nowrap; grid-column-gap: 0.5rem; grid-row-gap: 0.5rem;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"2b98b6a5-4825-271b-2603-247860b265e5","fake":false,"type":"class","name":"u-text-style-large","namespace":"","comb":"","styleLess":"font-family: system-ui; font-size: 0px; line-height: 1.5; font-weight: 400; letter-spacing: 0em; ---mode--collection-b7222b48-79c4-934f-5073-fc41f016b656: mode-5208c5a5-0de0-01a0-a3b6-bcbe489ecc38; text-transform: @raw<|var(--_text-style---text-transform)|>; text-wrap: @raw<|pretty|>; display: @raw<|flow-root|>;","variants":{},"children":[],"createdBy":"5b94700c7794ec3bc175efda","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb5358","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"display: flex; width: 100%; padding-top: 2vw; padding-right: 0px; padding-bottom: 2vw; padding-left: 0px; flex-direction: column; justify-content: flex-start; flex-wrap: nowrap; align-items: stretch; grid-column-gap: 2vw; grid-row-gap: 2vw; background-color: black;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"2b98b6a5-4825-271b-2603-247860b265e2","fake":false,"type":"class","name":"row1","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"2b98b6a5-4825-271b-2603-247860b265e6","fake":false,"type":"class","name":"row2","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center;","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","siteId":"68765667b68b2b07701901d5","width":1500,"isHD":false,"height":1117,"fileName":"6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","createdOn":"2025-07-15T13:31:40.604Z","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileHash":"7acfc94d4de38443ebe59d9a71c80489","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","size":23128,"format":"webp","width":500,"quality":100,"_id":"6874b8a6f23cb71fe3390459","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","size":52314,"format":"webp","width":800,"quality":100,"_id":"6874b8a6f23cb71fe339045a","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","size":84642,"format":"webp","width":1080,"quality":100,"_id":"6874b8a6f23cb71fe339045b","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash.webp","origFileName":"a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"6876583bb481b5100071f6e3_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash.webp","format":"webp","_id":"6876583bb481b5100071f6e7","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_a9abc871afb86b8e200149f7bca873e6_andre-benz-PKAW8MQYlU8-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6e3_andre-benz-PKAW8MQYlU8-unsplash.webp","_id":"6876583bb481b5100071f6e3","updatedOn":"2025-07-15T13:31:40.605Z","fileSize":146826,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","siteId":"68765667b68b2b07701901d5","width":1500,"isHD":false,"height":1000,"fileName":"6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","createdOn":"2025-07-15T13:31:40.601Z","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileHash":"53095e8bf53d503c388d3faf4c6bc4b0","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","size":7478,"format":"webp","width":500,"quality":100,"_id":"6874b8a12219a5da5391c8fb","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","size":19306,"format":"webp","width":800,"quality":100,"_id":"6874b8a12219a5da5391c8fc","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","origFileName":"alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","size":34332,"format":"webp","width":1080,"quality":100,"_id":"6874b8a12219a5da5391c8fd","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6db_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","origFileName":"870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","fileName":"6876583bb481b5100071f6db_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","format":"webp","_id":"6876583bb481b5100071f6df","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6db_870c4a4b76d22fc52256a9f1a694b2d2_alessio-soggetti-cfKC0UOZHJo-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6db_alessio-soggetti-cfKC0UOZHJo-unsplash.webp","_id":"6876583bb481b5100071f6db","updatedOn":"2025-07-15T13:31:40.602Z","fileSize":68306,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","siteId":"68765667b68b2b07701901d5","width":1700,"isHD":false,"height":1133,"fileName":"6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","createdOn":"2025-07-15T13:31:40.598Z","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileHash":"f6527636ab72853a09727345fc0ff04c","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","size":4158,"format":"webp","width":500,"quality":100,"_id":"6874b8b23e4df322cd4c0ee0","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","size":7874,"format":"webp","width":800,"quality":100,"_id":"6874b8b23e4df322cd4c0ee1","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","size":12204,"format":"webp","width":1080,"quality":100,"_id":"6874b8b23e4df322cd4c0ee2","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","size":22234,"format":"webp","width":1600,"quality":100,"_id":"6874b8b23e4df322cd4c0ee3","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash.webp","origFileName":"f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"6876583bb481b5100071f6d2_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash.webp","format":"webp","_id":"6876583bb481b5100071f6d7","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_f40ae2c91c2651f5aa93632415410c03_luca-bravo-WeFDiEDModQ-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/6876583bb481b5100071f6d2_luca-bravo-WeFDiEDModQ-unsplash.webp","_id":"6876583bb481b5100071f6d2","updatedOn":"2025-07-15T13:31:40.599Z","fileSize":23226,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","siteId":"68765667b68b2b07701901d5","width":1500,"isHD":false,"height":1000,"fileName":"68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","createdOn":"2025-07-02T07:20:00.287Z","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileHash":"9ef22b0cef237e761c8cb1c002038386","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","size":13192,"format":"webp","width":500,"quality":100,"_id":"6864c95ec34f16ae817be38c","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","size":29294,"format":"webp","width":800,"quality":100,"_id":"6864c95ec34f16ae817be38d","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","size":47596,"format":"webp","width":1080,"quality":100,"_id":"6864c95ec34f16ae817be38e","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","format":"webp","_id":"6864dd9f1a871af9a45a44b6","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901ea_quino-al-mBQIfKlvowM-unsplash.webp","_id":"68765667b68b2b07701901ea","updatedOn":"2025-07-15T13:23:52.732Z","fileSize":95870,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","siteId":"68765667b68b2b07701901d5","width":1500,"isHD":false,"height":1000,"fileName":"68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","createdOn":"2025-07-02T07:20:00.292Z","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileHash":"4019b9b44df98556d16c44a4f1c49ca1","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","size":28216,"format":"webp","width":500,"quality":100,"_id":"6864c95b8d0c6b7485181228","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","size":61518,"format":"webp","width":800,"quality":100,"_id":"6864c95b8d0c6b7485181229","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","size":95210,"format":"webp","width":1080,"quality":100,"_id":"6864c95b8d0c6b748518122a","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","format":"webp","_id":"6864dd9f1a871af9a45a44be","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f4_zany-jadraque-ZCRtfop2hZY-unsplash.webp","_id":"68765667b68b2b07701901f4","updatedOn":"2025-07-15T13:23:52.873Z","fileSize":161410,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","siteId":"68765667b68b2b07701901d5","width":1500,"isHD":false,"height":1000,"fileName":"68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","createdOn":"2025-07-02T07:20:00.283Z","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileHash":"f221262dc53ef9b380dfea31d2bb8644","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","size":15078,"format":"webp","width":500,"quality":100,"_id":"6864c95b8bbc636d2ef7f767","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","size":34220,"format":"webp","width":800,"quality":100,"_id":"6864c95b8bbc636d2ef7f768","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","size":56594,"format":"webp","width":1080,"quality":100,"_id":"6864c95b8bbc636d2ef7f769","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","format":"webp","_id":"6864dd9f1a871af9a45a44ae","cdnUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/68765667b68b2b07701901d5/68765667b68b2b07701901f1_samuel-ferrara-1527pjeb6jg-unsplash.webp","_id":"68765667b68b2b07701901f1","updatedOn":"2025-07-15T13:23:52.737Z","fileSize":107816,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
Shader Image
Newly added
Shaders
Add
Shader Image
Copy Component
Copy external scripts and paste it in the body
<script src="https://cdn.jsdelivr.net/gh/studio-freight/lenis@latest/bundled/lenis.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/gsap.min.js"></script>Copy javascript and paste it in the body
<script type="module">
import * as THREE from 'https://cdn.jsdelivr.net/npm/three@0.168.0/build/three.module.js';
class ImageRollAnimation {
constructor() {
// Initialize properties
this.scene = new THREE.Scene();
this.meshes = [];
this.animatedImages = new Set();
this.textureLoader = new THREE.TextureLoader();
this.progress = 0;
this.angle = Math.PI / 8;
this.images = [...document.querySelectorAll('.webgl img')];
this.loadedImagesCount = 0;
this.totalImages = this.images.length;
// Initialize components
this.initLenis();
this.setupCamera();
this.setupRenderer();
this.setupShaders();
this.preloadImages();
}
initLenis() {
// Initialize Lenis smooth scrolling
this.smoothScroll = new Lenis({
duration: 1.2,
easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),
direction: 'vertical',
gestureDirection: 'vertical',
smooth: true,
mouseMultiplier: 1,
smoothTouch: false,
touchMultiplier: 2,
infinite: false
});
// Link lenis to requestAnimationFrame
const raf = (time) => {
this.smoothScroll.raf(time);
requestAnimationFrame(raf);
};
// Start the animation loop
requestAnimationFrame(raf);
// Update Lenis on window resize
window.addEventListener('resize', () => {
this.smoothScroll.resize();
});
}
setupCamera() {
const fov = Math.atan((window.innerHeight/2) / 500) * (180/Math.PI) * 2;
this.camera = new THREE.PerspectiveCamera(fov, window.innerWidth / window.innerHeight, 0.1, 1000);
this.camera.position.z = 500;
}
setupRenderer() {
this.renderer = new THREE.WebGLRenderer({
canvas: document.querySelector('#canvas'),
antialias: true,
alpha: true
});
this.renderer.outputColorSpace = THREE.SRGBColorSpace;
this.renderer.setSize(window.innerWidth, window.innerHeight);
this.renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2));
// Handle window resize
window.addEventListener('resize', () => {
// Update camera
this.camera.aspect = window.innerWidth / window.innerHeight;
this.camera.updateProjectionMatrix();
// Update renderer
this.renderer.setSize(window.innerWidth, window.innerHeight);
this.renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2));
});
}
setupShaders() {
this.vertexShader = `
uniform float time;
uniform float angle;
uniform float progress;
uniform vec4 resolution;
varying vec2 vUv;
varying float vFrontShadow;
// varying float vBackShadow;
// varying float vProgress;
uniform sampler2D texture1;
uniform sampler2D texture2;
uniform vec2 pixels;
const float pi = 3.1415925;
mat4 rotationMatrix(vec3 axis, float angle) {
axis = normalize(axis);
float s = sin(angle);
float c = cos(angle);
float oc = 1.0 - c;
return mat4(oc * axis.x * axis.x + c, oc * axis.x * axis.y - axis.z * s, oc * axis.z * axis.x + axis.y * s, 0.0,
oc * axis.x * axis.y + axis.z * s, oc * axis.y * axis.y + c, oc * axis.y * axis.z - axis.x * s, 0.0,
oc * axis.z * axis.x - axis.y * s, oc * axis.y * axis.z + axis.x * s, oc * axis.z * axis.z + c, 0.0,
0.0, 0.0, 0.0, 1.0);
}
vec3 rotate(vec3 v, vec3 axis, float angle) {
mat4 m = rotationMatrix(axis, angle);
return (m * vec4(v, 1.0)).xyz;
}
void main() {
vUv = uv;
float pi = 3.14159265359;
float finalAngle = angle - 0.*0.3*sin(progress*6.);
// @todo account for aspect ratio!!!
vec3 newposition = position;
// float angle = pi/10.;
float rad = 0.2;
float rolls = 5.;
// rot
newposition = rotate(newposition - vec3(-.5,.5,0.), vec3(0.,0.,1.),-finalAngle) + vec3(-.5,.5,0.);
float offs = (newposition.x + 0.5)/(sin(finalAngle) + cos(finalAngle)) ; // -0.5..0.5 -> 0..1
float tProgress = clamp( (progress - offs*0.99)/0.01 , 0.,1.);
// shadows
vFrontShadow = clamp((progress - offs*0.95)/0.05,0.7,1.);
// vBackShadow = 1. - clamp(abs((progress - offs*0.9)/0.1),0.,1.);
// vProgress = clamp((progress - offs*0.95)/0.05,0.,1.);
newposition.z = rad + rad*(1. - offs/2.)*sin(-offs*rolls*pi - 0.5*pi);
newposition.x = - 0.5 + rad*(1. - offs/2.)*cos(-offs*rolls*pi + 0.5*pi);
// // rot back
newposition = rotate(newposition - vec3(-.5,.5,0.), vec3(0.,0.,1.),finalAngle) + vec3(-.5,.5,0.);
// unroll
newposition = rotate(newposition - vec3(-.5,0.5,rad), vec3(sin(finalAngle),cos(finalAngle),0.), -pi*progress*rolls);
newposition += vec3(
-.5 + progress*cos(finalAngle)*(sin(finalAngle) + cos(finalAngle)),
0.5 - progress*sin(finalAngle)*(sin(finalAngle) + cos(finalAngle)),
rad*(1.-progress/2.)
);
// animation
vec3 finalposition = mix(position, newposition, 1.0 - tProgress);
gl_Position = projectionMatrix * modelViewMatrix * vec4(finalposition, 1.0 );
}
`;
this.fragmentShader = `
varying vec2 vUv;
uniform sampler2D uTexture;
uniform vec2 uImageSize;
uniform vec2 uContainerSize;
varying float vFrontShadow;
uniform float progress;
vec2 cover(vec2 uv, vec2 containerSize, vec2 imageSize) {
float containerRatio = containerSize.x / containerSize.y;
float imageRatio = imageSize.x / imageSize.y;
vec2 scale;
vec2 offset;
if(imageRatio > containerRatio) {
scale = vec2(containerSize.y / imageSize.y);
offset = vec2((containerSize.x - imageSize.x * scale.x) * 0.5, 0.0);
} else {
scale = vec2(containerSize.x / imageSize.x);
offset = vec2(0.0, (containerSize.y - imageSize.y * scale.y) * 0.5);
}
vec2 adjustedUV = (uv * containerSize - offset) / (imageSize * scale);
return adjustedUV;
}
void main() {
vec2 uv = vUv;
vec2 containerSize = uContainerSize;
vec2 imageSize = uImageSize;
vec2 adjustedUV = cover(uv, containerSize, imageSize);
vec4 color = texture2D(uTexture, adjustedUV);
// Apply shadow effect
gl_FragColor = color;
gl_FragColor.rgb *=vFrontShadow;
gl_FragColor.a = clamp(progress*5.,0.,1.);
}
`;
}
preloadImages() {
// Preload all images before starting animation
this.images.forEach(img => {
if (img.complete) {
this.handleImageLoad(img);
} else {
img.onload = () => this.handleImageLoad(img);
img.onerror = () => {
console.error('Error loading image:', img.src);
this.handleImageLoad(img); // Count error as loaded to avoid hanging
};
}
});
}
handleImageLoad(img) {
this.loadedImagesCount++;
if (this.loadedImagesCount === this.totalImages) {
this.initMeshes();
this.setupIntersectionObserver();
this.animate();
}
}
initMeshes() {
this.images.forEach(img => {
const bound = img.getBoundingClientRect();
const geo = new THREE.PlaneGeometry(1, 1, 60, 60); // Increased segments for better deformation
// Create texture from loaded image
const texture = this.textureLoader.load(img.src);
const mat = new THREE.ShaderMaterial({
vertexShader: this.vertexShader,
fragmentShader: this.fragmentShader,
side: THREE.DoubleSide,
uniforms: {
uTexture: { value: texture },
uImageSize: { value: new THREE.Vector2(img.naturalWidth, img.naturalHeight) },
uContainerSize: { value: new THREE.Vector2(bound.width, bound.height) },
time: { value: 0 },
angle: { value: this.angle },
progress: { value: 0 },
resolution: { value: new THREE.Vector4() }
}
});
const mesh = new THREE.Mesh(geo, mat);
mesh.scale.set(bound.width, bound.height, 1);
mesh.position.x = bound.left - window.innerWidth/2 + bound.width/2;
mesh.position.y = -bound.top + window.innerHeight/2 - bound.height/2;
this.scene.add(mesh);
// Store the mesh and image together
this.meshes.push({ mesh, img });
});
}
setupIntersectionObserver() {
const observerOptions = {
root: null,
rootMargin: '0px',
threshold: 0.5 // When at least 50% of the image is visible
};
this.observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
// Find the corresponding mesh for this image
const meshData = this.meshes.find(item => item.img === entry.target);
if (meshData && !this.animatedImages.has(entry.target)) {
if (entry.isIntersecting) {
// Animate to 1 only once
gsap.to(meshData.mesh.material.uniforms.progress, {
value: 1,
duration: 1.4,
ease: 'power2.out',
onComplete: () => {
// Mark this image as animated
this.animatedImages.add(entry.target);
// Stop observing this image
this.observer.unobserve(entry.target);
}
});
}
}
});
}, observerOptions);
// Observe all images
this.images.forEach(img => {
this.observer.observe(img);
});
}
updatePosition() {
this.meshes.forEach(({ mesh, img }) => {
const bound = img.getBoundingClientRect();
mesh.position.x = bound.left - window.innerWidth/2 + bound.width/2;
mesh.position.y = -bound.top + window.innerHeight/2 - bound.height/2;
// Update uniforms for container size in case of resize
if (mesh.material.uniforms.uContainerSize) {
mesh.material.uniforms.uContainerSize.value.set(bound.width, bound.height);
}
});
}
animate() {
requestAnimationFrame(this.animate.bind(this));
const time = performance.now() * 0.001; // Convert to seconds
// Update time uniform for all meshes
this.scene.children.forEach(mesh => {
if (mesh.material && mesh.material.uniforms) {
mesh.material.uniforms.time.value = time;
}
});
this.updatePosition();
// Render
this.renderer.render(this.scene, this.camera);
}
}
// Initialize the animation
const imageRollAnimation = new ImageRollAnimation();
</script>Copy styles and paste it in the head
Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"1689e927-b7ea-079c-c468-46f717ab77da","type":"Block","tag":"div","classes":["524a283b-20b8-7cff-fdba-f0f48b1a63eb"],"children":["7f1bfc97-515f-8311-f59e-7ee60c486eae"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"7f1bfc97-515f-8311-f59e-7ee60c486eae","type":"Block","tag":"div","classes":["959145fd-77c0-f6ef-9812-2de41f21d621","19b8e765-b4f4-fe47-385d-8c125cbe1f1b"],"children":["917b1edc-8609-1aa9-7505-cda660e25e71","ded3d89c-e3ba-91eb-2a69-e7b5862d661a","0ba9031d-f881-76dc-1ae6-71d05a3f5a47","97e50a57-7c49-6a7d-bcfd-105e411c7a66","190c5431-6f02-2691-67e6-2d8b52b1f707"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"917b1edc-8609-1aa9-7505-cda660e25e71","type":"Block","tag":"div","classes":["c7e49534-d426-b100-a005-74b9fe99c9ee"],"children":["0dc31324-01af-e6f0-b16e-70c2186f24bc"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0dc31324-01af-e6f0-b16e-70c2186f24bc","type":"Block","tag":"div","classes":["a479f22b-ebd8-1e7f-6e8a-fbbb61f32a2f"],"children":["44416cb2-1973-0725-c44f-acb5965750b0"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"44416cb2-1973-0725-c44f-acb5965750b0","type":"Image","tag":"img","classes":["9f8c816f-af28-a2ec-8db4-a6ebf6fa0be4"],"children":[],"data":{"img":{"id":"6864c956065036a9dc4792dc"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1500,"size":"100vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ded3d89c-e3ba-91eb-2a69-e7b5862d661a","type":"Block","tag":"div","classes":["ab54d35a-681f-17b7-ae5f-db320a50c7b4"],"children":["3e6ba6d5-d4ef-d5d6-9407-7a0b09729f5f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3e6ba6d5-d4ef-d5d6-9407-7a0b09729f5f","type":"Block","tag":"div","classes":["a479f22b-ebd8-1e7f-6e8a-fbbb61f32a2f"],"children":["b3a11f5d-72bc-225a-f0d9-0b4c2cca7a11"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b3a11f5d-72bc-225a-f0d9-0b4c2cca7a11","type":"Image","tag":"img","classes":["9f8c816f-af28-a2ec-8db4-a6ebf6fa0be4"],"children":[],"data":{"img":{"id":"6864c95776a432b3ff64add3"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1500,"size":"100vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0ba9031d-f881-76dc-1ae6-71d05a3f5a47","type":"Block","tag":"div","classes":["5f099ee3-cbc0-d16b-ba5f-ee0371b99acb"],"children":["ec993008-a1a1-74e9-97df-138ae298ce85"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page3"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ec993008-a1a1-74e9-97df-138ae298ce85","type":"Block","tag":"div","classes":["a479f22b-ebd8-1e7f-6e8a-fbbb61f32a2f"],"children":["e98330b8-0b94-6d03-56a1-fc79291d0a48"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e98330b8-0b94-6d03-56a1-fc79291d0a48","type":"Image","tag":"img","classes":["9f8c816f-af28-a2ec-8db4-a6ebf6fa0be4"],"children":[],"data":{"img":{"id":"6864c957898ee100dcf21df6"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1500,"size":"100vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"97e50a57-7c49-6a7d-bcfd-105e411c7a66","type":"Block","tag":"div","classes":["8464cf1b-ec30-98c2-c291-7646472716c4"],"children":["6b9f36d4-e2bc-f6e1-331c-7e3a04a42470"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page4"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6b9f36d4-e2bc-f6e1-331c-7e3a04a42470","type":"Block","tag":"div","classes":["a479f22b-ebd8-1e7f-6e8a-fbbb61f32a2f"],"children":["fa5c85a1-0bba-29e2-ad9c-05688e75308f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fa5c85a1-0bba-29e2-ad9c-05688e75308f","type":"Image","tag":"img","classes":["9f8c816f-af28-a2ec-8db4-a6ebf6fa0be4"],"children":[],"data":{"img":{"id":"6864c9567b687b7d3b4914d2"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":1500,"size":"100vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"190c5431-6f02-2691-67e6-2d8b52b1f707","type":"DOM","tag":"div","classes":["9c1bbbcd-109e-018c-a7bb-dae49dcbd096"],"children":[],"data":{"tag":"canvas","attributes":[{"name":"id","value":"canvas"}]}}],"styles":[{"_id":"9f8c816f-af28-a2ec-8db4-a6ebf6fa0be4","fake":false,"type":"class","name":"Image","namespace":"","comb":"","styleLess":"height: 100%; opacity: 0;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"ab54d35a-681f-17b7-ae5f-db320a50c7b4","fake":false,"type":"class","name":"page2","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"9c1bbbcd-109e-018c-a7bb-dae49dcbd096","fake":false,"type":"class","name":"canvas","namespace":"","comb":"","styleLess":"position: fixed; left: 0px; top: 0px; width: 100%; height: 100vh;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"8464cf1b-ec30-98c2-c291-7646472716c4","fake":false,"type":"class","name":"page4","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"19b8e765-b4f4-fe47-385d-8c125cbe1f1b","fake":false,"type":"class","name":"u-container","namespace":"","comb":"&","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"c7e49534-d426-b100-a005-74b9fe99c9ee","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"524a283b-20b8-7cff-fdba-f0f48b1a63eb","fake":false,"type":"class","name":"anim_wrapper","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"a479f22b-ebd8-1e7f-6e8a-fbbb61f32a2f","fake":false,"type":"class","name":"webgl","namespace":"","comb":"","styleLess":"width: 40vw; height: 25vw;","variants":{"small":{"styleLess":"width: 100%; height: 50vh;"},"tiny":{"styleLess":"height: 40vh;"},"medium":{"styleLess":"width: 60vw; height: 40vw;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"959145fd-77c0-f6ef-9812-2de41f21d621","fake":false,"type":"class","name":"anim_contain","namespace":"","comb":"","styleLess":"","variants":{},"children":["19b8e765-b4f4-fe47-385d-8c125cbe1f1b"],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"5f099ee3-cbc0-d16b-ba5f-ee0371b99acb","fake":false,"type":"class","name":"page3","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash.webp","siteId":"6825887f51a5e7db47c92e8f","width":1500,"isHD":false,"height":842,"fileName":"6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash.webp","createdOn":"2025-07-02T05:53:26.494Z","origFileName":"sander-lenaerts-EItS-HxAfGU-unsplash.webp","fileHash":"f7bdb3def85dcf0cb6f29ed3cac6ad53","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash-p-500.webp","origFileName":"sander-lenaerts-EItS-HxAfGU-unsplash.webp","fileName":"6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash-p-500.webp","size":16614,"format":"webp","width":500,"quality":100,"_id":"6864c95b90c666a674c40408","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash-p-800.webp","origFileName":"sander-lenaerts-EItS-HxAfGU-unsplash.webp","fileName":"6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash-p-800.webp","size":35592,"format":"webp","width":800,"quality":100,"_id":"6864c95b90c666a674c40409","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash-p-1080.webp","origFileName":"sander-lenaerts-EItS-HxAfGU-unsplash.webp","fileName":"6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash-p-1080.webp","size":56138,"format":"webp","width":1080,"quality":100,"_id":"6864c95b90c666a674c4040a","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash-p-1080.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c956065036a9dc4792dc_sander-lenaerts-EItS-HxAfGU-unsplash.webp","_id":"6864c956065036a9dc4792dc","updatedOn":"2025-07-02T05:53:55.158Z","fileSize":98528,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash.webp","siteId":"6825887f51a5e7db47c92e8f","width":1500,"isHD":false,"height":1000,"fileName":"6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash.webp","createdOn":"2025-07-02T05:53:27.864Z","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileHash":"9ef22b0cef237e761c8cb1c002038386","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash-p-500.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash-p-500.webp","size":13192,"format":"webp","width":500,"quality":100,"_id":"6864c95ec34f16ae817be38c","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash-p-800.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash-p-800.webp","size":29294,"format":"webp","width":800,"quality":100,"_id":"6864c95ec34f16ae817be38d","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash-p-1080.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash-p-1080.webp","size":47596,"format":"webp","width":1080,"quality":100,"_id":"6864c95ec34f16ae817be38e","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash-p-1080.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c95776a432b3ff64add3_quino-al-mBQIfKlvowM-unsplash.webp","_id":"6864c95776a432b3ff64add3","updatedOn":"2025-07-02T05:53:55.294Z","fileSize":95870,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash.webp","siteId":"6825887f51a5e7db47c92e8f","width":1500,"isHD":false,"height":1000,"fileName":"6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash.webp","createdOn":"2025-07-02T05:53:27.977Z","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileHash":"4019b9b44df98556d16c44a4f1c49ca1","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash-p-500.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash-p-500.webp","size":28216,"format":"webp","width":500,"quality":100,"_id":"6864c95b8d0c6b7485181228","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash-p-800.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash-p-800.webp","size":61518,"format":"webp","width":800,"quality":100,"_id":"6864c95b8d0c6b7485181229","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash-p-1080.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash-p-1080.webp","size":95210,"format":"webp","width":1080,"quality":100,"_id":"6864c95b8d0c6b748518122a","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash-p-1080.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c957898ee100dcf21df6_zany-jadraque-ZCRtfop2hZY-unsplash.webp","_id":"6864c957898ee100dcf21df6","updatedOn":"2025-07-02T05:53:55.187Z","fileSize":161410,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash.webp","siteId":"6825887f51a5e7db47c92e8f","width":1500,"isHD":false,"height":1000,"fileName":"6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash.webp","createdOn":"2025-07-02T05:53:26.887Z","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileHash":"f221262dc53ef9b380dfea31d2bb8644","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash-p-500.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash-p-500.webp","size":15078,"format":"webp","width":500,"quality":100,"_id":"6864c95b8bbc636d2ef7f767","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash-p-800.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash-p-800.webp","size":34220,"format":"webp","width":800,"quality":100,"_id":"6864c95b8bbc636d2ef7f768","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash-p-1080.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash-p-1080.webp","size":56594,"format":"webp","width":1080,"quality":100,"_id":"6864c95b8bbc636d2ef7f769","cdnUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash-p-1080.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6825887f51a5e7db47c92e8f/6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6825887f51a5e7db47c92e8f/6864c9567b687b7d3b4914d2_samuel-ferrara-1527pjeb6jg-unsplash.webp","_id":"6864c9567b687b7d3b4914d2","updatedOn":"2025-07-02T05:53:55.276Z","fileSize":107816,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"0658fa1e-d974-da97-7c70-7d3e159db23c","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["c54a2ec6-20fe-bbba-2cb6-767a3f38d5a7"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"c54a2ec6-20fe-bbba-2cb6-767a3f38d5a7","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af27147"],"children":["b6293c4c-be10-e188-e245-461898bc51da","e0f1732f-ce7d-9638-33fe-e4653627b6da","a7e38d8a-7aa3-1a8e-5464-786aae905d7b","063515d3-dac2-192d-9348-45533abe9826","dc6bd21b-a987-ab4d-c308-647dc8d83936"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b6293c4c-be10-e188-e245-461898bc51da","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5358"],"children":["40a27df2-54b8-c7d9-6950-ec745b312b5e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"40a27df2-54b8-c7d9-6950-ec745b312b5e","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5359"],"children":["fcf5a325-a01d-5912-43c1-7a884123ca66"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fcf5a325-a01d-5912-43c1-7a884123ca66","type":"Image","tag":"img","classes":["7485b389-6821-4de1-a48f-350be7bb535a"],"children":[],"data":{"img":{"id":"6864dd06a65e6e729e130561"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1500,"size":"100vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e0f1732f-ce7d-9638-33fe-e4653627b6da","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb535b"],"children":["fb501868-43be-36d8-2577-10e2f59c253e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fb501868-43be-36d8-2577-10e2f59c253e","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5359"],"children":["9f4ce0bd-8ccb-8eef-d91b-2eefcc379be9"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"9f4ce0bd-8ccb-8eef-d91b-2eefcc379be9","type":"Image","tag":"img","classes":["7485b389-6821-4de1-a48f-350be7bb535a"],"children":[],"data":{"img":{"id":"6864dd9f1a871af9a45a44b2"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1500,"size":"100vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a7e38d8a-7aa3-1a8e-5464-786aae905d7b","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb535c"],"children":["b4f1cdbf-0b90-a73f-b21f-c10e15750a15"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page3"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b4f1cdbf-0b90-a73f-b21f-c10e15750a15","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5359"],"children":["acd4b728-9941-6c75-dc37-3c5333daa15f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"acd4b728-9941-6c75-dc37-3c5333daa15f","type":"Image","tag":"img","classes":["7485b389-6821-4de1-a48f-350be7bb535a"],"children":[],"data":{"img":{"id":"6864dd9f1a871af9a45a44ba"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1500,"size":"100vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"063515d3-dac2-192d-9348-45533abe9826","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb535d"],"children":["8aa712c4-15a6-78d5-6393-4a83c7ceb675"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page4"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"8aa712c4-15a6-78d5-6393-4a83c7ceb675","type":"Block","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb5359"],"children":["4a926273-5a4f-b6c5-15e3-7b57234d8d09"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"4a926273-5a4f-b6c5-15e3-7b57234d8d09","type":"Image","tag":"img","classes":["7485b389-6821-4de1-a48f-350be7bb535a"],"children":[],"data":{"img":{"id":"6864dd9f1a871af9a45a44aa"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1500,"size":"100vw"},{"max":10000,"size":"1500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"dc6bd21b-a987-ab4d-c308-647dc8d83936","type":"DOM","tag":"div","classes":["7485b389-6821-4de1-a48f-350be7bb535e"],"children":[],"data":{"tag":"canvas","attributes":[{"name":"id","value":"canvas"}]}}],"styles":[{"_id":"7485b389-6821-4de1-a48f-350be7bb535b","fake":false,"type":"class","name":"page2","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb535c","fake":false,"type":"class","name":"page3","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb5359","fake":false,"type":"class","name":"webgl","namespace":"","comb":"","styleLess":"width: 40vw; height: 25vw;","variants":{"small":{"styleLess":"width: 80%; height: 50vh;"},"tiny":{"styleLess":"height: 40vh;"},"medium":{"styleLess":"width: 60vw; height: 40vw;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb535d","fake":false,"type":"class","name":"page4","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"07815991-952a-8d98-0e00-e4c25af27147","fake":false,"type":"class","name":"container-large","namespace":"","comb":"","styleLess":"width: 100%; max-width: 80rem; margin-right: auto; margin-left: auto;","variants":{},"children":[],"origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb5358","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb535e","fake":false,"type":"class","name":"canvas","namespace":"","comb":"","styleLess":"position: fixed; left: 0px; top: 0px; width: 100%; height: 100vh;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center;","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"7485b389-6821-4de1-a48f-350be7bb535a","fake":false,"type":"class","name":"webgl-img","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; opacity: 0;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","siteId":"6864dd06a65e6e729e13054a","width":1500,"isHD":false,"height":842,"fileName":"6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","createdOn":"2025-06-18T12:44:06.839Z","origFileName":"sander-lenaerts-EItS-HxAfGU-unsplash.webp","fileHash":"f7bdb3def85dcf0cb6f29ed3cac6ad53","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","origFileName":"sander-lenaerts-EItS-HxAfGU-unsplash.webp","fileName":"6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","size":16636,"format":"webp","width":500,"quality":100,"_id":"67dd0c272f0295038d327552","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","origFileName":"sander-lenaerts-EItS-HxAfGU-unsplash.webp","fileName":"6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","size":35464,"format":"webp","width":800,"quality":100,"_id":"67dd0c272f0295038d327553","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","origFileName":"sander-lenaerts-EItS-HxAfGU-unsplash.webp","fileName":"6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","size":56282,"format":"webp","width":1080,"quality":100,"_id":"67dd0c272f0295038d327554","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","origFileName":"sander-lenaerts-EItS-HxAfGU-unsplash.webp","fileName":"6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","format":"webp","_id":"6852b494da839de405aabb01","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd06a65e6e729e130561_sander-lenaerts-EItS-HxAfGU-unsplash.webp","_id":"6864dd06a65e6e729e130561","updatedOn":"2025-07-02T07:17:26.589Z","markedAsDeleted":false,"fileSize":98528,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","siteId":"6864dd06a65e6e729e13054a","width":1500,"isHD":false,"height":1000,"fileName":"6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","createdOn":"2025-07-02T07:20:00.287Z","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileHash":"9ef22b0cef237e761c8cb1c002038386","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","size":13192,"format":"webp","width":500,"quality":100,"_id":"6864c95ec34f16ae817be38c","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","size":29294,"format":"webp","width":800,"quality":100,"_id":"6864c95ec34f16ae817be38d","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","size":47596,"format":"webp","width":1080,"quality":100,"_id":"6864c95ec34f16ae817be38e","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","origFileName":"quino-al-mBQIfKlvowM-unsplash.webp","fileName":"6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","format":"webp","_id":"6864dd9f1a871af9a45a44b6","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44b2_quino-al-mBQIfKlvowM-unsplash.webp","_id":"6864dd9f1a871af9a45a44b2","updatedOn":"2025-07-02T07:20:00.289Z","fileSize":95870,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","siteId":"6864dd06a65e6e729e13054a","width":1500,"isHD":false,"height":1000,"fileName":"6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","createdOn":"2025-07-02T07:20:00.292Z","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileHash":"4019b9b44df98556d16c44a4f1c49ca1","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","size":28216,"format":"webp","width":500,"quality":100,"_id":"6864c95b8d0c6b7485181228","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","size":61518,"format":"webp","width":800,"quality":100,"_id":"6864c95b8d0c6b7485181229","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","size":95210,"format":"webp","width":1080,"quality":100,"_id":"6864c95b8d0c6b748518122a","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","origFileName":"zany-jadraque-ZCRtfop2hZY-unsplash.webp","fileName":"6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","format":"webp","_id":"6864dd9f1a871af9a45a44be","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44ba_zany-jadraque-ZCRtfop2hZY-unsplash.webp","_id":"6864dd9f1a871af9a45a44ba","updatedOn":"2025-07-02T07:20:00.293Z","fileSize":161410,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","siteId":"6864dd06a65e6e729e13054a","width":1500,"isHD":false,"height":1000,"fileName":"6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","createdOn":"2025-07-02T07:20:00.283Z","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileHash":"f221262dc53ef9b380dfea31d2bb8644","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","size":15078,"format":"webp","width":500,"quality":100,"_id":"6864c95b8bbc636d2ef7f767","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","size":34220,"format":"webp","width":800,"quality":100,"_id":"6864c95b8bbc636d2ef7f768","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","size":56594,"format":"webp","width":1080,"quality":100,"_id":"6864c95b8bbc636d2ef7f769","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","origFileName":"samuel-ferrara-1527pjeb6jg-unsplash.webp","fileName":"6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","format":"webp","_id":"6864dd9f1a871af9a45a44ae","cdnUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/6864dd06a65e6e729e13054a/6864dd9f1a871af9a45a44aa_samuel-ferrara-1527pjeb6jg-unsplash.webp","_id":"6864dd9f1a871af9a45a44aa","updatedOn":"2025-07-02T07:20:00.284Z","fileSize":107816,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
Split Text Anim5
Add
Split Text Anim5
Copy Component
Copy external scripts and paste it in the body
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/ScrollTrigger.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/SplitText.min.js"></script>Copy javascript and paste it in the body
<script>
class BlurryTextRevealAnimation {
constructor() {
gsap.registerPlugin(SplitText); // No need for ScrollTrigger anymore
this.init();
}
init() {
const textReveal = document.querySelectorAll(".text-reveal");
textReveal.forEach(text => {
const textRevealSplit = new SplitText(text, {
type: "words,chars",
});
gsap.from(textRevealSplit.chars, {
opacity: 0,
filter: "blur(10px)",
stagger: 0.05,
duration: 1,
scale: 1.1,
ease: "power2.out",
});
});
}
}
document.addEventListener("DOMContentLoaded", () => {
new BlurryTextRevealAnimation();
});
</script>Copy styles and paste it in the head
Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"f423fd6d-06c8-1dec-b8af-fb27214be832","type":"Block","tag":"div","classes":["4265dc5e-44c1-9675-8f61-2766709941df"],"children":["ba972542-a9ff-2ac7-7e3f-1ce9995de559","d6fed259-0bd0-3026-7f04-586142a3b7a4"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ba972542-a9ff-2ac7-7e3f-1ce9995de559","type":"Block","tag":"div","classes":["e2b6b208-d7d7-4e98-db48-48bbcb362118"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d6fed259-0bd0-3026-7f04-586142a3b7a4","type":"Block","tag":"div","classes":["e2b6b208-d7d7-4e98-db48-48bbcb362118"],"children":["16f11e0f-c2b0-f0e2-1575-f7d6192ee334"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"16f11e0f-c2b0-f0e2-1575-f7d6192ee334","type":"Paragraph","tag":"p","classes":["f21dfe94-8ad3-e10b-7758-dfa46e9a5165"],"children":["1b1756be-3651-2926-d7bd-2fd862dd215e"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1b1756be-3651-2926-d7bd-2fd862dd215e","text":true,"v":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat. Aenean faucibus nibh et justo cursus id rutrum lorem imperdiet. Nunc ut sem vitae risus tristique posuere."}],"styles":[{"_id":"4265dc5e-44c1-9675-8f61-2766709941df","fake":false,"type":"class","name":"anim_wrapper","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"e2b6b208-d7d7-4e98-db48-48bbcb362118","fake":false,"type":"class","name":"page","namespace":"","comb":"","styleLess":"width: 100%; height: 100vh; padding-top: 4vw; padding-right: 4vw; padding-bottom: 4vw; padding-left: 4vw;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"f21dfe94-8ad3-e10b-7758-dfa46e9a5165","fake":false,"type":"class","name":"text-reveal","namespace":"","comb":"","styleLess":"font-size: 0px; line-height: 1.3;","variants":{"small":{"styleLess":"font-size: 0px;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"624c706c-2b6a-ec4d-e05c-8dfe22b56d57","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["e2fbad69-c7ce-75ca-b278-7ff73d1089a7","a9aa4710-c882-272d-f2e9-04804b396213"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e2fbad69-c7ce-75ca-b278-7ff73d1089a7","type":"Block","tag":"div","classes":["a84fe169-a3a6-45b8-3984-e7a95b67890c"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a9aa4710-c882-272d-f2e9-04804b396213","type":"Block","tag":"div","classes":["a84fe169-a3a6-45b8-3984-e7a95b67890c"],"children":["0ece27d8-6ed9-9bfc-bcf2-5a6d56c2df8e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0ece27d8-6ed9-9bfc-bcf2-5a6d56c2df8e","type":"Paragraph","tag":"p","classes":["a84fe169-a3a6-45b8-3984-e7a95b67890d"],"children":["e68b2b22-3ba5-2b2c-baad-07f130b34466"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e68b2b22-3ba5-2b2c-baad-07f130b34466","text":true,"v":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat. Aenean faucibus nibh et justo cursus id rutrum lorem imperdiet. Nunc ut sem vitae risus tristique posuere."}],"styles":[{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center;","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"a84fe169-a3a6-45b8-3984-e7a95b67890c","fake":false,"type":"class","name":"page","namespace":"","comb":"","styleLess":"width: 100%; height: 100vh; padding-top: 4vw; padding-right: 4vw; padding-bottom: 4vw; padding-left: 4vw;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"a84fe169-a3a6-45b8-3984-e7a95b67890d","fake":false,"type":"class","name":"text-reveal","namespace":"","comb":"","styleLess":"color: hsla(0, 0.00%, 0.00%, 1.00); font-size: 2rem; line-height: 1.3;","variants":{"small":{"styleLess":"font-size: 1.5rem;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
Progress On Scroll
Add
Progress On Scroll
Copy Component
Copy external scripts and paste it in the body
Copy javascript and paste it in the body
<script>
const progDetails = document.querySelector(".prog-details");
window.addEventListener("scroll", () => {
let scrolled = (window.scrollY / (document.documentElement.scrollHeight - window.innerHeight)) * 100;
progDetails.textContent = `${Math.round(scrolled)}%`;
});
</script>Copy styles and paste it in the head
Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"61161c37-c871-3c2b-1e2b-1b7a6c77369b","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["fb42fe10-4549-6f13-e368-cfe9056bdf5c"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fb42fe10-4549-6f13-e368-cfe9056bdf5c","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bee"],"children":["42b3f290-20f9-10b5-8078-46e334e1d2b6"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[{"name":"data-padding-top","value":"main"},{"name":"data-padding-bottom","value":"main"}],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"42b3f290-20f9-10b5-8078-46e334e1d2b6","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bef"],"children":["1a0f8e28-ea5a-b8aa-947e-fe96370276f9"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1a0f8e28-ea5a-b8aa-947e-fe96370276f9","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf0"],"children":["914269ab-0b44-5c5e-114e-24ae24aedf35","cc2f58d0-469a-00d4-0802-10a4e36bdeb5","1c0f7d33-6696-d5a4-43a9-586876896543","117a4749-8deb-154c-e9fc-627f56615553"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"914269ab-0b44-5c5e-114e-24ae24aedf35","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf1"],"children":["ab7cb101-5f0f-c32f-63f0-bb3b578e1ec8","2f6f05e9-ee2a-1ab1-4adf-2a452880a3ae"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ab7cb101-5f0f-c32f-63f0-bb3b578e1ec8","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f72"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2f6f05e9-ee2a-1ab1-4adf-2a452880a3ae","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f74"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"cc2f58d0-469a-00d4-0802-10a4e36bdeb5","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf3"],"children":["b207c7db-0cdc-075f-5adc-5e44d703df2f","a362ea28-54c8-7293-c4f4-59516d503480"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b207c7db-0cdc-075f-5adc-5e44d703df2f","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f76"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a362ea28-54c8-7293-c4f4-59516d503480","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f6e"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1c0f7d33-6696-d5a4-43a9-586876896543","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf4"],"children":["6f5fc65b-1a3e-442c-c020-ecdb021c43c6","507a0303-866a-53a9-17c2-626ecdfb7563"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6f5fc65b-1a3e-442c-c020-ecdb021c43c6","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f7a"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1000,"size":"100vw"},{"max":10000,"size":"1000px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"507a0303-866a-53a9-17c2-626ecdfb7563","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f70"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"117a4749-8deb-154c-e9fc-627f56615553","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf5"],"children":["d0f70919-444a-948b-cc60-b10274940ae3","ffdedbf3-f5ba-4085-a918-9f56607a3ee4"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d0f70919-444a-948b-cc60-b10274940ae3","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f81"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1438,"size":"100vw"},{"max":10000,"size":"1438px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ffdedbf3-f5ba-4085-a918-9f56607a3ee4","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"683e8fb0bdaefe1b895729d6"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1000,"size":"100vw"},{"max":10000,"size":"1000px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}}],"styles":[{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center; background-color: hsla(0, 0.00%, 0.00%, 1.00);","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf4","fake":false,"type":"class","name":"image-effect-3","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf2","fake":false,"type":"class","name":"about_image","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; object-fit: cover;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf0","fake":false,"type":"class","name":"about_image_content","namespace":"","comb":"","styleLess":"display: grid; overflow: hidden; grid-auto-columns: 1fr; grid-column-gap: 2rem; grid-row-gap: 2rem; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bef","fake":false,"type":"class","name":"about_content","namespace":"","comb":"","styleLess":"display: flex; margin-top: 5rem; justify-content: space-between; align-items: center; grid-column-gap: 4rem; grid-row-gap: 4rem; text-align: center;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf3","fake":false,"type":"class","name":"image-effect-2","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf5","fake":false,"type":"class","name":"image-effect-4","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf1","fake":false,"type":"class","name":"image-effect-1","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bee","fake":false,"type":"class","name":"about_contain","namespace":"","comb":"","styleLess":"position: relative; display: flex; width: 100%; min-height: 100svh; flex-direction: column; justify-content: center; flex-wrap: nowrap; align-items: center;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":500,"isHD":false,"height":667,"fileName":"685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","createdOn":"2025-06-28T09:58:35.576Z","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileHash":"39d0726d930f4bef2636d9bc06e129e1","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f73","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","_id":"685fbcca375dc20636397f72","updatedOn":"2025-06-28T09:58:35.576Z","fileSize":40932,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":500,"isHD":false,"height":750,"fileName":"685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","createdOn":"2025-06-28T09:58:35.578Z","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileHash":"a845d87b19596b97927acc42e2a36f34","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f75","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","_id":"685fbcca375dc20636397f74","updatedOn":"2025-06-28T09:58:35.579Z","markedAsDeleted":false,"fileSize":100692,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":500,"isHD":false,"height":749,"fileName":"685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","createdOn":"2025-06-28T09:58:35.581Z","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileHash":"d127615c8280ee94a261c2f2c0a175b4","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f77","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","_id":"685fbcca375dc20636397f76","updatedOn":"2025-06-28T09:58:35.581Z","fileSize":63048,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":500,"isHD":false,"height":750,"fileName":"685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","createdOn":"2025-06-28T09:58:35.570Z","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileHash":"b7463a9d897b5c99f2ce064ea5955e52","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f6f","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","_id":"685fbcca375dc20636397f6e","updatedOn":"2025-06-28T09:58:35.571Z","markedAsDeleted":false,"fileSize":13680,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":1000,"isHD":false,"height":1500,"fileName":"685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","createdOn":"2025-06-28T09:58:35.584Z","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileHash":"1ac340e3f48d77cf551771b2f7d1c230","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","size":25796,"format":"webp","width":500,"quality":100,"_id":"683e8fb414c8efc8cdb09278","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","size":55792,"format":"webp","width":800,"quality":100,"_id":"683e8fb414c8efc8cdb09279","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f7d","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","_id":"685fbcca375dc20636397f7a","updatedOn":"2025-06-28T09:58:35.584Z","fileSize":85556,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":500,"isHD":false,"height":750,"fileName":"685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","createdOn":"2025-06-28T09:58:35.573Z","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileHash":"6e9432583f32119f19ed470892abf809","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f71","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","_id":"685fbcca375dc20636397f70","updatedOn":"2025-06-28T09:58:35.574Z","markedAsDeleted":false,"fileSize":8290,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":1438,"isHD":false,"height":2000,"fileName":"685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","createdOn":"2025-06-28T09:58:35.587Z","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileHash":"a4d5fd7fc8133f60d9aba51360e783fe","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","size":9094,"format":"webp","width":500,"quality":100,"_id":"683e8fb5822dded944083993","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","size":18842,"format":"webp","width":800,"quality":100,"_id":"683e8fb5822dded944083994","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","size":29424,"format":"webp","width":1080,"quality":100,"_id":"683e8fb5822dded944083995","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f85","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","_id":"685fbcca375dc20636397f81","updatedOn":"2025-06-28T09:58:35.588Z","fileSize":44020,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"4c91efc9-392b-cc37-48f9-5e14dde3b3ad","type":"Block","tag":"div","classes":["dbf33cd8-e239-0f2f-c10e-718d835fb816"],"children":["1389aa39-78f1-9e4b-31ad-6cbcb37f37cb","884bbcae-c403-416e-063b-03e638380f84","9c02e0e6-2e4a-0280-4808-1910c1323a37","b893a88e-bd68-0676-9d42-1a8c063842bc","3648c962-0b95-da8e-9ee1-33ada9c7087f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1389aa39-78f1-9e4b-31ad-6cbcb37f37cb","type":"Block","tag":"div","classes":["dbf33cd8-e239-0f2f-c10e-718d835fb817"],"children":["aba619bb-2248-a716-8de8-9aa35a72d1a0"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"aba619bb-2248-a716-8de8-9aa35a72d1a0","type":"Heading","tag":"h2","classes":["dbf33cd8-e239-0f2f-c10e-718d835fb818"],"children":["fab9fdcd-5bb7-670d-102d-6f459e01eea1"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fab9fdcd-5bb7-670d-102d-6f459e01eea1","text":true,"v":"0%"},{"_id":"884bbcae-c403-416e-063b-03e638380f84","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["1a9c4622-af5d-a32d-9303-196de9fba11c"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1a9c4622-af5d-a32d-9303-196de9fba11c","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af2710d"],"children":["a2707309-c5fe-aeb8-733f-ba550518e3d0"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a2707309-c5fe-aeb8-733f-ba550518e3d0","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af27147"],"children":["e8fb7a07-4180-99e5-68a9-4bfb69f89727"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e8fb7a07-4180-99e5-68a9-4bfb69f89727","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af2713d"],"children":["eb80a89a-2396-c857-5fbd-f60a26bdc5b3"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"eb80a89a-2396-c857-5fbd-f60a26bdc5b3","type":"Heading","tag":"h1","classes":["dbf33cd8-e239-0f2f-c10e-718d835fb81b"],"children":["6cd8adf5-8f54-7ee7-e94f-3e03c67154a0"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6cd8adf5-8f54-7ee7-e94f-3e03c67154a0","text":true,"v":"Start Scrolling"},{"_id":"9c02e0e6-2e4a-0280-4808-1910c1323a37","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["e9a81a94-4558-dea9-2254-791267a65f71"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e9a81a94-4558-dea9-2254-791267a65f71","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af2710d"],"children":["017f9871-66b1-7625-0af4-3d2fa5abca03"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"017f9871-66b1-7625-0af4-3d2fa5abca03","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af27147"],"children":["ea6dfee1-a9d1-2b5b-a1c4-7646141b4f32"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ea6dfee1-a9d1-2b5b-a1c4-7646141b4f32","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af2713d"],"children":["a8b13827-7ad9-f826-a263-18d813ff0b12"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a8b13827-7ad9-f826-a263-18d813ff0b12","type":"Heading","tag":"h2","classes":["dbf33cd8-e239-0f2f-c10e-718d835fb81b"],"children":["e3cc7328-18c6-4267-adc6-90ef6ea4241b"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e3cc7328-18c6-4267-adc6-90ef6ea4241b","text":true,"v":"Keep Scrolling"},{"_id":"b893a88e-bd68-0676-9d42-1a8c063842bc","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["d6d24668-7525-4585-9074-bd9ce4503761"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d6d24668-7525-4585-9074-bd9ce4503761","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af2710d"],"children":["cbd43dfc-9092-30e1-31a4-a7f1d6000805"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"cbd43dfc-9092-30e1-31a4-a7f1d6000805","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af27147"],"children":["7d827ef7-5659-8885-eb0d-07489e1446eb"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"7d827ef7-5659-8885-eb0d-07489e1446eb","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af2713d"],"children":["96011b25-ecbc-d849-6de1-c6866bb4f66a"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"96011b25-ecbc-d849-6de1-c6866bb4f66a","type":"Heading","tag":"h2","classes":["dbf33cd8-e239-0f2f-c10e-718d835fb81b"],"children":["8a42830b-fe16-65a3-b455-36f803408359"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"8a42830b-fe16-65a3-b455-36f803408359","text":true,"v":"Keep Scrolling"},{"_id":"3648c962-0b95-da8e-9ee1-33ada9c7087f","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["d90c60e7-b4cb-fb7b-f77c-991404806843"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d90c60e7-b4cb-fb7b-f77c-991404806843","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af2710d"],"children":["013ab2c0-e11a-09e1-91d2-dda3ee1c3528"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"013ab2c0-e11a-09e1-91d2-dda3ee1c3528","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af27147"],"children":["8392f2ae-fec2-187f-ff93-06e976c3f7b3"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"8392f2ae-fec2-187f-ff93-06e976c3f7b3","type":"Block","tag":"div","classes":["07815991-952a-8d98-0e00-e4c25af2713d"],"children":["0bb6d1df-acc0-ac3c-9d8c-b06d85920f40"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0bb6d1df-acc0-ac3c-9d8c-b06d85920f40","type":"Heading","tag":"h2","classes":["dbf33cd8-e239-0f2f-c10e-718d835fb81b"],"children":["02ac53bd-b7cc-f660-0979-9ef44f9faef1"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"02ac53bd-b7cc-f660-0979-9ef44f9faef1","text":true,"v":"The End"}],"styles":[{"_id":"dbf33cd8-e239-0f2f-c10e-718d835fb816","fake":false,"type":"class","name":"anim_component","namespace":"","comb":"","styleLess":"background-color: black;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"dbf33cd8-e239-0f2f-c10e-718d835fb817","fake":false,"type":"class","name":"progress_container","namespace":"","comb":"","styleLess":"position: fixed; left: 5vw; top: auto; right: auto; bottom: 5vw; z-index: 1;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"dbf33cd8-e239-0f2f-c10e-718d835fb818","fake":false,"type":"class","name":"prog-details","namespace":"","comb":"","styleLess":"font-size: 4rem; font-weight: 500;","variants":{"small":{"styleLess":"font-size: 3rem;"}},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_hero","namespace":"","comb":"","styleLess":"position: relative; display: flex; min-height: 100svh; flex-direction: column; justify-content: center; background-color: hsla(0, 0.00%, 0.00%, 1.00); color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{"medium":{"styleLess":"padding-top: 3rem;"}},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"07815991-952a-8d98-0e00-e4c25af2710d","fake":false,"type":"class","name":"padding-global","namespace":"","comb":"","styleLess":"padding-right: 2.5rem; padding-left: 2.5rem;","variants":{"small":{"styleLess":"padding-right: 1.25rem; padding-left: 1.25rem;"}},"children":["cf43d98c-48d8-bebc-6c99-10f0eb75fae1"],"origin":null,"selector":null},{"_id":"07815991-952a-8d98-0e00-e4c25af27147","fake":false,"type":"class","name":"container-large","namespace":"","comb":"","styleLess":"width: 100%; max-width: 80rem; margin-right: auto; margin-left: auto;","variants":{},"children":[],"origin":null,"selector":null},{"_id":"07815991-952a-8d98-0e00-e4c25af2713d","fake":false,"type":"class","name":"padding-section-large","namespace":"","comb":"","styleLess":"padding-top: 8rem; padding-bottom: 8rem;","variants":{"medium":{"styleLess":"padding-top: 6rem; padding-bottom: 6rem;"},"small":{"styleLess":"padding-top: 4rem; padding-bottom: 4rem;"}},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"dbf33cd8-e239-0f2f-c10e-718d835fb81b","fake":false,"type":"class","name":"hero_text","namespace":"","comb":"","styleLess":"color: white; text-align: center;","variants":{"small":{"styleLess":"font-size: 3rem;"}},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null}],"assets":[],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
Image Hover Shader
Newly added
Shaders
Add
Image Hover Shader
Copy Component
Copy external scripts and paste it in the body
<!-- Gsap library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>
<!-- Three js library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/0.155.0/three.min.js"></script>
<script
type="text/javascript"
src="https://unpkg.com/sheryjs/dist/Shery.js"
></script>
<script src="https://cdn.jsdelivr.net/gh/automat/controlkit.js@master/bin/controlKit.min.js"></script>
Copy javascript and paste it in the body
<script>
const THREE = Shery;
THREE.imageEffect(".image-effect-1", {
style: 2 /*OR 5 for different variant */,
gooey: true,
// config: {
// resolutionXY: { value: 67.31 },
// distortion: { value: true },
// mode: { value: -10 },
// mousemove: { value: 0 },
// modeA: { value: 0 },
// modeN: { value: 3 },
// speed: { value: 3.97, range: [-500, 500], rangep: [-10, 10] },
// frequency: { value: 50, range: [-800, 800], rangep: [-50, 50] },
// angle: { value: 1.55, range: [0, 3.141592653589793] },
// waveFactor: { value: 1, range: [-3, 3] },
// color: { value: 10212607 },
// pixelStrength: { value: -3.08, range: [-20, 100], rangep: [-20, 20] },
// quality: { value: 2.37, range: [0, 10] },
// contrast: { value: 1, range: [-25, 25] },
// brightness: { value: 1, range: [-1, 25] },
// colorExposer: { value: 0.18, range: [-5, 5] },
// strength: { value: 0.2, range: [-40, 40], rangep: [-5, 5] },
// exposer: { value: 21.79, range: [-100, 100] },
// zindex: { value: -9996999, range: [-9999999, 9999999] },
// aspect: { value: 0.7682478218780252 },
// ignoreShapeAspect: { value: true },
// shapePosition: { value: { x: 0, y: 0 } },
// shapeScale: { value: { x: 0.5, y: 0.5 } },
// shapeEdgeSoftness: { value: 0, range: [0, 0.5] },
// shapeRadius: { value: 0, range: [0, 2] },
// currentScroll: { value: 0 },
// scrollLerp: { value: 0.07 },
// gooey: { value: true },
// infiniteGooey: { value: false },
// growSize: { value: 4, range: [1, 15] },
// durationOut: { value: 1, range: [0.1, 5] },
// durationIn: { value: 1.5, range: [0.1, 5] },
// displaceAmount: { value: 0.5 },
// masker: { value: true },
// maskVal: { value: 1.27, range: [1, 5] },
// scrollType: { value: 0 },
// geoVertex: { range: [1, 64], value: 1 },
// noEffectGooey: { value: true },
// onMouse: { value: 1 },
// noise_speed: { value: 0.2, range: [0, 10] },
// metaball: { value: 0.43, range: [0, 2] },
// discard_threshold: { value: 0.5, range: [0, 1] },
// antialias_threshold: { value: 0, range: [0, 0.1] },
// noise_height: { value: 0.5, range: [0, 2] },
// noise_scale: { value: 10, range: [0, 100] },
// },
config: {
resolutionXY: { value: 67.31 },
distortion: { value: true },
mode: { value: -10 },
mousemove: { value: 0 },
modeA: { value: 0 },
modeN: { value: 3 },
speed: { value: 3.97, range: [-500, 500], rangep: [-10, 10] },
frequency: { value: 50, range: [-800, 800], rangep: [-50, 50] },
angle: { value: 1.55, range: [0, 3.141592653589793] },
waveFactor: { value: 1, range: [-3, 3] },
color: { value: 10212607 },
pixelStrength: { value: -3.08, range: [-20, 100], rangep: [-20, 20] },
quality: { value: 2.37, range: [0, 10] },
contrast: { value: 1, range: [-25, 25] },
brightness: { value: 1, range: [-1, 25] },
colorExposer: { value: 0.18, range: [-5, 5] },
strength: { value: 0.2, range: [-40, 40], rangep: [-5, 5] },
exposer: { value: 21.79, range: [-100, 100] },
zindex: { value: -9996999, range: [-9999999, 9999999] },
aspect: { value: 0.7499999750347043 },
ignoreShapeAspect: { value: true },
shapePosition: { value: { x: 0, y: 0 } },
shapeScale: { value: { x: 0.5, y: 0.5 } },
shapeEdgeSoftness: { value: 0, range: [0, 0.5] },
shapeRadius: { value: 0.45, range: [0, 2] },
currentScroll: { value: 0 },
scrollLerp: { value: 0.07 },
gooey: { value: true },
infiniteGooey: { value: false },
growSize: { value: 4, range: [1, 15] },
durationOut: { value: 1, range: [0.1, 5] },
durationIn: { value: 1.5, range: [0.1, 5] },
displaceAmount: { value: 0.5 },
masker: { value: true },
maskVal: { value: 1.27, range: [1, 5] },
scrollType: { value: 0 },
geoVertex: { range: [1, 64], value: 1 },
noEffectGooey: { value: true },
onMouse: { value: 1 },
noise_speed: { value: 0.2, range: [0, 10] },
metaball: { value: 0.43, range: [0, 2] },
discard_threshold: { value: 0.5, range: [0, 1] },
antialias_threshold: { value: 0, range: [0, 0.1] },
noise_height: { value: 0.5, range: [0, 2] },
noise_scale: { value: 10, range: [0, 100] },
},
});
THREE.imageEffect(".image-effect-2", {
style: 2 /*OR 5 for different variant */,
gooey: true,
config: {
resolutionXY: { value: 67.31 },
distortion: { value: true },
mode: { value: -10 },
mousemove: { value: 0 },
modeA: { value: 0 },
modeN: { value: 3 },
speed: { value: 3.97, range: [-500, 500], rangep: [-10, 10] },
frequency: { value: 50, range: [-800, 800], rangep: [-50, 50] },
angle: { value: 1.55, range: [0, 3.141592653589793] },
waveFactor: { value: 1, range: [-3, 3] },
color: { value: 10212607 },
pixelStrength: { value: -3.08, range: [-20, 100], rangep: [-20, 20] },
quality: { value: 2.37, range: [0, 10] },
contrast: { value: 1, range: [-25, 25] },
brightness: { value: 1, range: [-1, 25] },
colorExposer: { value: 0.18, range: [-5, 5] },
strength: { value: 0.2, range: [-40, 40], rangep: [-5, 5] },
exposer: { value: 21.79, range: [-100, 100] },
zindex: { value: -9996999, range: [-9999999, 9999999] },
aspect: { value: 0.7499999750347043 },
ignoreShapeAspect: { value: true },
shapePosition: { value: { x: 0, y: 0 } },
shapeScale: { value: { x: 0.5, y: 0.56 } },
shapeEdgeSoftness: { value: 0.27, range: [0, 0.5] },
shapeRadius: { value: 0.93, range: [0, 2] },
currentScroll: { value: 0 },
scrollLerp: { value: 0.07 },
gooey: { value: true },
infiniteGooey: { value: false },
growSize: { value: 4, range: [1, 15] },
durationOut: { value: 1, range: [0.1, 5] },
durationIn: { value: 1.5, range: [0.1, 5] },
displaceAmount: { value: 0.5 },
masker: { value: true },
maskVal: { value: 1.27, range: [1, 5] },
scrollType: { value: 0 },
geoVertex: { range: [1, 64], value: 1 },
noEffectGooey: { value: true },
onMouse: { value: 1 },
noise_speed: { value: 0.2, range: [0, 10] },
metaball: { value: 0.43, range: [0, 2] },
discard_threshold: { value: 0.5, range: [0, 1] },
antialias_threshold: { value: 0, range: [0, 0.1] },
noise_height: { value: 0.46, range: [0, 2] },
noise_scale: { value: 35.88, range: [0, 100] },
},
});
THREE.imageEffect(".image-effect-3", {
style: 2 /*OR 5 for different variant */,
gooey: true,
config: {
resolutionXY: { value: 67.31 },
distortion: { value: true },
mode: { value: -10 },
mousemove: { value: 0 },
modeA: { value: 0 },
modeN: { value: 3 },
speed: { value: 3.97, range: [-500, 500], rangep: [-10, 10] },
frequency: { value: 50, range: [-800, 800], rangep: [-50, 50] },
angle: { value: 1.55, range: [0, 3.141592653589793] },
waveFactor: { value: 1, range: [-3, 3] },
color: { value: 10212607 },
pixelStrength: { value: -3.08, range: [-20, 100], rangep: [-20, 20] },
quality: { value: 2.37, range: [0, 10] },
contrast: { value: 1, range: [-25, 25] },
brightness: { value: 1, range: [-1, 25] },
colorExposer: { value: 0.18, range: [-5, 5] },
strength: { value: 0.2, range: [-40, 40], rangep: [-5, 5] },
exposer: { value: 21.79, range: [-100, 100] },
zindex: { value: -9996999, range: [-9999999, 9999999] },
aspect: { value: 0.7499999750347043 },
ignoreShapeAspect: { value: true },
shapePosition: { value: { x: 0, y: 0 } },
shapeScale: { value: { x: 0.5, y: 0.5 } },
shapeEdgeSoftness: { value: 0.07, range: [0, 0.5] },
shapeRadius: { value: 0.09, range: [0, 2] },
currentScroll: { value: 0 },
scrollLerp: { value: 0.07 },
gooey: { value: true },
infiniteGooey: { value: false },
growSize: { value: 4, range: [1, 15] },
durationOut: { value: 1, range: [0.1, 5] },
durationIn: { value: 1.5, range: [0.1, 5] },
displaceAmount: { value: 0.5 },
masker: { value: true },
maskVal: { value: 1.27, range: [1, 5] },
scrollType: { value: 0 },
geoVertex: { range: [1, 64], value: 1 },
noEffectGooey: { value: true },
onMouse: { value: 1 },
noise_speed: { value: 0.2, range: [0, 10] },
metaball: { value: 0.43, range: [0, 2] },
discard_threshold: { value: 0.5, range: [0, 1] },
antialias_threshold: { value: 0, range: [0, 0.1] },
noise_height: { value: 0.98, range: [0, 2] },
noise_scale: { value: 9.16, range: [0, 100] },
},
});
THREE.imageEffect(".image-effect-4", {
style: 2 /*OR 5 for different variant */,
gooey: true,
config: {"resolutionXY":{"value":100},"distortion":{"value":true},"mode":{"value":-10},"mousemove":{"value":0},"modeA":{"value":0},"modeN":{"value":3},"speed":{"value":1,"range":[-500,500],"rangep":[-10,10]},"frequency":{"value":50,"range":[-800,800],"rangep":[-50,50]},"angle":{"value":0.5,"range":[0,3.141592653589793]},"waveFactor":{"value":1.4,"range":[-3,3]},"color":{"value":10212607},"pixelStrength":{"value":3,"range":[-20,100],"rangep":[-20,20]},"quality":{"value":5,"range":[0,10]},"contrast":{"value":1,"range":[-25,25]},"brightness":{"value":1,"range":[-1,25]},"colorExposer":{"value":0.18,"range":[-5,5]},"strength":{"value":0.2,"range":[-40,40],"rangep":[-5,5]},"exposer":{"value":8,"range":[-100,100]},"zindex":{"value":-9996999,"range":[-9999999,9999999]},"aspect":{"value":0.7499999750347043},"ignoreShapeAspect":{"value":true},"shapePosition":{"value":{"x":0,"y":0}},"shapeScale":{"value":{"x":0.5,"y":0.5}},"shapeEdgeSoftness":{"value":0.06,"range":[0,0.5]},"shapeRadius":{"value":0.05,"range":[0,2]},"currentScroll":{"value":0},"scrollLerp":{"value":0.07},"gooey":{"value":true},"infiniteGooey":{"value":true},"growSize":{"value":6.45,"range":[1,15]},"durationOut":{"value":1,"range":[0.1,5]},"durationIn":{"value":1.5,"range":[0.1,5]},"displaceAmount":{"value":0.5},"masker":{"value":false},"maskVal":{"value":1,"range":[1,5]},"scrollType":{"value":0},"geoVertex":{"range":[1,64],"value":1},"noEffectGooey":{"value":true},"onMouse":{"value":1},"noise_speed":{"value":0.84,"range":[0,10]},"metaball":{"value":0.37,"range":[0,2],"_gsap":{"id":3}},"discard_threshold":{"value":0.59,"range":[0,1]},"antialias_threshold":{"value":0.02,"range":[0,0.1]},"noise_height":{"value":0.46,"range":[0,2]},"noise_scale":{"value":10.69,"range":[0,100]}},
});
</script>Copy styles and paste it in the head
<link rel="stylesheet" href="https://unpkg.com/sheryjs/dist/Shery.css" />
<style>
._canvas_container {
z-index: 999 !important;
pointer-events: none;
}
</style>Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"c22d9438-84d1-7f83-5cf2-9cb3eaac667e","type":"Section","tag":"section","classes":["bbee8bfc-32fe-b710-4e68-f388aaa761e7"],"children":["8e8cbec2-271e-f0b2-669f-6164cc853162"],"data":{"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[{"name":"data-theme","value":"dark"}],"search":{"exclude":false},"visibility":{"conditions":[]},"grid":{"type":"section"}}},{"_id":"8e8cbec2-271e-f0b2-669f-6164cc853162","type":"Block","tag":"div","classes":["23979a5e-d292-5813-5ecd-6d62ca2dfa9b","e9d290cb-dc1c-a283-4575-05d1b1703e6d","0f0d42bc-9d91-d234-aa94-062609af826a"],"children":["34b9a36d-5ba7-e529-cc4f-ab18bea0f28e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[{"name":"data-padding-top","value":"main"},{"name":"data-padding-bottom","value":"main"}],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"34b9a36d-5ba7-e529-cc4f-ab18bea0f28e","type":"Block","tag":"div","classes":["2beceb44-bbac-eff1-e4a9-2841e1231f60"],"children":["70fab4fd-1ced-019c-c5a7-89d89e80c2cd"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"70fab4fd-1ced-019c-c5a7-89d89e80c2cd","type":"Block","tag":"div","classes":["dc07b489-ca61-fa08-b370-517c4315ad95"],"children":["d5eb9c26-58e0-f09b-9e4b-8337281f768e","bbdf17da-baea-f970-922e-4734d7c83a3d","b63dadd2-eafa-3432-48b4-59a93cea64ae","83173c78-468c-7998-1fb1-677a6f4bc23d"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d5eb9c26-58e0-f09b-9e4b-8337281f768e","type":"Block","tag":"div","classes":["c1e220ae-1e31-5040-a6d9-75a8c6a7bb02"],"children":["a17642bc-9411-6c38-f58e-dc820f037157","fcf1d12a-0a9a-66d0-2c6c-88dd4d247c99"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a17642bc-9411-6c38-f58e-dc820f037157","type":"Image","tag":"img","classes":["1507f221-3828-3bd2-cb54-b9ff0eaa258f"],"children":[],"data":{"img":{"id":"683e8eb9ef602c879d619bed"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eb9ef602c879d619bed_zhen-mogila-iYw2XrxRslA-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fcf1d12a-0a9a-66d0-2c6c-88dd4d247c99","type":"Image","tag":"img","classes":["1507f221-3828-3bd2-cb54-b9ff0eaa258f"],"children":[],"data":{"img":{"id":"683e8eba97b00c0d1e98c415"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eba97b00c0d1e98c415_luca-bravo-WeFDiEDModQ-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"bbdf17da-baea-f970-922e-4734d7c83a3d","type":"Block","tag":"div","classes":["4d999914-a2d4-8a72-2718-7a812c5ab184"],"children":["911ab82a-e6c3-3fb9-ad4b-4e3cf2a660a0","9b3cf106-788d-c1b1-3f96-60e49ba5c6af"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"911ab82a-e6c3-3fb9-ad4b-4e3cf2a660a0","type":"Image","tag":"img","classes":["1507f221-3828-3bd2-cb54-b9ff0eaa258f"],"children":[],"data":{"img":{"id":"683e8f7bc3dbfd93e9692be7"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8f7bc3dbfd93e9692be7_pascal-bullan-2OQEaRFwJdI-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"9b3cf106-788d-c1b1-3f96-60e49ba5c6af","type":"Image","tag":"img","classes":["1507f221-3828-3bd2-cb54-b9ff0eaa258f"],"children":[],"data":{"img":{"id":"683e8eb90251a34e43ff1701"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eb90251a34e43ff1701_jordan-steranka-64LL2fP9uXM-unsplash.jpg","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b63dadd2-eafa-3432-48b4-59a93cea64ae","type":"Block","tag":"div","classes":["b49db57f-76ce-99f7-301b-13608301f496"],"children":["c64b0f99-fd1d-cad3-00a9-d811e5791f27","5d4ceefa-ee23-94e4-8341-4ee64bfbabc9"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"c64b0f99-fd1d-cad3-00a9-d811e5791f27","type":"Image","tag":"img","classes":["1507f221-3828-3bd2-cb54-b9ff0eaa258f"],"children":[],"data":{"img":{"id":"683e8faf5a5df0d7b043f393"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1000,"size":"100vw"},{"max":10000,"size":"1000px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"5d4ceefa-ee23-94e4-8341-4ee64bfbabc9","type":"Image","tag":"img","classes":["1507f221-3828-3bd2-cb54-b9ff0eaa258f"],"children":[],"data":{"img":{"id":"683e8eb987065df63fa572d8"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eb987065df63fa572d8_patrick-bald-llZIWkNGzS4-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"83173c78-468c-7998-1fb1-677a6f4bc23d","type":"Block","tag":"div","classes":["a6f10542-2756-b1fd-cd3e-82662092c8bc"],"children":["32b6fecd-575e-abf8-5506-f680ecf38abb","8b54e0b7-f548-e4ef-ba64-90ad2e2134de"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"32b6fecd-575e-abf8-5506-f680ecf38abb","type":"Image","tag":"img","classes":["1507f221-3828-3bd2-cb54-b9ff0eaa258f"],"children":[],"data":{"img":{"id":"683e8fb129fc6dc3e35f32b7"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1438,"size":"100vw"},{"max":10000,"size":"1438px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"8b54e0b7-f548-e4ef-ba64-90ad2e2134de","type":"Image","tag":"img","classes":["1507f221-3828-3bd2-cb54-b9ff0eaa258f"],"children":[],"data":{"img":{"id":"683e8fb0bdaefe1b895729d6"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1000,"size":"100vw"},{"max":10000,"size":"1000px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}}],"styles":[{"_id":"a6f10542-2756-b1fd-cd3e-82662092c8bc","fake":false,"type":"class","name":"image-effect-4","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"0f0d42bc-9d91-d234-aa94-062609af826a","fake":false,"type":"class","name":"u-vflex-center-center","namespace":"","comb":"&","styleLess":"","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"1507f221-3828-3bd2-cb54-b9ff0eaa258f","fake":false,"type":"class","name":"about_image","namespace":"","comb":"","styleLess":"height: 100%;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c1e220ae-1e31-5040-a6d9-75a8c6a7bb02","fake":false,"type":"class","name":"image-effect-1","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"23979a5e-d292-5813-5ecd-6d62ca2dfa9b","fake":false,"type":"class","name":"about_contain","namespace":"","comb":"","styleLess":"","variants":{},"children":["e9d290cb-dc1c-a283-4575-05d1b1703e6d"],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"bbee8bfc-32fe-b710-4e68-f388aaa761e7","fake":false,"type":"class","name":"about_wrap","namespace":"","comb":"","styleLess":"background-color: black;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"4d999914-a2d4-8a72-2718-7a812c5ab184","fake":false,"type":"class","name":"image-effect-2","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"2beceb44-bbac-eff1-e4a9-2841e1231f60","fake":false,"type":"class","name":"about_content","namespace":"","comb":"","styleLess":"display: flex; margin-top: 5rem; justify-content: space-between; align-items: center; grid-column-gap: 4rem; grid-row-gap: 4rem; text-align: center;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"e9d290cb-dc1c-a283-4575-05d1b1703e6d","fake":false,"type":"class","name":"u-container","namespace":"","comb":"&","styleLess":"min-height: 100svh;","variants":{},"children":["0f0d42bc-9d91-d234-aa94-062609af826a"],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"b49db57f-76ce-99f7-301b-13608301f496","fake":false,"type":"class","name":"image-effect-3","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"dc07b489-ca61-fa08-b370-517c4315ad95","fake":false,"type":"class","name":"about_image_content","namespace":"","comb":"","styleLess":"display: grid; overflow: hidden; grid-auto-columns: 1fr; grid-column-gap: 2rem; grid-row-gap: 2rem; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eb9ef602c879d619bed_zhen-mogila-iYw2XrxRslA-unsplash.webp","siteId":"66d9e579cd075a4475c2e99e","width":500,"isHD":false,"height":667,"fileName":"683e8eb9ef602c879d619bed_zhen-mogila-iYw2XrxRslA-unsplash.webp","createdOn":"2025-06-03T05:57:13.840Z","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileHash":"39d0726d930f4bef2636d9bc06e129e1","translationLoading":false,"variants":[],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8eb9ef602c879d619bed_zhen-mogila-iYw2XrxRslA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eb9ef602c879d619bed_zhen-mogila-iYw2XrxRslA-unsplash.webp","_id":"683e8eb9ef602c879d619bed","updatedOn":"2025-06-03T06:03:57.263Z","fileSize":40932,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eba97b00c0d1e98c415_luca-bravo-WeFDiEDModQ-unsplash.webp","siteId":"66d9e579cd075a4475c2e99e","width":500,"isHD":false,"height":750,"fileName":"683e8eba97b00c0d1e98c415_luca-bravo-WeFDiEDModQ-unsplash.webp","createdOn":"2025-06-03T05:57:14.703Z","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileHash":"a845d87b19596b97927acc42e2a36f34","translationLoading":false,"variants":[],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8eba97b00c0d1e98c415_luca-bravo-WeFDiEDModQ-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eba97b00c0d1e98c415_luca-bravo-WeFDiEDModQ-unsplash.webp","_id":"683e8eba97b00c0d1e98c415","updatedOn":"2025-06-03T06:03:57.243Z","fileSize":100692,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8f7bc3dbfd93e9692be7_pascal-bullan-2OQEaRFwJdI-unsplash.webp","siteId":"66d9e579cd075a4475c2e99e","width":500,"isHD":false,"height":749,"fileName":"683e8f7bc3dbfd93e9692be7_pascal-bullan-2OQEaRFwJdI-unsplash.webp","createdOn":"2025-06-03T06:00:27.873Z","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileHash":"d127615c8280ee94a261c2f2c0a175b4","translationLoading":false,"variants":[],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8f7bc3dbfd93e9692be7_pascal-bullan-2OQEaRFwJdI-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8f7bc3dbfd93e9692be7_pascal-bullan-2OQEaRFwJdI-unsplash.webp","_id":"683e8f7bc3dbfd93e9692be7","updatedOn":"2025-06-03T06:03:57.323Z","fileSize":63048,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eb90251a34e43ff1701_jordan-steranka-64LL2fP9uXM-unsplash.webp","siteId":"66d9e579cd075a4475c2e99e","width":500,"isHD":false,"height":750,"fileName":"683e8eb90251a34e43ff1701_jordan-steranka-64LL2fP9uXM-unsplash.webp","createdOn":"2025-06-03T05:57:13.406Z","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileHash":"b7463a9d897b5c99f2ce064ea5955e52","translationLoading":false,"variants":[],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8eb90251a34e43ff1701_jordan-steranka-64LL2fP9uXM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eb90251a34e43ff1701_jordan-steranka-64LL2fP9uXM-unsplash.webp","_id":"683e8eb90251a34e43ff1701","updatedOn":"2025-06-03T06:03:57.279Z","fileSize":13680,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash.webp","siteId":"66d9e579cd075a4475c2e99e","width":1000,"isHD":false,"height":1500,"fileName":"683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash.webp","createdOn":"2025-06-03T06:01:19.946Z","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileHash":"1ac340e3f48d77cf551771b2f7d1c230","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp","size":25796,"format":"webp","width":500,"quality":100,"_id":"683e8fb414c8efc8cdb09278","cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp","size":55792,"format":"webp","width":800,"quality":100,"_id":"683e8fb414c8efc8cdb09279","cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash-p-800.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8faf5a5df0d7b043f393_guillaume-briard-zuDk8NunJ3I-unsplash.webp","_id":"683e8faf5a5df0d7b043f393","updatedOn":"2025-06-03T06:03:57.908Z","fileSize":85556,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eb987065df63fa572d8_patrick-bald-llZIWkNGzS4-unsplash.webp","siteId":"66d9e579cd075a4475c2e99e","width":500,"isHD":false,"height":750,"fileName":"683e8eb987065df63fa572d8_patrick-bald-llZIWkNGzS4-unsplash.webp","createdOn":"2025-06-03T05:57:13.276Z","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileHash":"6e9432583f32119f19ed470892abf809","translationLoading":false,"variants":[],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8eb987065df63fa572d8_patrick-bald-llZIWkNGzS4-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8eb987065df63fa572d8_patrick-bald-llZIWkNGzS4-unsplash.webp","_id":"683e8eb987065df63fa572d8","updatedOn":"2025-06-03T06:03:57.229Z","fileSize":8290,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash.webp","siteId":"66d9e579cd075a4475c2e99e","width":1438,"isHD":false,"height":2000,"fileName":"683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash.webp","createdOn":"2025-06-03T06:01:21.971Z","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileHash":"a4d5fd7fc8133f60d9aba51360e783fe","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp","size":9094,"format":"webp","width":500,"quality":100,"_id":"683e8fb5822dded944083993","cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash-p-800.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash-p-800.webp","size":18842,"format":"webp","width":800,"quality":100,"_id":"683e8fb5822dded944083994","cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash-p-800.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash-p-1080.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash-p-1080.webp","size":29424,"format":"webp","width":1080,"quality":100,"_id":"683e8fb5822dded944083995","cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash-p-1080.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb129fc6dc3e35f32b7_jan-huber-hkmiiz2C3ts-unsplash.webp","_id":"683e8fb129fc6dc3e35f32b7","updatedOn":"2025-06-03T06:03:58.175Z","fileSize":44020,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash.webp","siteId":"66d9e579cd075a4475c2e99e","width":1000,"isHD":false,"height":1500,"fileName":"683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash.webp","createdOn":"2025-06-03T06:01:20.402Z","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileHash":"9ab7410f2e8db6005e46e1acc67c8b75","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp","size":52918,"format":"webp","width":500,"quality":100,"_id":"683e8fb414c8efc8cdb0927f","cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash-p-500.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash-p-800.webp","origFileName":"andre-benz-PKAW8MQYlU8-unsplash.webp","fileName":"683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash-p-800.webp","size":129692,"format":"webp","width":800,"quality":100,"_id":"683e8fb414c8efc8cdb09280","cdnUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash-p-800.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/66d9e579cd075a4475c2e99e/683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash.webp","_id":"683e8fb0bdaefe1b895729d6","updatedOn":"2025-06-03T06:03:57.867Z","fileSize":206554,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"61161c37-c871-3c2b-1e2b-1b7a6c77369b","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["fb42fe10-4549-6f13-e368-cfe9056bdf5c"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"fb42fe10-4549-6f13-e368-cfe9056bdf5c","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bee"],"children":["42b3f290-20f9-10b5-8078-46e334e1d2b6"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[{"name":"data-padding-top","value":"main"},{"name":"data-padding-bottom","value":"main"}],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"42b3f290-20f9-10b5-8078-46e334e1d2b6","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bef"],"children":["1a0f8e28-ea5a-b8aa-947e-fe96370276f9"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1a0f8e28-ea5a-b8aa-947e-fe96370276f9","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf0"],"children":["914269ab-0b44-5c5e-114e-24ae24aedf35","cc2f58d0-469a-00d4-0802-10a4e36bdeb5","1c0f7d33-6696-d5a4-43a9-586876896543","117a4749-8deb-154c-e9fc-627f56615553"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"914269ab-0b44-5c5e-114e-24ae24aedf35","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf1"],"children":["ab7cb101-5f0f-c32f-63f0-bb3b578e1ec8","2f6f05e9-ee2a-1ab1-4adf-2a452880a3ae"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ab7cb101-5f0f-c32f-63f0-bb3b578e1ec8","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f72"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2f6f05e9-ee2a-1ab1-4adf-2a452880a3ae","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f74"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"cc2f58d0-469a-00d4-0802-10a4e36bdeb5","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf3"],"children":["b207c7db-0cdc-075f-5adc-5e44d703df2f","a362ea28-54c8-7293-c4f4-59516d503480"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b207c7db-0cdc-075f-5adc-5e44d703df2f","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f76"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a362ea28-54c8-7293-c4f4-59516d503480","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f6e"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"1c0f7d33-6696-d5a4-43a9-586876896543","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf4"],"children":["6f5fc65b-1a3e-442c-c020-ecdb021c43c6","507a0303-866a-53a9-17c2-626ecdfb7563"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6f5fc65b-1a3e-442c-c020-ecdb021c43c6","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f7a"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1000,"size":"100vw"},{"max":10000,"size":"1000px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"507a0303-866a-53a9-17c2-626ecdfb7563","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f70"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":500,"size":"100vw"},{"max":10000,"size":"500px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"117a4749-8deb-154c-e9fc-627f56615553","type":"Block","tag":"div","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf5"],"children":["d0f70919-444a-948b-cc60-b10274940ae3","ffdedbf3-f5ba-4085-a918-9f56607a3ee4"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"image-hover"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d0f70919-444a-948b-cc60-b10274940ae3","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"685fbcca375dc20636397f81"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1438,"size":"100vw"},{"max":10000,"size":"1438px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ffdedbf3-f5ba-4085-a918-9f56607a3ee4","type":"Image","tag":"img","classes":["c993b264-8b01-ccd3-e36a-f8e1be313bf2"],"children":[],"data":{"img":{"id":"683e8fb0bdaefe1b895729d6"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/66d9e579cd075a4475c2e99e/683e8fb0bdaefe1b895729d6_andre-benz-PKAW8MQYlU8-unsplash.webp","loading":"lazy","id":""},"sizes":[{"max":1000,"size":"100vw"},{"max":10000,"size":"1000px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}}],"styles":[{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center; background-color: hsla(0, 0.00%, 0.00%, 1.00);","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf4","fake":false,"type":"class","name":"image-effect-3","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf2","fake":false,"type":"class","name":"about_image","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; object-fit: cover;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf0","fake":false,"type":"class","name":"about_image_content","namespace":"","comb":"","styleLess":"display: grid; overflow: hidden; grid-auto-columns: 1fr; grid-column-gap: 2rem; grid-row-gap: 2rem; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bef","fake":false,"type":"class","name":"about_content","namespace":"","comb":"","styleLess":"display: flex; margin-top: 5rem; justify-content: space-between; align-items: center; grid-column-gap: 4rem; grid-row-gap: 4rem; text-align: center;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf3","fake":false,"type":"class","name":"image-effect-2","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf5","fake":false,"type":"class","name":"image-effect-4","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bf1","fake":false,"type":"class","name":"image-effect-1","namespace":"","comb":"","styleLess":"overflow: hidden; width: 20rem; height: 30rem;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"c993b264-8b01-ccd3-e36a-f8e1be313bee","fake":false,"type":"class","name":"about_contain","namespace":"","comb":"","styleLess":"position: relative; display: flex; width: 100%; min-height: 100svh; flex-direction: column; justify-content: center; flex-wrap: nowrap; align-items: center;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":500,"isHD":false,"height":667,"fileName":"685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","createdOn":"2025-06-28T09:58:35.576Z","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileHash":"39d0726d930f4bef2636d9bc06e129e1","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","origFileName":"zhen-mogila-iYw2XrxRslA-unsplash.webp","fileName":"685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f73","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f72_zhen-mogila-iYw2XrxRslA-unsplash.webp","_id":"685fbcca375dc20636397f72","updatedOn":"2025-06-28T09:58:35.576Z","fileSize":40932,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":500,"isHD":false,"height":750,"fileName":"685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","createdOn":"2025-06-28T09:58:35.578Z","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileHash":"a845d87b19596b97927acc42e2a36f34","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","origFileName":"luca-bravo-WeFDiEDModQ-unsplash.webp","fileName":"685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f75","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f74_luca-bravo-WeFDiEDModQ-unsplash.webp","_id":"685fbcca375dc20636397f74","updatedOn":"2025-06-28T09:58:35.579Z","markedAsDeleted":false,"fileSize":100692,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":500,"isHD":false,"height":749,"fileName":"685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","createdOn":"2025-06-28T09:58:35.581Z","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileHash":"d127615c8280ee94a261c2f2c0a175b4","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","origFileName":"pascal-bullan-2OQEaRFwJdI-unsplash.webp","fileName":"685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f77","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f76_pascal-bullan-2OQEaRFwJdI-unsplash.webp","_id":"685fbcca375dc20636397f76","updatedOn":"2025-06-28T09:58:35.581Z","fileSize":63048,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":500,"isHD":false,"height":750,"fileName":"685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","createdOn":"2025-06-28T09:58:35.570Z","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileHash":"b7463a9d897b5c99f2ce064ea5955e52","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","origFileName":"jordan-steranka-64LL2fP9uXM-unsplash.webp","fileName":"685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f6f","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f6e_jordan-steranka-64LL2fP9uXM-unsplash.webp","_id":"685fbcca375dc20636397f6e","updatedOn":"2025-06-28T09:58:35.571Z","markedAsDeleted":false,"fileSize":13680,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":1000,"isHD":false,"height":1500,"fileName":"685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","createdOn":"2025-06-28T09:58:35.584Z","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileHash":"1ac340e3f48d77cf551771b2f7d1c230","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","size":25796,"format":"webp","width":500,"quality":100,"_id":"683e8fb414c8efc8cdb09278","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","size":55792,"format":"webp","width":800,"quality":100,"_id":"683e8fb414c8efc8cdb09279","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","origFileName":"guillaume-briard-zuDk8NunJ3I-unsplash.webp","fileName":"685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f7d","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f7a_guillaume-briard-zuDk8NunJ3I-unsplash.webp","_id":"685fbcca375dc20636397f7a","updatedOn":"2025-06-28T09:58:35.584Z","fileSize":85556,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":500,"isHD":false,"height":750,"fileName":"685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","createdOn":"2025-06-28T09:58:35.573Z","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileHash":"6e9432583f32119f19ed470892abf809","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","origFileName":"patrick-bald-llZIWkNGzS4-unsplash.webp","fileName":"685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f71","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f70_patrick-bald-llZIWkNGzS4-unsplash.webp","_id":"685fbcca375dc20636397f70","updatedOn":"2025-06-28T09:58:35.574Z","markedAsDeleted":false,"fileSize":8290,"localizedSettings":{}},{"cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","siteId":"685fb20061fa8cd9f2978164","width":1438,"isHD":false,"height":2000,"fileName":"685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","createdOn":"2025-06-28T09:58:35.587Z","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileHash":"a4d5fd7fc8133f60d9aba51360e783fe","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","size":9094,"format":"webp","width":500,"quality":100,"_id":"683e8fb5822dded944083993","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","size":18842,"format":"webp","width":800,"quality":100,"_id":"683e8fb5822dded944083994","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","size":29424,"format":"webp","width":1080,"quality":100,"_id":"683e8fb5822dded944083995","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","origFileName":"jan-huber-hkmiiz2C3ts-unsplash.webp","fileName":"685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","format":"webp","_id":"685fbcca375dc20636397f85","cdnUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp"}],"mimeType":"image/webp","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","thumbUrl":"https://cdn.prod.website-files.com/685fb20061fa8cd9f2978164/685fbcca375dc20636397f81_jan-huber-hkmiiz2C3ts-unsplash.webp","_id":"685fbcca375dc20636397f81","updatedOn":"2025-06-28T09:58:35.588Z","fileSize":44020,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
On Load Animation 2
Add
On Load Animation 2
Copy Component
Copy external scripts and paste it in the body
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>Copy javascript and paste it in the body
<script>
const tl = gsap.timeline();
tl.to("#logo1", {
transform: "translate(-50%,-50%) scale(.7)",
duration: 1,
ease: "expo.inOut",
delay: 1,
})
tl.to("#logo1", {
transform: "translate(-50%,-50%) scale(100)",
rotate: 360,
duration: 1,
ease: "expo.inOut",
},'a')
tl.to("#logo2", {
transform: "translate(-50%,-50%) scale(100)",
rotate: 360,
duration: 1,
ease: "expo.inOut",
delay: .3,
},'a')
tl.to("#logo3", {
transform: "translate(-50%,-50%) scale(100)",
rotate: 360,
duration: 1,
ease: "expo.inOut",
delay: .6,
},'a')
tl.to('#loader', {
opacity: 0,
delay: .9,
},'a')
tl.to('#loader', {
display: "none",
delay: 1.1
}, 'a')
tl.to(".txt1 h1", {
transform: "translateY(0%) rotate(0deg)",
duration: 2,
ease: "expo.inOut",
stagger: .3,
},'b')
tl.to(".txt2 h1 span", {
opacity: 1,
duration: 2,
ease: "expo.inOut",
stagger: .4,
},'b')
tl.to("#vid", {
left: "0%",
duration: 3,
ease: "expo.inOut",
},'b')
tl.to("#headvid", {
transform: "translate(-50%, -50%) scale(1)",
duration: 3,
ease: "expo.inOut",
},'b')
</script>Copy styles and paste it in the head
<style>
.txt1:nth-last-child(2) {
display: inline-block;
margin-left: 3vw;
}
@media (max-width: 768px) {
.txt1:nth-last-child(2) {
margin-left: 0vh;
display: none;
}
#vid {
display: none;
}
}
</style>Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"6877282b-03f4-6c21-d041-fb46a09bf96b","type":"Section","tag":"section","classes":["8b59a30f-f38d-e0c8-d4ca-15cae737e66f"],"children":["77ff8b69-a25e-57e4-8536-9e36b2401d83"],"data":{"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[{"name":"data-theme","value":"dark"}],"search":{"exclude":false},"visibility":{"conditions":[]},"grid":{"type":"section"}}},{"_id":"77ff8b69-a25e-57e4-8536-9e36b2401d83","type":"Block","tag":"div","classes":["649e2a96-42bb-a0ee-52d9-a57e26edde7a"],"children":["212776e4-5629-9093-a3ea-9450acd8a5ca","8f13380d-0d1a-78e7-49a8-aa06717f56b1"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"main"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"212776e4-5629-9093-a3ea-9450acd8a5ca","type":"Block","tag":"div","classes":["96e6799c-e5b2-d63f-f607-63105dbad4ff"],"children":["2c2a2033-9172-a777-db25-9042898a90d1","e3c4956c-c473-5988-074b-1fad8bedeca3","588a9ad0-ac31-881e-56d1-335d845a66c4"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"loader"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2c2a2033-9172-a777-db25-9042898a90d1","type":"Block","tag":"div","classes":["a984f1c4-194b-40bd-9e9c-194e36f499a8"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"logo1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e3c4956c-c473-5988-074b-1fad8bedeca3","type":"Block","tag":"div","classes":["0b9d49ce-6aea-4ba1-2aa5-fb8ab0f2dc40"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"logo2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"588a9ad0-ac31-881e-56d1-335d845a66c4","type":"Block","tag":"div","classes":["a21c4ad0-01f0-32bd-162c-f94d4a5a6315"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"logo3"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"8f13380d-0d1a-78e7-49a8-aa06717f56b1","type":"Block","tag":"div","classes":["2c91e290-b192-ff53-325a-c0454a019c0f"],"children":["d3424337-0909-ee24-6fa7-d9f040ba91a5","1676e7cc-322d-cd10-9b65-72713feeec29","2700df78-d064-d9d9-94cf-5d070193a064","c5bc388d-adb4-2389-d485-405993cfd58f","c8dbc86d-af64-5f9f-1405-90ecaf86a813"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d3424337-0909-ee24-6fa7-d9f040ba91a5","type":"Block","tag":"div","classes":["f292c732-66c8-6add-0a5b-f91f8711902e"],"children":["55175c65-7002-e8b7-1d2f-90909078df28"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"55175c65-7002-e8b7-1d2f-90909078df28","type":"Heading","tag":"h1","classes":["87700313-9ac4-e9d7-c354-eaea279e2bef"],"children":["d26c86b6-d290-507a-5ed8-9452ae073732"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"d26c86b6-d290-507a-5ed8-9452ae073732","text":true,"v":"Creating Seamless"},{"_id":"1676e7cc-322d-cd10-9b65-72713feeec29","type":"Block","tag":"div","classes":["f29a76b3-070c-170c-5ff8-d257db6b319d"],"children":["8d4ac482-1a94-b04f-ae66-508951c01b36"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"8d4ac482-1a94-b04f-ae66-508951c01b36","type":"Heading","tag":"h1","classes":[],"children":["472fc956-0163-3dac-c38f-cf04f0d123bd","0febd63d-7808-6a9e-58aa-3c5fe82df4f0","4220182a-0632-79f9-96c4-0b778753de16","87948cbc-fa33-c44f-a23a-c43275ac19cc","9ff6c1a2-3963-281d-9e6a-2b42f894e0c2","bd68b369-5e0e-385b-33a9-c665f9f3a8a2","da7fdd4a-b9ee-163f-5b25-ab54844b6448"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"472fc956-0163-3dac-c38f-cf04f0d123bd","type":"Span","tag":"span","classes":[],"children":["e7e305e5-b3bd-30aa-a9d8-de75a97cfdde"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e7e305e5-b3bd-30aa-a9d8-de75a97cfdde","text":true,"v":"Creating"},{"_id":"0febd63d-7808-6a9e-58aa-3c5fe82df4f0","text":true,"v":" "},{"_id":"4220182a-0632-79f9-96c4-0b778753de16","type":"Span","tag":"span","classes":[],"children":["ce38f11e-380a-0bc3-d8ac-f0aa78ffcebe"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"txt2-1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"ce38f11e-380a-0bc3-d8ac-f0aa78ffcebe","text":true,"v":"Seamless"},{"_id":"87948cbc-fa33-c44f-a23a-c43275ac19cc","text":true,"v":" "},{"_id":"9ff6c1a2-3963-281d-9e6a-2b42f894e0c2","type":"Span","tag":"span","classes":[],"children":["a515af09-d958-1784-aa74-323feeb29ed3"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"a515af09-d958-1784-aa74-323feeb29ed3","text":true,"v":"Digital"},{"_id":"bd68b369-5e0e-385b-33a9-c665f9f3a8a2","text":true,"v":" "},{"_id":"da7fdd4a-b9ee-163f-5b25-ab54844b6448","type":"Span","tag":"span","classes":[],"children":["cdb104f1-7832-3787-f5cd-e3835abb080a"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"txt2-2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"cdb104f1-7832-3787-f5cd-e3835abb080a","text":true,"v":"Journey"},{"_id":"2700df78-d064-d9d9-94cf-5d070193a064","type":"Block","tag":"div","classes":["68352809-7101-355b-1c64-4992caf2109f"],"children":["0b8908a0-22a4-a931-59c5-ce83af97ae43"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"vid"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0b8908a0-22a4-a931-59c5-ce83af97ae43","type":"Image","tag":"img","classes":["18b93b12-fc78-31dc-385f-a56ca053d3c8","0015a522-2e13-cdcd-b881-ae3db5592e55"],"children":[],"data":{"img":{"id":"678f4190db0553335a049173"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","src":"https://cdn.prod.website-files.com/678f4190db0553335a049154/678f4190db0553335a049173_Abstract1.jpg","loading":"lazy","id":""},"sizes":[{"max":667,"size":"100vw"},{"max":10000,"size":"667px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"c5bc388d-adb4-2389-d485-405993cfd58f","type":"Block","tag":"div","classes":["f292c732-66c8-6add-0a5b-f91f8711902e"],"children":["e0d36b88-ffc2-5ddb-2877-e0b291f02b00"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"e0d36b88-ffc2-5ddb-2877-e0b291f02b00","type":"Heading","tag":"h1","classes":["87700313-9ac4-e9d7-c354-eaea279e2bef"],"children":["2b177cc5-f316-0af3-b911-3e187dfe3c1f"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2b177cc5-f316-0af3-b911-3e187dfe3c1f","text":true,"v":"Digital Journeys"},{"_id":"c8dbc86d-af64-5f9f-1405-90ecaf86a813","type":"Block","tag":"div","classes":["2e04c531-770e-8479-80e3-284fd234457d"],"children":["f20ff352-36f8-b2a5-cde2-e7375eee9d3f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"headvid"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"f20ff352-36f8-b2a5-cde2-e7375eee9d3f","type":"Video","tag":"div","classes":["e1c88e66-a9fb-788b-51d5-32986d16d3d9"],"children":[],"data":{"search":{"exclude":true},"video":{"embed":{"meta":{"provider_url":"https://www.youtube.com/","version":"1.0","title":"Webflow Apps: December App Drop","url":"https://www.youtube.com/watch?v=73lCjt5UcaY&pp=ygUHd2ViZmxvdw%3D%3D","author_name":"Webflow","height":528,"thumbnail_width":480,"width":940,"html":"<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2F73lCjt5UcaY%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D73lCjt5UcaY&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2F73lCjt5UcaY%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" title=\"YouTube embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"></iframe>","author_url":"https://www.youtube.com/@Webflow","provider_name":"YouTube","thumbnail_url":"https://i.ytimg.com/vi/73lCjt5UcaY/hqdefault.jpg","type":"video","thumbnail_height":360,"source":"https://www.youtube.com/","thumb":{"url":"https://i.ytimg.com/vi/73lCjt5UcaY/hqdefault.jpg","w":480,"h":360},"aspectRatio":0.5617021276595745,"videoId":"73lCjt5UcaY","youTubeParams":{}},"url":"https://www.youtube.com/watch?v=73lCjt5UcaY&pp=ygUHd2ViZmxvdw%3D%3D","title":"Webflow Apps: December App Drop","type":"video"},"style":{"padding-top":"56.17021276595745%"},"value":"<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2F73lCjt5UcaY%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D73lCjt5UcaY&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2F73lCjt5UcaY%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" allowfullscreen title=\"Webflow Apps: December App Drop\"></iframe>"},"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]}}}],"styles":[{"_id":"8b59a30f-f38d-e0c8-d4ca-15cae737e66f","fake":false,"type":"class","name":"anim_wrap","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"a984f1c4-194b-40bd-9e9c-194e36f499a8","fake":false,"type":"class","name":"logo1","namespace":"","comb":"","styleLess":"position: absolute; left: 50%; top: 50%; width: 7vw; height: 7vw; border-top-left-radius: 1vw; border-top-right-radius: 1vw; border-bottom-left-radius: 1vw; border-bottom-right-radius: 1vw; background-color: aliceblue; transform: translate(-50%, -50%);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"649e2a96-42bb-a0ee-52d9-a57e26edde7a","fake":false,"type":"class","name":"anim_container","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"96e6799c-e5b2-d63f-f607-63105dbad4ff","fake":false,"type":"class","name":"anim_loader","namespace":"","comb":"","styleLess":"position: fixed; left: 0px; top: 0px; z-index: 99; width: 100%; height: 100vh; background-color: black;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"68352809-7101-355b-1c64-4992caf2109f","fake":false,"type":"class","name":"anim-video","namespace":"","comb":"","styleLess":"position: relative; left: -40%; top: -1.9%; display: inline-block; overflow: hidden; width: 13vw; height: 5vw; border-top-left-radius: 3vw; border-top-right-radius: 3vw; border-bottom-left-radius: 3vw; border-bottom-right-radius: 3vw; background-color: #0e0e0e;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"f29a76b3-070c-170c-5ff8-d257db6b319d","fake":false,"type":"class","name":"txt2","namespace":"","comb":"","styleLess":"display: none; overflow: hidden;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"2c91e290-b192-ff53-325a-c0454a019c0f","fake":false,"type":"class","name":"anim_page1","namespace":"","comb":"","styleLess":"position: relative; width: 100%; height: 150vh; padding-top: 7vw; padding-right: 5vw; padding-bottom: 5vw; padding-left: 5vw; flex-direction: column; justify-content: flex-start; justify-items: center; flex-wrap: nowrap; align-items: flex-start; grid-auto-columns: 1fr; grid-template-columns: 1fr; grid-template-rows: auto; background-color: aliceblue; place-items: @raw<|flex-start|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"a21c4ad0-01f0-32bd-162c-f94d4a5a6315","fake":false,"type":"class","name":"logo3","namespace":"","comb":"","styleLess":"position: absolute; left: 50%; top: 50%; width: 7vw; height: 7vw; border-top-left-radius: 1vw; border-top-right-radius: 1vw; border-bottom-left-radius: 1vw; border-bottom-right-radius: 1vw; background-color: aliceblue; transform: scale(0) translate(-50%, -50%);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"f292c732-66c8-6add-0a5b-f91f8711902e","fake":false,"type":"class","name":"txt1","namespace":"","comb":"","styleLess":"overflow: hidden;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"2e04c531-770e-8479-80e3-284fd234457d","fake":false,"type":"class","name":"anim_content","namespace":"","comb":"","styleLess":"position: absolute; left: 50%; bottom: -20%; overflow: hidden; width: 90%; height: 80vh; border-top-left-radius: 3vw; border-top-right-radius: 3vw; border-bottom-left-radius: 3vw; border-bottom-right-radius: 3vw; background-color: #0e0e0e; transform: scale(0) translate(-50%, -50%);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"87700313-9ac4-e9d7-c354-eaea279e2bef","fake":false,"type":"class","name":"heading","namespace":"","comb":"","styleLess":"display: inline-block; transform: rotateX(20deg) rotateY(20deg) rotateZ(20deg) translate(0px, 100%); transform-origin: 0% 0%; color: #0e0e0e; font-size: 6vw; line-height: 1.1; text-transform: uppercase;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"0015a522-2e13-cdcd-b881-ae3db5592e55","fake":false,"type":"class","name":"Image","namespace":"","comb":"","styleLess":"height: 100%;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"e1c88e66-a9fb-788b-51d5-32986d16d3d9","fake":false,"type":"class","name":"Video","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; object-fit: cover;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"0b9d49ce-6aea-4ba1-2aa5-fb8ab0f2dc40","fake":false,"type":"class","name":"logo2","namespace":"","comb":"","styleLess":"position: absolute; left: 50%; top: 50%; width: 7vw; height: 7vw; border-top-left-radius: 1vw; border-top-right-radius: 1vw; border-bottom-left-radius: 1vw; border-bottom-right-radius: 1vw; background-color: black; transform: scale(0) translate(-50%, -50%);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/678f4190db0553335a049154/678f4190db0553335a049173_Abstract1.jpg","siteId":"678f4190db0553335a049154","width":667,"isHD":false,"height":1000,"fileName":"678f4190db0553335a049173_Abstract1.jpg","createdOn":"2025-01-02T11:02:44.369Z","origFileName":"Abstract1.jpg","fileHash":"bd0bca409ad5e9a508e24019541ea158","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/678f4190db0553335a049154/678f4190db0553335a049173_Abstract1-p-500.jpg","origFileName":"Abstract1-p-500.jpg","fileName":"678f4190db0553335a049173_Abstract1-p-500.jpg","size":43756,"format":"jpg","width":500,"quality":100,"_id":"6776725748a3409ad43c10b2","cdnUrl":"https://cdn.prod.website-files.com/678f4190db0553335a049154/678f4190db0553335a049173_Abstract1-p-500.jpg"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/678f4190db0553335a049154/678f4190db0553335a049173_Abstract1-p-130x130q80.jpg","origFileName":"Abstract1-p-130x130q80.jpg","fileName":"678f4190db0553335a049173_Abstract1-p-130x130q80.jpg","format":"jpg","_id":"677e466e2425393b4f18f836","cdnUrl":"https://cdn.prod.website-files.com/678f4190db0553335a049154/678f4190db0553335a049173_Abstract1-p-130x130q80.jpg"}],"mimeType":"image/jpeg","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/678f4190db0553335a049154/678f4190db0553335a049173_Abstract1.jpg","thumbUrl":"https://cdn.prod.website-files.com/678f4190db0553335a049154/678f4190db0553335a049173_Abstract1-p-130x130q80.jpg","_id":"678f4190db0553335a049173","updatedOn":"2025-01-21T06:41:21.295Z","markedAsDeleted":false,"fileSize":69353,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"f92a24c8-acfc-0400-cb5c-6a2502ab305a","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["11b3b16d-997d-aad6-b76e-4a0b068907ac"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"11b3b16d-997d-aad6-b76e-4a0b068907ac","type":"Block","tag":"div","classes":["253874ab-4672-ae8e-189c-00568a245cc0"],"children":["9a63f7f4-d20e-5d54-c795-fc5871b9d472","90c675e3-c5f2-593d-105f-2c84049f4c56"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"main"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"9a63f7f4-d20e-5d54-c795-fc5871b9d472","type":"Block","tag":"div","classes":["e1e2c7a2-d345-48f6-d288-5e893ce81244"],"children":["4832e89c-e1b4-b6ff-dada-0f8ed4ed820e","3d85b580-b82f-c19d-da1a-d486d10a3bd0","5ab27d7a-2c6c-6318-7549-dcb2889f9395"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"loader"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"4832e89c-e1b4-b6ff-dada-0f8ed4ed820e","type":"Block","tag":"div","classes":["4567ca50-3cfe-1b9f-77b1-56a8787dd9ad"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"logo1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"3d85b580-b82f-c19d-da1a-d486d10a3bd0","type":"Block","tag":"div","classes":["fe28cb2a-f5fe-daef-3ecc-737ad6cf8d88"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"logo2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"5ab27d7a-2c6c-6318-7549-dcb2889f9395","type":"Block","tag":"div","classes":["29f37148-7972-66b8-a219-2bc54566f1ce"],"children":[],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"logo3"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"90c675e3-c5f2-593d-105f-2c84049f4c56","type":"Block","tag":"div","classes":["d9257857-9d75-c72d-26eb-77688c5b9df5"],"children":["171c750c-6630-7ffe-2e97-fb8ee86fc0b9","9170f2a2-141a-284d-79ae-123f0d6e4837","d47b759b-defa-d35e-6053-d993c23a61ca","74c466dd-9e93-8b3b-9f89-cf28c5972318","0b8fca77-ddb0-e5fb-6128-18108d6a05df"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"171c750c-6630-7ffe-2e97-fb8ee86fc0b9","type":"Block","tag":"div","classes":["f5087876-4d90-29a1-57ce-9ad170996fd3"],"children":["6df74407-7c02-24d4-38be-97b7acb415e3"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"6df74407-7c02-24d4-38be-97b7acb415e3","type":"Heading","tag":"h2","classes":["40aa25a2-697b-8fd8-3047-0161393714d8"],"children":["5028f179-5745-1bfb-d3fa-214859aee26f"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"5028f179-5745-1bfb-d3fa-214859aee26f","text":true,"v":"Creating Seamless"},{"_id":"9170f2a2-141a-284d-79ae-123f0d6e4837","type":"Block","tag":"div","classes":["40e8976b-621a-f649-6237-003fc91ae317"],"children":["055fe00a-62a4-5077-2b57-0c45138ca88e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"055fe00a-62a4-5077-2b57-0c45138ca88e","type":"Heading","tag":"h2","classes":["cdfcb7d2-fb78-42d5-448e-d343cce03da7"],"children":["6209dd0f-645b-ed4b-9300-b26c8abd8437","c54d71a1-e7de-a422-79aa-3ccaafaa9e1a","3adbc0bb-974e-fc47-73d9-ef9d134de0ce","e170ef3f-6604-7611-c5cb-2666fc1b6495","64792fb2-7870-f3c2-025e-c68e2e87c988","a5084efc-c2b7-ac8b-68c1-ea029e093369","0c39e57c-687f-1e73-71ee-b42ffa267a25","d13ceafd-c140-8dc6-e9e8-8f5d6ee411b3"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"6209dd0f-645b-ed4b-9300-b26c8abd8437","type":"Span","tag":"span","classes":["3e863589-dd00-9dc4-acf1-731c2da3601e"],"children":["5bea8ebd-7951-d33a-58eb-466e91aa660b"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"5bea8ebd-7951-d33a-58eb-466e91aa660b","text":true,"v":"Creating"},{"_id":"c54d71a1-e7de-a422-79aa-3ccaafaa9e1a","text":true,"v":" "},{"_id":"3adbc0bb-974e-fc47-73d9-ef9d134de0ce","type":"Span","tag":"span","classes":["90225997-5652-44a5-307f-cd0858c76ee3"],"children":["c747eba9-988f-20c0-acef-5c2792b1e017"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"txt2-1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"c747eba9-988f-20c0-acef-5c2792b1e017","text":true,"v":"Seamless"},{"_id":"e170ef3f-6604-7611-c5cb-2666fc1b6495","text":true,"v":" "},{"_id":"64792fb2-7870-f3c2-025e-c68e2e87c988","type":"LineBreak","tag":"br","classes":[],"children":[],"data":{"sym":{"inst":"LineBreak"}}},{"_id":"a5084efc-c2b7-ac8b-68c1-ea029e093369","type":"Span","tag":"span","classes":["ed90f585-ad87-2a16-d040-136b613addb4"],"children":["aec4f02c-ee48-4c22-f3e1-1f6942c010c4"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"aec4f02c-ee48-4c22-f3e1-1f6942c010c4","text":true,"v":"Digital"},{"_id":"0c39e57c-687f-1e73-71ee-b42ffa267a25","text":true,"v":" "},{"_id":"d13ceafd-c140-8dc6-e9e8-8f5d6ee411b3","type":"Span","tag":"span","classes":["c40aa035-cd59-7b3c-89b5-38536516afde"],"children":["c3233557-f71e-5135-4731-e20c091be720"],"data":{"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"txt2-2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"c3233557-f71e-5135-4731-e20c091be720","text":true,"v":"Journeys"},{"_id":"d47b759b-defa-d35e-6053-d993c23a61ca","type":"Block","tag":"div","classes":["b4fc1d06-a51b-73d0-1cec-742515220113"],"children":["1754036b-811e-4863-3639-ecdee997a773"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"vid"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"1754036b-811e-4863-3639-ecdee997a773","type":"Image","tag":"img","classes":["ae618a0a-5ab2-bedc-72c5-bf7cc00188f9"],"children":[],"data":{"img":{"id":"685fb3a979241706b27e91e4"},"srcsetDisabled":false,"attr":{"width":"auto","height":"auto","alt":"__wf_reserved_inherit","loading":"lazy","id":""},"sizes":[{"max":667,"size":"100vw"},{"max":10000,"size":"667px"}],"devlink":{"runtimeProps":{},"slot":""},"displayName":"","xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"74c466dd-9e93-8b3b-9f89-cf28c5972318","type":"Block","tag":"div","classes":["f5087876-4d90-29a1-57ce-9ad170996fd3"],"children":["ce1818ed-5817-60b3-b8a7-a2ba5a76cb2e"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"ce1818ed-5817-60b3-b8a7-a2ba5a76cb2e","type":"Heading","tag":"h2","classes":["40aa25a2-697b-8fd8-3047-0161393714d8"],"children":["675e62bd-a431-3e36-ee51-7546e0add290"],"data":{"tag":"h2","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"675e62bd-a431-3e36-ee51-7546e0add290","text":true,"v":"Digital Journeys"},{"_id":"0b8fca77-ddb0-e5fb-6128-18108d6a05df","type":"Block","tag":"div","classes":["78be188e-3340-150e-270d-cb49de979337"],"children":["39fd3b70-54dd-7376-3805-0d5190685093"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"headvid"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}},{"_id":"39fd3b70-54dd-7376-3805-0d5190685093","type":"Video","tag":"div","classes":["22b67552-131b-926d-d5f9-7cf69b87352a"],"children":[],"data":{"search":{"exclude":true},"video":{"embed":{"meta":{"provider_url":"https://www.youtube.com/","description":"💎 Webflow Wizards Community The ultimate community to improve your skills and connect with like-minded Webflow Developers https://www.timothyricks.com/community 👨💻 Consulting Sessions https://www.timothyricks.com/consulting Get the cloneable for this project (affiliate link) https://try.webflow.com/tricks?path=lumos-v2-beta","title":"New Interactive Components in Lumos for Webflow","url":"https://www.youtube.com/watch?v=gkrDDB2ekC4&pp=ygUNdGltb3RoeSByaWNrc9IHCQnBCQGHKiGM7w%3D%3D","author_name":"Timothy Ricks","height":528,"thumbnail_width":480,"width":940,"html":"<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FgkrDDB2ekC4%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DgkrDDB2ekC4&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FgkrDDB2ekC4%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" title=\"YouTube embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"></iframe>","author_url":"https://www.youtube.com/@timothyricks","version":"1.0","provider_name":"YouTube","thumbnail_url":"https://i.ytimg.com/vi/gkrDDB2ekC4/hqdefault.jpg","type":"video","thumbnail_height":360,"source":"https://www.youtube.com/","thumb":{"url":"https://i.ytimg.com/vi/gkrDDB2ekC4/hqdefault.jpg","w":480,"h":360},"aspectRatio":0.5617021276595745,"desc":"💎 Webflow Wizards Community The ultimate community to improve your skills and connect with like-minded Webflow Developers https://www.timothyricks.com/community 👨💻 Consulting Sessions https://www.timothyricks.com/consulting Get the cloneable for this project (affiliate link) https://try.webflow.com/tricks?path=lumos-v2-beta","videoId":"gkrDDB2ekC4","youTubeParams":{}},"url":"https://www.youtube.com/watch?v=gkrDDB2ekC4&pp=ygUNdGltb3RoeSByaWNrc9IHCQnBCQGHKiGM7w%3D%3D","title":"New Interactive Components in Lumos for Webflow","type":"video"},"style":{"padding-top":"56.17021276595745%"},"value":"<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FgkrDDB2ekC4%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DgkrDDB2ekC4&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FgkrDDB2ekC4%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" allowfullscreen title=\"New Interactive Components in Lumos for Webflow\"></iframe>"},"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[],"keepInHtml":{"tag":"False","val":{}}}}}],"styles":[{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center; background-color: hsla(0, 0.00%, 0.00%, 1.00);","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"22b67552-131b-926d-d5f9-7cf69b87352a","fake":false,"type":"class","name":"video","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; object-fit: cover;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"4567ca50-3cfe-1b9f-77b1-56a8787dd9ad","fake":false,"type":"class","name":"logo1","namespace":"","comb":"","styleLess":"position: absolute; left: 50%; top: 50%; width: 7vw; height: 7vw; border-top-left-radius: 1vw; border-top-right-radius: 1vw; border-bottom-left-radius: 1vw; border-bottom-right-radius: 1vw; background-color: aliceblue; transform: translate(-50%, -50%);","variants":{"medium":{"styleLess":"width: 7vh; height: 7vh;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"f5087876-4d90-29a1-57ce-9ad170996fd3","fake":false,"type":"class","name":"txt1","namespace":"","comb":"","styleLess":"overflow: hidden; height: 7vw; width: @raw<|fit-content|>;","variants":{"medium":{"styleLess":"display: none;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"c40aa035-cd59-7b3c-89b5-38536516afde","fake":false,"type":"class","name":"Text Span 4","namespace":"","comb":"","styleLess":"","variants":{"medium":{"styleLess":"opacity: 0;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"253874ab-4672-ae8e-189c-00568a245cc0","fake":false,"type":"class","name":"anim_main","namespace":"","comb":"","styleLess":"","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"b4fc1d06-a51b-73d0-1cec-742515220113","fake":false,"type":"class","name":"anim_vid","namespace":"","comb":"","styleLess":"position: relative; left: -40%; display: inline-block; overflow: hidden; width: 13vw; height: 5vw; border-top-left-radius: 3vw; border-top-right-radius: 3vw; border-bottom-left-radius: 3vw; border-bottom-right-radius: 3vw; background-color: #0e0e0e;","variants":{"medium":{"styleLess":"display: none;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"ae618a0a-5ab2-bedc-72c5-bf7cc00188f9","fake":false,"type":"class","name":"anim_image","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; object-fit: cover;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"78be188e-3340-150e-270d-cb49de979337","fake":false,"type":"class","name":"anim_vid-content","namespace":"","comb":"","styleLess":"position: absolute; left: 50%; bottom: -20%; overflow: hidden; width: 90%; height: 80vh; border-top-left-radius: 3vw; border-top-right-radius: 3vw; border-bottom-left-radius: 3vw; border-bottom-right-radius: 3vw; background-color: #0e0e0e; transform: scale(0) translate(-50%, -50%);","variants":{"medium":{"styleLess":"bottom: -5%; height: 30vh;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"3e863589-dd00-9dc4-acf1-731c2da3601e","fake":false,"type":"class","name":"Text Span","namespace":"","comb":"","styleLess":"","variants":{"medium":{"styleLess":"opacity: 0;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"40aa25a2-697b-8fd8-3047-0161393714d8","fake":false,"type":"class","name":"anim_title","namespace":"","comb":"","styleLess":"display: inline-block; transform: rotateX(20deg) rotateY(20deg) rotateZ(20deg) translate(0px, 100%); color: #0e0e0e; font-size: 6vw; line-height: 1.1; font-weight: 500; text-transform: uppercase; transform-origin: @raw<|left|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"ed90f585-ad87-2a16-d040-136b613addb4","fake":false,"type":"class","name":"Text Span 3","namespace":"","comb":"","styleLess":"","variants":{"medium":{"styleLess":"opacity: 0;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"cdfcb7d2-fb78-42d5-448e-d343cce03da7","fake":false,"type":"class","name":"txt2-heading","namespace":"","comb":"","styleLess":"font-size: 4rem;","variants":{"small":{"styleLess":"font-size: 3rem;"}},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"d9257857-9d75-c72d-26eb-77688c5b9df5","fake":false,"type":"class","name":"page1","namespace":"","comb":"","styleLess":"position: relative; width: 100%; height: 150vh; padding-top: 5vw; padding-right: 5vw; padding-bottom: 5vw; padding-left: 5vw; background-color: aliceblue;","variants":{"medium":{"styleLess":"height: 100vh;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"e1e2c7a2-d345-48f6-d288-5e893ce81244","fake":false,"type":"class","name":"loader","namespace":"","comb":"","styleLess":"position: fixed; left: 0px; top: 0px; z-index: 99; width: 100%; height: 100vh; background-color: #0e0e0e;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"fe28cb2a-f5fe-daef-3ecc-737ad6cf8d88","fake":false,"type":"class","name":"logo2","namespace":"","comb":"","styleLess":"position: absolute; left: 50%; top: 50%; width: 7vw; height: 7vw; border-top-left-radius: 1vw; border-top-right-radius: 1vw; border-bottom-left-radius: 1vw; border-bottom-right-radius: 1vw; background-color: #0e0e0e; transform: scale(0) translate(-50%, -50%);","variants":{"medium":{"styleLess":"width: 7vh; height: 7vh;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"29f37148-7972-66b8-a219-2bc54566f1ce","fake":false,"type":"class","name":"logo3","namespace":"","comb":"","styleLess":"position: absolute; left: 50%; top: 50%; width: 7vw; height: 7vw; border-top-left-radius: 1vw; border-top-right-radius: 1vw; border-bottom-left-radius: 1vw; border-bottom-right-radius: 1vw; background-color: aliceblue; transform: scale(0) translate(-50%, -50%);","variants":{"medium":{"styleLess":"width: 7vh; height: 7vh;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"40e8976b-621a-f649-6237-003fc91ae317","fake":false,"type":"class","name":"txt2","namespace":"","comb":"","styleLess":"display: none;","variants":{"medium":{"styleLess":"display: block; margin-top: 10vh; color: #0e0e0e; text-transform: uppercase;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"90225997-5652-44a5-307f-cd0858c76ee3","fake":false,"type":"class","name":"Text Span 2","namespace":"","comb":"","styleLess":"","variants":{"medium":{"styleLess":"opacity: 0;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[{"cdnUrl":"https://cdn.prod.website-files.com/685fb1fea75b009dc38b3516/685fb3a979241706b27e91e4_Abstract1.jpg","siteId":"685fb1fea75b009dc38b3516","width":667,"isHD":false,"height":1000,"fileName":"685fb3a979241706b27e91e4_Abstract1.jpg","createdOn":"2025-06-28T09:19:37.614Z","origFileName":"Abstract1.jpg","fileHash":"bd0bca409ad5e9a508e24019541ea158","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb1fea75b009dc38b3516/685fb3a979241706b27e91e4_Abstract1-p-500.jpg","origFileName":"Abstract1-p-500.jpg","fileName":"685fb3a979241706b27e91e4_Abstract1-p-500.jpg","size":43756,"format":"jpg","width":500,"quality":100,"_id":"6776725748a3409ad43c10b2","cdnUrl":"https://cdn.prod.website-files.com/685fb1fea75b009dc38b3516/685fb3a979241706b27e91e4_Abstract1-p-500.jpg"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb1fea75b009dc38b3516/685fb3a979241706b27e91e4_Abstract1-p-130x130q80.jpg","origFileName":"Abstract1-p-130x130q80.jpg","fileName":"685fb3a979241706b27e91e4_Abstract1-p-130x130q80.jpg","format":"jpg","_id":"677e466e2425393b4f18f836","cdnUrl":"https://cdn.prod.website-files.com/685fb1fea75b009dc38b3516/685fb3a979241706b27e91e4_Abstract1-p-130x130q80.jpg"}],"mimeType":"image/jpeg","isFromWellKnownFolder":false,"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/685fb1fea75b009dc38b3516/685fb3a979241706b27e91e4_Abstract1.jpg","thumbUrl":"https://cdn.prod.website-files.com/685fb1fea75b009dc38b3516/685fb3a979241706b27e91e4_Abstract1-p-130x130q80.jpg","_id":"685fb3a979241706b27e91e4","updatedOn":"2025-06-28T09:19:37.615Z","markedAsDeleted":false,"fileSize":69353,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
Svg-morph-on-scroll
Add
Svg-morph-on-scroll
Copy Component
Copy external scripts and paste it in the body
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>Copy javascript and paste it in the body
<script>
gsap.registerPlugin(ScrollTrigger);
const text1 = document.getElementById("text1");
const text2 = document.getElementById("text2");
// Set up ScrollTrigger pin
ScrollTrigger.create({
trigger: "#page1",
start: "top top",
end: "+=1000", // Adjust scroll length
pin: true,
scrub: 5,
onUpdate: (self) => {
const progress = self.progress;
// Animate morphing based on scroll progress
text1.style.opacity = 1 - progress;
text1.style.filter = `blur(${10 * progress}px)`;
text2.style.opacity = progress;
text2.style.filter = `blur(${10 * (1 - progress)}px)`;
}
});
</script>Copy styles and paste it in the head
Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"61ef4246-b52f-3603-40f8-293b9e68c49d","type":"Section","tag":"section","classes":["8b59a30f-f38d-e0c8-d4ca-15cae737e66f"],"children":["cc023205-c495-5d0d-c2ba-a798c0374028","fe05958c-ab2d-323f-ff47-d80246db4896"],"data":{"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[{"name":"data-theme","value":"dark"}],"search":{"exclude":false},"visibility":{"conditions":[]},"grid":{"type":"section"}}},{"_id":"cc023205-c495-5d0d-c2ba-a798c0374028","type":"HtmlEmbed","tag":"div","classes":[],"children":[],"v":"<svg style=\"display: none;\">\n <filter id=\"gooey\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"5\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 20 -10\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n <filter id=\"gooey-mobile\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"2\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 8 -3\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n </svg>","data":{"search":{"exclude":true},"embed":{"meta":{"html":"<svg style=\"display: none;\">\n <filter id=\"gooey\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"5\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 20 -10\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n <filter id=\"gooey-mobile\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"2\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 8 -3\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n </svg>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"},"insideRTE":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]}}},{"_id":"fe05958c-ab2d-323f-ff47-d80246db4896","type":"Block","tag":"div","classes":["784a3447-f4c5-3703-61f7-0cd27dd3afcd"],"children":["87c25f07-3210-1b91-eb58-62feada1670f"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"87c25f07-3210-1b91-eb58-62feada1670f","type":"Block","tag":"div","classes":["9b7479b5-fc50-d1be-fef4-94081ba73dbd"],"children":["248921fd-7085-d999-9cab-27c7137d7c26","559f1d00-d62f-7d1c-ceb2-06f6983195e6"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"248921fd-7085-d999-9cab-27c7137d7c26","type":"Heading","tag":"h1","classes":["3ddc84e0-5bfb-8263-244a-e75e9e83e480"],"children":["0c6b22f0-e8fa-28b9-0d94-afeaabcebc6b"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"text1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"0c6b22f0-e8fa-28b9-0d94-afeaabcebc6b","text":true,"v":"WEBFLOW"},{"_id":"559f1d00-d62f-7d1c-ceb2-06f6983195e6","type":"Heading","tag":"h1","classes":["3ddc84e0-5bfb-8263-244a-e75e9e83e480"],"children":["bf434ee8-e8ef-16f4-4dfa-9cac9ec6c2a2"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"text2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"bf434ee8-e8ef-16f4-4dfa-9cac9ec6c2a2","text":true,"v":"DEVELOPER"}],"styles":[{"_id":"8b59a30f-f38d-e0c8-d4ca-15cae737e66f","fake":false,"type":"class","name":"anim_wrap","namespace":"","comb":"","styleLess":"width: 100%; height: 100%; background-color: black;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"784a3447-f4c5-3703-61f7-0cd27dd3afcd","fake":false,"type":"class","name":"page","namespace":"","comb":"","styleLess":"position: relative; display: flex; overflow: hidden; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"9b7479b5-fc50-d1be-fef4-94081ba73dbd","fake":false,"type":"class","name":"gooey-wrapper","namespace":"","comb":"","styleLess":"position: relative; display: flex; margin-top: -5vw; justify-content: center; align-items: center; text-align: center; filter: @raw<|url(#gooey)|>; width: @raw<|fit-content|>; height: @raw<|fit-content|>;","variants":{"medium":{"styleLess":"filter: @raw<|url(#gooey-mobile)|>;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"3ddc84e0-5bfb-8263-244a-e75e9e83e480","fake":false,"type":"class","name":"morph-text","namespace":"","comb":"","styleLess":"position: absolute; opacity: 0; transition-property: opacity; transition-duration: 200ms; transition-timing-function: ease; color: white; font-size: 5rem; line-height: 1.5em; font-weight: 700; filter: @raw<|blur(10px)|>;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"dc03d840-ca24-4241-1a5d-6019af679591","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["792d06af-044b-4a66-8dbb-e93c9c0dd5c5"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"792d06af-044b-4a66-8dbb-e93c9c0dd5c5","type":"Block","tag":"div","classes":["57b9d810-62dd-ecae-4ae3-f926d64736bf"],"children":["b0c35587-4f89-b05b-5a48-2334bc71e161","f0c70368-5481-bb57-32bd-1a699a38a9b0"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[{"name":"data-theme","value":"dark"}],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"b0c35587-4f89-b05b-5a48-2334bc71e161","type":"HtmlEmbed","tag":"div","classes":[],"children":[],"v":"<svg style=\"display: none;\">\n <filter id=\"gooey\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"5\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 20 -10\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n <filter id=\"gooey-mobile\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"2\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 8 -3\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n </svg>","data":{"search":{"exclude":true},"embed":{"meta":{"html":"<svg style=\"display: none;\">\n <filter id=\"gooey\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"5\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 20 -10\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n <filter id=\"gooey-mobile\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"2\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 8 -3\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n </svg>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"},"insideRTE":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]}}},{"_id":"f0c70368-5481-bb57-32bd-1a699a38a9b0","type":"Block","tag":"div","classes":["57b9d810-62dd-ecae-4ae3-f926d64736c0"],"children":["2e0976be-2c95-660e-aca0-5dc49d761dcb"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"page1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"2e0976be-2c95-660e-aca0-5dc49d761dcb","type":"Block","tag":"div","classes":["57b9d810-62dd-ecae-4ae3-f926d64736c1"],"children":["96b8cce0-fb69-838e-1603-09c34b822d17","7864c5b6-1f06-6f43-3327-7039917a0c29"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"96b8cce0-fb69-838e-1603-09c34b822d17","type":"Heading","tag":"h1","classes":["57b9d810-62dd-ecae-4ae3-f926d64736c2"],"children":["396468e4-431d-bd07-41cb-f9facc8c72b4"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"text1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"396468e4-431d-bd07-41cb-f9facc8c72b4","text":true,"v":"WEBFLOW"},{"_id":"7864c5b6-1f06-6f43-3327-7039917a0c29","type":"Heading","tag":"h1","classes":["57b9d810-62dd-ecae-4ae3-f926d64736c2"],"children":["6300f96b-2718-b546-b383-4baffca049ab"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"text2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"6300f96b-2718-b546-b383-4baffca049ab","text":true,"v":"DEVELOPER"}],"styles":[{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center; background-color: hsla(0, 0.00%, 0.00%, 1.00);","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"57b9d810-62dd-ecae-4ae3-f926d64736bf","fake":false,"type":"class","name":"anim_wrap","namespace":"","comb":"","styleLess":"width: 100%; height: 100%;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"57b9d810-62dd-ecae-4ae3-f926d64736c0","fake":false,"type":"class","name":"page","namespace":"","comb":"","styleLess":"position: relative; display: flex; overflow: hidden; width: 100%; height: 100vh; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"57b9d810-62dd-ecae-4ae3-f926d64736c1","fake":false,"type":"class","name":"gooey-wrapper","namespace":"","comb":"","styleLess":"position: relative; width: 100%; text-align: center; filter: @raw<|url(#gooey)|>;","variants":{"medium":{"styleLess":"filter: @raw<|url(#gooey-mobile)|>;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"57b9d810-62dd-ecae-4ae3-f926d64736c2","fake":false,"type":"class","name":"morph-text","namespace":"","comb":"","styleLess":"position: absolute; width: 100%; opacity: 0; filter: blur(10px); font-size: 5rem; font-weight: 700;","variants":{"medium":{"styleLess":"font-size: 4rem;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
Svg-morph
Add
Svg-morph
Copy Component
Copy external scripts and paste it in the body
Copy javascript and paste it in the body
<script>
const text1 = document.getElementById("text1");
const text2 = document.getElementById("text2");
let toggle = true;
setInterval(() => {
if (toggle) {
text1.classList.remove("show");
text1.classList.add("hide");
text2.classList.remove("hide");
text2.classList.add("show");
} else {
text2.classList.remove("show");
text2.classList.add("hide");
text1.classList.remove("hide");
text1.classList.add("show");
}
toggle = !toggle;
}, 2000);
</script>Copy styles and paste it in the head
Click on these attributes to copy them
No items found.
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"87af53bd-5788-1ffa-baf3-0b96ee457d57","type":"Section","tag":"section","classes":["8b59a30f-f38d-e0c8-d4ca-15cae737e66f"],"children":["4703cc9a-3e0c-9eae-7a77-07ec16c353a1","27c74750-fa41-87e5-ae3d-8b526df6086e"],"data":{"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[{"name":"data-theme","value":"dark"}],"search":{"exclude":false},"visibility":{"conditions":[]},"grid":{"type":"section"}}},{"_id":"4703cc9a-3e0c-9eae-7a77-07ec16c353a1","type":"HtmlEmbed","tag":"div","classes":[],"children":[],"v":"<svg style=\"display: none;\">\n <filter id=\"gooey\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"5\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 20 -10\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n \n \n <filter id=\"gooey-mobile\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"2\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 8 -3\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n </svg>","data":{"search":{"exclude":true},"embed":{"meta":{"html":"<svg style=\"display: none;\">\n <filter id=\"gooey\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"5\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 20 -10\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n \n \n <filter id=\"gooey-mobile\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"2\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 8 -3\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n </svg>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"},"insideRTE":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]}}},{"_id":"27c74750-fa41-87e5-ae3d-8b526df6086e","type":"Block","tag":"div","classes":["29805964-bdab-4522-a77e-814cd21a86a5"],"children":["cb9e64ef-1563-c8c7-95ef-1f7f318bec8c","c6d2db5d-9940-7792-fcff-0277b48227a8"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"cb9e64ef-1563-c8c7-95ef-1f7f318bec8c","type":"Heading","tag":"h1","classes":["fea2845d-93ff-d83e-2a72-3dd32319bc1c","17508bc8-0121-147b-9cf3-1c84cf899034"],"children":["58d19642-15ef-b57a-7794-fe37030dfcfb"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"text1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"58d19642-15ef-b57a-7794-fe37030dfcfb","text":true,"v":"WEBFLOW"},{"_id":"c6d2db5d-9940-7792-fcff-0277b48227a8","type":"Heading","tag":"h1","classes":["fea2845d-93ff-d83e-2a72-3dd32319bc1c","e5f6ca93-3cbb-f3f0-532a-e9357ab224f0"],"children":["618a953b-e408-7bbd-1d62-e3e3200711d1"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"text2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"618a953b-e408-7bbd-1d62-e3e3200711d1","text":true,"v":"DEVELOPER"}],"styles":[{"_id":"8b59a30f-f38d-e0c8-d4ca-15cae737e66f","fake":false,"type":"class","name":"anim_wrap","namespace":"","comb":"","styleLess":"display: flex; height: 100vh; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"29805964-bdab-4522-a77e-814cd21a86a5","fake":false,"type":"class","name":"gooey-wrapper","namespace":"","comb":"","styleLess":"position: relative; width: 100%; max-width: 600px; text-align: center; filter: @raw<|url(#gooey)|>;","variants":{"medium":{"styleLess":"max-width: 95vw; filter: @raw<|url(#gooey-mobile)|>;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"fea2845d-93ff-d83e-2a72-3dd32319bc1c","fake":false,"type":"class","name":"morph-text","namespace":"","comb":"","styleLess":"position: absolute; width: 100%; opacity: 0; transition-property: filter, opacity; transition-duration: 1000ms, 1000ms; transition-timing-function: ease, ease; font-size: 5rem; font-weight: 700;","variants":{},"children":["17508bc8-0121-147b-9cf3-1c84cf899034","e5f6ca93-3cbb-f3f0-532a-e9357ab224f0"],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"17508bc8-0121-147b-9cf3-1c84cf899034","fake":false,"type":"class","name":"show","namespace":"","comb":"&","styleLess":"opacity: 1; filter: blur(0px);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"e5f6ca93-3cbb-f3f0-532a-e9357ab224f0","fake":false,"type":"class","name":"hide","namespace":"","comb":"&","styleLess":"opacity: 0; filter: blur(0px);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"010c8dde-14dd-0433-f201-cfe32d03b903","type":"Block","tag":"section","classes":["cf43d98c-48d8-bebc-6c99-10f0eb75fadd"],"children":["c209d860-c149-7b87-84bb-a77f6b3b5139"],"data":{"text":false,"tag":"section","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"c209d860-c149-7b87-84bb-a77f6b3b5139","type":"Block","tag":"div","classes":["845d91f0-9211-9a2b-8666-d6af0de47fc3"],"children":["757f7f77-d1b9-8299-5558-5b2c20210343","6f4c33dc-3609-ba96-f0ce-73cd6f6fb5a9"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[{"name":"data-theme","value":"dark"}],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"757f7f77-d1b9-8299-5558-5b2c20210343","type":"HtmlEmbed","tag":"div","classes":[],"children":[],"v":"<svg style=\"display: none;\">\n <filter id=\"gooey\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"5\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 20 -10\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n <filter id=\"gooey-mobile\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"2\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 8 -3\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n </svg>","data":{"search":{"exclude":true},"embed":{"meta":{"html":"<svg style=\"display: none;\">\n <filter id=\"gooey\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"5\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 20 -10\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n <filter id=\"gooey-mobile\">\n <feGaussianBlur in=\"SourceGraphic\" stdDeviation=\"2\" result=\"blur\" />\n <feColorMatrix in=\"blur\" type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 8 -3\" result=\"goo\" />\n <feComposite in=\"SourceGraphic\" in2=\"goo\" operator=\"atop\" />\n </filter>\n </svg>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"},"insideRTE":false,"devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]}}},{"_id":"6f4c33dc-3609-ba96-f0ce-73cd6f6fb5a9","type":"Block","tag":"div","classes":["845d91f0-9211-9a2b-8666-d6af0de47fc4"],"children":["21ad140b-707b-caa1-79d3-2e9c1c8e4f82","006f4d3c-4ac7-80fa-7ba3-cdae29cd5c8a"],"data":{"text":false,"tag":"div","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"21ad140b-707b-caa1-79d3-2e9c1c8e4f82","type":"Heading","tag":"h1","classes":["845d91f0-9211-9a2b-8666-d6af0de47fc5","845d91f0-9211-9a2b-8666-d6af0de47fc6"],"children":["40891dc2-fb82-8f11-6651-b4ede9a7fc61"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"text1"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"40891dc2-fb82-8f11-6651-b4ede9a7fc61","text":true,"v":"WEBFLOW"},{"_id":"006f4d3c-4ac7-80fa-7ba3-cdae29cd5c8a","type":"Heading","tag":"h1","classes":["845d91f0-9211-9a2b-8666-d6af0de47fc5","845d91f0-9211-9a2b-8666-d6af0de47fc7"],"children":["3ce649d2-c23a-d1d0-1828-20e5ebb98603"],"data":{"tag":"h1","devlink":{"runtimeProps":{},"slot":""},"displayName":"","attr":{"id":"text2"},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]}}},{"_id":"3ce649d2-c23a-d1d0-1828-20e5ebb98603","text":true,"v":"DEVELOPER"}],"styles":[{"_id":"cf43d98c-48d8-bebc-6c99-10f0eb75fadd","fake":false,"type":"class","name":"section_anim","namespace":"","comb":"","styleLess":"flex-direction: column; justify-content: center; background-color: hsla(0, 0.00%, 0.00%, 1.00);","variants":{},"children":[],"createdBy":"54441c96b0981db6504faf03","origin":null,"selector":null},{"_id":"845d91f0-9211-9a2b-8666-d6af0de47fc3","fake":false,"type":"class","name":"anim_wrap","namespace":"","comb":"","styleLess":"display: flex; height: 100vh; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"5e48944e08eef8b4ca4c7109","origin":null,"selector":null},{"_id":"845d91f0-9211-9a2b-8666-d6af0de47fc4","fake":false,"type":"class","name":"gooey-wrapper","namespace":"","comb":"","styleLess":"position: relative; width: 100%; max-width: 600px; justify-content: center; align-items: center; text-align: center; filter: @raw<|url(#gooey)|>;","variants":{"medium":{"styleLess":"max-width: 95vw; filter: @raw<|url(#gooey-mobile)|>;"}},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"845d91f0-9211-9a2b-8666-d6af0de47fc5","fake":false,"type":"class","name":"morph-text","namespace":"","comb":"","styleLess":"position: absolute; width: 100%; opacity: 0; transition-property: filter, opacity; transition-duration: 1000ms, 1000ms; transition-timing-function: ease, ease; font-size: 5rem; font-weight: 700;","variants":{"small":{"styleLess":"left: 50%; width: auto; transform: translate(-50%, 0px); font-size: 3rem;"}},"children":["845d91f0-9211-9a2b-8666-d6af0de47fc6","845d91f0-9211-9a2b-8666-d6af0de47fc7"],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"845d91f0-9211-9a2b-8666-d6af0de47fc6","fake":false,"type":"class","name":"show","namespace":"","comb":"&","styleLess":"opacity: 1; filter: blur(0px);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null},{"_id":"845d91f0-9211-9a2b-8666-d6af0de47fc7","fake":false,"type":"class","name":"hide","namespace":"","comb":"&","styleLess":"opacity: 0; filter: blur(0px);","variants":{},"children":[],"createdBy":"67765e8148a3409ad4293e69","origin":null,"selector":null}],"assets":[],"ix1":[],"ix2":{"interactions":[],"events":[],"actionLists":[]}},"meta":{"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0,"unlinkedSymbolCount":1,"codeComponentsRemovedCount":0}}
For the best experience, please view this content on a desktop device.