HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Jan 21 2025 11:08:42 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="clearmotionconcept.webflow.io" data-wf-page="678a593c1721381168ac6cc3" data-wf-site="678785193fff59799ae65906"><head><meta charset="utf-8"/><title>Home</title><meta content="Home" property="og:title"/><meta content="Home" property="twitter:title"/><meta content="width=device-width, initial-scale=1" name="viewport"/><meta content="Webflow" name="generator"/><link href="https://cdn.prod.website-files.com/678785193fff59799ae65906/css/clearmotionconcept.webflow.691b6ef7c.min.css" rel="stylesheet" type="text/css"/><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/678785193fff59799ae65906/6787851a3fff59799ae65c73_fav-icon.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/678785193fff59799ae65906/6787851a3fff59799ae65c74_web-clip.png" rel="apple-touch-icon"/></head><body><div class="page-wrapper"><div class="global-styles w-embed"><style>
/* Make text look crisper and more legible in all browsers */
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
/* Focus state style for keyboard navigation for the focusable elements */
*[tabindex]:focus-visible,
input[type="file"]:focus-visible {
outline: 0.125rem solid #4d65ff;
outline-offset: 0.125rem;
}
/* Set color style to inherit */
.inherit-color * {
color: inherit;
}
/* Get rid of top margin on first element in any rich text element */
.w-richtext > :not(div):first-child, .w-richtext > div:first-child > :first-child {
margin-top: 0 !important;
}
/* Get rid of bottom margin on last element in any rich text element */
.w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child {
margin-bottom: 0 !important;
}
/* Make sure containers never lose their center alignment */
.container-medium,.container-small, .container-large {
margin-right: auto !important;
margin-left: auto !important;
}
/*
Make the following elements inherit typography styles from the parent and not have hardcoded values.
Important: You will not be able to style for example "All Links" in Designer with this CSS applied.
Uncomment this CSS to use it in the project. Leave this message for future hand-off.
*/
/*
a,
.w-input,
.w-select,
.w-tab-link,
.w-nav-link,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
color: inherit;
text-decoration: inherit;
font-size: inherit;
}
*/
/* Apply "..." after 3 lines of text */
.text-style-3lines {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
/* Apply "..." after 2 lines of text */
.text-style-2lines {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
/* These classes are never overwritten */
.hide {
display: none !important;
}
@media screen and (max-width: 991px) {
.hide, .hide-tablet {
display: none !important;
}
}
@media screen and (max-width: 767px) {
.hide-mobile-landscape{
display: none !important;
}
}
@media screen and (max-width: 479px) {
.hide-mobile{
display: none !important;
}
}
.margin-0 {
margin: 0rem !important;
}
.padding-0 {
padding: 0rem !important;
}
.spacing-clean {
padding: 0rem !important;
margin: 0rem !important;
}
.margin-top {
margin-right: 0rem !important;
margin-bottom: 0rem !important;
margin-left: 0rem !important;
}
.padding-top {
padding-right: 0rem !important;
padding-bottom: 0rem !important;
padding-left: 0rem !important;
}
.margin-right {
margin-top: 0rem !important;
margin-bottom: 0rem !important;
margin-left: 0rem !important;
}
.padding-right {
padding-top: 0rem !important;
padding-bottom: 0rem !important;
padding-left: 0rem !important;
}
.margin-bottom {
margin-top: 0rem !important;
margin-right: 0rem !important;
margin-left: 0rem !important;
}
.padding-bottom {
padding-top: 0rem !important;
padding-right: 0rem !important;
padding-left: 0rem !important;
}
.margin-left {
margin-top: 0rem !important;
margin-right: 0rem !important;
margin-bottom: 0rem !important;
}
.padding-left {
padding-top: 0rem !important;
padding-right: 0rem !important;
padding-bottom: 0rem !important;
}
.margin-horizontal {
margin-top: 0rem !important;
margin-bottom: 0rem !important;
}
.padding-horizontal {
padding-top: 0rem !important;
padding-bottom: 0rem !important;
}
.margin-vertical {
margin-right: 0rem !important;
margin-left: 0rem !important;
}
.padding-vertical {
padding-right: 0rem !important;
padding-left: 0rem !important;
}
/*Ousider Edits: */
.w-nav-overlay {
overflow: visible;
}
/* Button Outline */
.button::before, .button_content::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 5rem;
border: 2px solid transparent;
background: linear-gradient(45deg, #3bc4db, #50debf) border-box;
-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: destination-out;
mask-composite: exclude;
}
/* Nav Backdrop Gradient*/
.nav_backdrop {
-webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 25%);
mask-image: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 25%);
}
</style></div><div data-w-id="7b34ed54-2b60-76f2-280c-ad0dfa79f1b1" data-animation="over-right" data-collapse="all" data-duration="400" data-easing="ease" data-easing2="ease" role="banner" class="nav w-nav"><div class="nav_container"><a href="#" class="nav_brand w-nav-brand"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6787922e8dc2f33fda7abef0_brand_logo.svg" loading="lazy" alt="" class="nav_brand-logo"/></a><nav role="navigation" class="nav_menu-wrapper w-nav-menu"><ul role="list" class="nav_list w-list-unstyled"><li class="nav_list-item"><a href="#" class="nav_link w-nav-link">Hardware</a></li><li class="nav_list-item"><a href="#" class="nav_link w-nav-link">Software</a></li><li class="nav_list-item"><a href="#" class="nav_link w-nav-link">Our Journey</a></li><li class="nav_list-item"><a href="/investors" class="nav_link w-nav-link">Investors</a><link rel="prefetch" href="/investors"/></li><li class="nav_list-item"><a href="#" class="nav_link w-nav-link">Careers</a></li><li class="nav_list-item"><a href="#" class="nav_link w-nav-link">Press</a></li></ul></nav><div class="nav_right-side"><div class="nav_menu-button w-nav-button"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678927d143e5310d9402489c_ux_nav-burger-icon.svg" loading="lazy" alt="" class="nav_burger-icon-open"/><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678927d17eb8e7c253f43bd8_ux_nav-burger-icon-close.svg" loading="lazy" alt="" class="nav_burger-icon-close"/></div></div></div><div class="nav_backdrop"></div></div><main class="main-wrapper"><section data-w-id="a3f0cf0c-d869-d351-5e64-01659af5df2b" class="hero_section-positioner"><div class="hero_title-wrapper"><h1 class="h1-home"><span class="hero-gradient">The future of the driving experience is here.</span><br/>Journey beyond.</h1></div><div class="home-hero_video"><div data-poster-url="https://cdn.prod.website-files.com/678785193fff59799ae65906%2F678e43c619bcf238faa27a19_cmcar_new-poster-00001.jpg" data-video-urls="https://cdn.prod.website-files.com/678785193fff59799ae65906%2F678e43c619bcf238faa27a19_cmcar_new-transcode.mp4,https://cdn.prod.website-files.com/678785193fff59799ae65906%2F678e43c619bcf238faa27a19_cmcar_new-transcode.webm" data-autoplay="true" data-loop="true" data-wf-ignore="true" class="background-video w-background-video w-background-video-atom"><video id="25d04202-e366-94b6-66d8-52763526a399-video" autoplay="" loop="" style="background-image:url("https://cdn.prod.website-files.com/678785193fff59799ae65906%2F678e43c619bcf238faa27a19_cmcar_new-poster-00001.jpg")" muted="" playsinline="" data-wf-ignore="true" data-object-fit="cover"><source src="https://cdn.prod.website-files.com/678785193fff59799ae65906%2F678e43c619bcf238faa27a19_cmcar_new-transcode.mp4" data-wf-ignore="true"/><source src="https://cdn.prod.website-files.com/678785193fff59799ae65906%2F678e43c619bcf238faa27a19_cmcar_new-transcode.webm" data-wf-ignore="true"/></video><noscript><style>
[data-wf-bgvideo-fallback-img] {
display: none;
}
@media (prefers-reduced-motion: reduce) {
[data-wf-bgvideo-fallback-img] {
position: absolute;
z-index: -100;
display: inline-block;
height: 100%;
width: 100%;
object-fit: cover;
}
}</style><img data-wf-bgvideo-fallback-img="true" src="https://cdn.prod.website-files.com/678785193fff59799ae65906%2F678e43c619bcf238faa27a19_cmcar_new-poster-00001.jpg" alt=""/></noscript><div aria-live="polite"><button type="button" data-w-bg-video-control="true" aria-controls="25d04202-e366-94b6-66d8-52763526a399-video" class="w-backgroundvideo-backgroundvideoplaypausebutton hide w-background-video--control"><span><img src="https://cdn.prod.website-files.com/6022af993a6b2191db3ed10c/628299f8aa233b83918e24fd_Pause.svg" loading="lazy" alt="Pause video"/></span><span hidden=""><img loading="lazy" alt="Play video" src="https://cdn.prod.website-files.com/6022af993a6b2191db3ed10c/628298b20ae0236682d4b87f_Play-24.svg"/></span></button></div></div></div><div class="section_home-hero"><div class="padding-global padding-section-large z-index-2"><section class="container-large"><div class="section_home-hero-content"><h1 class="h1-home hide"><span class="hero-gradient">The future of the driving experience is here.</span><br/>Journey beyond.</h1></div></section></div><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788ebf54e0bf884b5ce8ce7_CM-BG-1.jpg" loading="lazy" data-w-id="0a73c3e9-1cc2-0316-4245-91454dbfcecc" sizes="100vw" alt="" srcset="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788ebf54e0bf884b5ce8ce7_CM-BG-1-p-500.jpg 500w, https://cdn.prod.website-files.com/678785193fff59799ae65906/6788ebf54e0bf884b5ce8ce7_CM-BG-1-p-800.jpg 800w, https://cdn.prod.website-files.com/678785193fff59799ae65906/6788ebf54e0bf884b5ce8ce7_CM-BG-1-p-1080.jpg 1080w, https://cdn.prod.website-files.com/678785193fff59799ae65906/6788ebf54e0bf884b5ce8ce7_CM-BG-1.jpg 1600w" class="image_bg_first-home"/></div></section><section class="section_hardware"><div class="padding-global padding-section-medium"><section class="container-large"><div class="split-section"><div class="split-item"><div class="max-width-80"><div class="pre-header-text">Hardware</div><h2 class="home_h2">Lightning fast<br/>electrohydraulic<br/>suspension</h2><p class="split-paragraph">Best-in-class suspension that gives you to the ultimate cockpit experience.</p><a href="#" class="button_wrap w-inline-block"><div data-wf--button-style--style="primary" class="button_content"><div data-wf--button-layout--layout="reversed" class="button_layout w-variant-635f0b03-5a91-bc3a-4284-aa5f12755f3e"><div class="button_text">Explore hardware</div><div class="button_icon"><div class="button_slot"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678a4f0e54696d3c2dcce2a9_ux_arrow-right.svg" loading="lazy" alt="" class="icon-right"/></div></div></div></div></a></div></div><div class="split-item"><div data-w-id="3b25a194-5a40-bb8f-e840-26ad01406f4e" class="sliding-image-wrap"><div><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678a6b742fd5bc75c9d19042_image_home-round1.png" loading="lazy" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 991px) 92vw, 44vw" srcset="https://cdn.prod.website-files.com/678785193fff59799ae65906/678a6b742fd5bc75c9d19042_image_home-round1-p-500.png 500w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678a6b742fd5bc75c9d19042_image_home-round1-p-800.png 800w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678a6b742fd5bc75c9d19042_image_home-round1-p-1080.png 1080w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678a6b742fd5bc75c9d19042_image_home-round1.png 1144w" alt="" class="split-image"/></div></div></div></div></section></div></section><section class="section-benefits z-index-2"><div class="padding-global"><section class="container-large"><div class="already-setup-to-go_content-wrapper"><div id="w-node-e291c089-36a7-33af-b76b-d76b314cd593-68ac6cc3" class="card-with-icon"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788d7bad895e29dcfe219ee_CM-Icon-Cycle.svg" loading="lazy" alt="" class="icon"/><div class="card-with-icon-title">One step ahead</div><p>Our proactive system is always scanning the road ahead and reacts before you can</p></div><div id="w-node-e291c089-36a7-33af-b76b-d76b314cd599-68ac6cc3" class="card-with-icon"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788d7ba48b79642ebd6b407_CM-Icon-Safety.svg" loading="lazy" alt="" class="icon"/><div class="card-with-icon-title">Keeps you safe</div><p>Our suspension speaks to the other safety systems in your car to keep you safe and sound</p></div><div id="w-node-e291c089-36a7-33af-b76b-d76b314cd59f-68ac6cc3" class="card-with-icon"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788d7ba87f3d9bfab75a38b_CM-Icon-Comfort.svg" loading="lazy" alt="" class="icon"/><div class="card-with-icon-title">Comfort of home</div><p>In Glide mode, passengers can work, read, and relax in the stillness of home</p></div><div id="w-node-e291c089-36a7-33af-b76b-d76b314cd5a5-68ac6cc3" class="card-with-icon"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788d7ba3c89b2985a51a9f3_CM-Icon-Modes.svg" loading="lazy" alt="" class="icon"/><div class="card-with-icon-title">A mode for everyone</div><p>Whether you want a smooth ride, better handling, or a custom experience, you pick the ride</p></div></div></section></div></section><section class="section_video z-index-2"><div class="padding-global padding-section-large z-index-2"><section class="container-large"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678e483d7b252f418a491527_cm_new_girl.jpg" loading="lazy" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 991px) 92vw, 93vw" srcset="https://cdn.prod.website-files.com/678785193fff59799ae65906/678e483d7b252f418a491527_cm_new_girl-p-500.jpg 500w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678e483d7b252f418a491527_cm_new_girl-p-800.jpg 800w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678e483d7b252f418a491527_cm_new_girl-p-1080.jpg 1080w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678e483d7b252f418a491527_cm_new_girl-p-1600.jpg 1600w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678e483d7b252f418a491527_cm_new_girl.jpg 1782w" alt="" class="image_video-mockup"/></section></div></section><section class="section_hardware"><div class="padding-global padding-section-medium z-index-2"><section class="container-large"><div class="split-section reverse"><div class="split-item"><div class="max-width-80"><div class="pre-header-text">Software</div><h2 class="home_h2">Powered by crowdsourced road fingerprinting</h2><p class="split-paragraph">Hugely powerful, cloud based system that accurately maps the roads of the world</p><a href="#" class="button_wrap w-inline-block"><div data-wf--button-style--style="primary" class="button_content"><div data-wf--button-layout--layout="reversed" class="button_layout w-variant-635f0b03-5a91-bc3a-4284-aa5f12755f3e"><div class="button_text">Explore software</div><div class="button_icon"><div class="button_slot"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678a4f0e54696d3c2dcce2a9_ux_arrow-right.svg" loading="lazy" alt="" class="icon-right"/></div></div></div></div></a></div></div><div class="split-item"><div data-w-id="b553a861-55dc-e6c6-f045-7935d92777b0" class="sliding-image-wrap"><div><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678a6b74b5f8f7bbb3d7f246_image_home-round2.png" loading="lazy" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 991px) 92vw, 44vw" srcset="https://cdn.prod.website-files.com/678785193fff59799ae65906/678a6b74b5f8f7bbb3d7f246_image_home-round2-p-500.png 500w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678a6b74b5f8f7bbb3d7f246_image_home-round2-p-800.png 800w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678a6b74b5f8f7bbb3d7f246_image_home-round2-p-1080.png 1080w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678a6b74b5f8f7bbb3d7f246_image_home-round2.png 1144w" alt="" class="split-image"/></div></div></div></div></section></div><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788ebf501073bf3e28770f0_CM-BG-2.jpg" loading="lazy" data-w-id="33020b4e-8af8-9ef3-5349-a84a1550464d" sizes="100vw" alt="" srcset="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788ebf501073bf3e28770f0_CM-BG-2-p-500.jpg 500w, https://cdn.prod.website-files.com/678785193fff59799ae65906/6788ebf501073bf3e28770f0_CM-BG-2-p-800.jpg 800w, https://cdn.prod.website-files.com/678785193fff59799ae65906/6788ebf501073bf3e28770f0_CM-BG-2-p-1080.jpg 1080w, https://cdn.prod.website-files.com/678785193fff59799ae65906/6788ebf501073bf3e28770f0_CM-BG-2.jpg 1600w" class="bg_mid-home"/></section><section class="section-benefits z-index-2"><div class="padding-global"><section class="container-large"><div class="already-setup-to-go_content-wrapper"><div id="w-node-b9501abe-d07f-0a62-df42-cbe615179da2-68ac6cc3" class="card-with-icon"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788d7bad895e29dcfe219ee_CM-Icon-Cycle.svg" loading="lazy" alt="" class="icon"/><div class="card-with-icon-title">Always learning</div><p>Our fingerprinting tech is continually being informed and updated by other road users</p></div><div id="w-node-b9501abe-d07f-0a62-df42-cbe615179da8-68ac6cc3" class="card-with-icon"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788d7ba93e826921e0f2a24_CM-Icon-Accuracy.svg" loading="lazy" alt="" class="icon"/><div class="card-with-icon-title">Better than GPS</div><p>Our measurements are more accurate than GPS, meaning every tiny pothole is mapped</p></div><div id="w-node-b9501abe-d07f-0a62-df42-cbe615179dae-68ac6cc3" class="card-with-icon"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788d7ba450deeafb05b3d41_CM-Icon-Decisions.svg" loading="lazy" alt="" class="icon"/><div class="card-with-icon-title">Quicker decisions</div><p>The system informs your car’s subsystems to make the right decision at the right time</p></div><div id="w-node-b9501abe-d07f-0a62-df42-cbe615179db4-68ac6cc3" class="card-with-icon"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/6788d7ba3c89b2985a51a9f3_CM-Icon-Modes.svg" loading="lazy" alt="" class="icon"/><div class="card-with-icon-title">Together or separate</div><p>Our software can be bought together, or separately to work with other suspension systems</p></div></div></section></div></section><section class="section_video"><div class="padding-global padding-section-large z-index-2"><section class="container-large"><div class="video-wrapper"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678cc033e52f8ef00f717d94_image_video2.jpg" loading="lazy" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 991px) 92vw, 93vw" srcset="https://cdn.prod.website-files.com/678785193fff59799ae65906/678cc033e52f8ef00f717d94_image_video2-p-500.jpg 500w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678cc033e52f8ef00f717d94_image_video2-p-800.jpg 800w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678cc033e52f8ef00f717d94_image_video2-p-1080.jpg 1080w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678cc033e52f8ef00f717d94_image_video2-p-1600.jpg 1600w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678cc033e52f8ef00f717d94_image_video2.jpg 1782w" alt="" class="image_video-mockup"/><a href="/investors" class="button_wrap w-inline-block"><div data-wf--button-style--style="primary" class="button_content"><div data-wf--button-layout--layout="reversed" class="button_layout w-variant-635f0b03-5a91-bc3a-4284-aa5f12755f3e"><div class="button_text">Explore technology</div><div class="button_icon"><div class="button_slot"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678a4f0e54696d3c2dcce2a9_ux_arrow-right.svg" loading="lazy" alt="" class="icon-right"/></div></div></div></div></a><link rel="prefetch" href="/investors"/></div></section></div></section><section class="section_investment-opportunities z-index-2"><div class="padding-global padding-section-medium"><section class="container-large"><div class="investment-opportunities-wrap"><div class="investment_content-wrap"><p class="heading-style-h1">Investment opportunities</p><p class="text-size-large">Partner with ClearMotion and watch your investment grow with our company’s success.</p><div class="two-button-wrapper"><a href="/investors" class="button_wrap w-inline-block"><div data-wf--button-style--style="primary" class="button_content"><div data-wf--button-layout--layout="reversed" class="button_layout w-variant-635f0b03-5a91-bc3a-4284-aa5f12755f3e"><div class="button_text">Investor portal</div><div class="button_icon"><div class="button_slot"><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678a4f0e54696d3c2dcce2a9_ux_arrow-right.svg" loading="lazy" alt="" class="icon-right"/></div></div></div></div></a><link rel="prefetch" href="/investors"/></div></div><div class="investment_background"></div></div></section></div></section></main><footer class="footer"><div class="padding-global padding-section-medium z-index-2"><div class="w-layout-blockcontainer container-large w-container"><div class="footer_link-wrapper"><ul role="list" class="footer_links-list"><li class="footer_link-item"><a href="/" aria-current="page" class="footer_text-link w--current">Hardware</a></li><li class="footer_link-item"><a href="#" class="footer_text-link">Software</a></li><li class="footer_link-item"><a href="#" class="footer_text-link">Our Journey</a></li><li class="footer_link-item"><a href="/investors" class="footer_text-link">Investors</a></li><li class="footer_link-item"><a href="#" class="footer_text-link">Careers</a></li><li class="footer_link-item"><a href="#" class="footer_text-link">Press</a></li></ul><ul role="list" class="footer_links-list"><li class="footer_link-item"><a href="#" class="footer_social-link"><strong></strong></a></li><li class="footer_link-item"><a href="#" class="footer_social-link"></a></li><li class="footer_link-item"><a href="#" class="footer_social-link"></a></li><li class="footer_link-item"><a href="#" class="footer_social-link"></a></li></ul><div class="w-embed"><i class="fa-brands fa-x-twitter"></i></div></div></div></div><img src="https://cdn.prod.website-files.com/678785193fff59799ae65906/678a75036efb9e90db81a8c2_CM-BG-3-cropped.jpg" loading="eager" data-w-id="347332fc-b7e7-8373-8f1c-e5d079f6c2df" sizes="100vw" alt="" srcset="https://cdn.prod.website-files.com/678785193fff59799ae65906/678a75036efb9e90db81a8c2_CM-BG-3-cropped-p-500.jpg 500w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678a75036efb9e90db81a8c2_CM-BG-3-cropped-p-800.jpg 800w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678a75036efb9e90db81a8c2_CM-BG-3-cropped-p-1080.jpg 1080w, https://cdn.prod.website-files.com/678785193fff59799ae65906/678a75036efb9e90db81a8c2_CM-BG-3-cropped.jpg 1600w" class="footer-background"/></footer></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=678785193fff59799ae65906" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/678785193fff59799ae65906/js/webflow.cd5d3146dfd91c0768296abd57f0ac78.js" type="text/javascript"></script><script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/ScrollTrigger.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/ScrollToPlugin.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/TextPlugin.min.js"></script>
<script src="https://ts3djk.csb.app/gsap.js" type="text/javascript"></script>
</body></html>
gsap.registerPlugin(ScrollTrigger);
const iconHolders = gsap.utils.toArray(".already-setup-to-go_content-wrapper");
iconHolders.forEach((header) => {
const icons = header.querySelectorAll(".card-with-icon"); // Select only the icons within this wrapper
gsap.from(icons, {
scrollTrigger: {
trigger: header,
start: "top 75%",
end: "bottom 25%",
toggleActions: "play none none reverse",
markers: true,
},
y: 160,
opacity: 0,
duration: 0.6,
stagger: 0.1,
});
});
Also see: Tab Triggers