:root {
--primary: #33E8A6;
--white: #FFFFFF;
--black: #000000;
--grey-900: #181818;
--grey-800: #424242;
--grey-600: #757575;
--grey-300: #E0E0E0;
--grey-100: #F5F5F5;
--transparent-grey-100: rgba(245,245,245, 0.15);
--light-background: var(--white);
--light-text-color: var(--black);
--dark-background: var(--grey-900);
--dark-text-color: var(--grey-100);
}
.landing-page {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
font-family: "Inter", sans-serif;
background-color: var(--light-background);
color: var(--light-text-color);
width: 100%;
}
.landing-page label {
color: var(--light-text-color);
}
.landing-page .bold {
font-weight: 700;
}
.landing-page .header {
background-image: linear-gradient(
rgba(0, 0, 0, 0.3),
rgba(0, 0, 0, 0.3)
), url(https://run-motion.com/wp-content/uploads/2025/05/run-motion-V1-34-fond-scaled-1-2.webp);;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
min-height: 700px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.landing-page .header .title-container {
max-width: 90%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
top: 150px;
}
.landing-page .store-div {
display: flex;
flex-wrap: wrap;
}
.landing-page .store-div img{
max-width: 180px;
padding: 8px;
}
.landing-page .first-group-phone {
position: relative;
top: 200px;
max-width: min(600px, 90%);
}
.landing-page .lame {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100vw;
padding: 48px max(16px, 15%);
}
.landing-page .lame-1 {
margin-top: 200px;
}
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5
{
color: var(--light-text-color);
padding: 4px 0px;
}
.landing-page h1 {
font-size: 3em;
font-weight: 900;
text-transform: uppercase;
text-align: center;
margin: 4px 0;
line-height: 48px;
}
.landing-page h2 {
font-size: 2.5em;
text-transform: uppercase;
text-align: center;
margin: 4px 0;
line-height: 48px;
font-weight: 900;
}
.landing-page h3 {
font-size: 1.7rem;
font-weight: 900;
text-transform: uppercase;
margin: 4px 0px;
font-weight: 700;
}
.landing-page h4 {
font-size: 1.5em;
text-transform: uppercase;
text-align: center;
font-weight: 700;
}
.landing-page .title-container h1,
.landing-page .title-container h3 {
color: var(--dark-text-color);
text-align: center;
margin-bottom: 16px;
}
.landing-page .highlight-underline {
text-decoration: none; position: relative; }
.landing-page .highlight-underline.visible {
opacity: 1; }
.landing-page .highlight-underline::after {
content: '';
position: absolute;
bottom: -5px;
left: -5px;
right: -5px;
width: 0;
height: 5px;
background-color: var(--primary); transition: width 0.6s ease, left 0.6s ease;
}
.landing-page .stars-div {
padding-bottom: 8px;
}
.landing-page .stars-div svg {
height: 16px;
color: var(--primary);
}
.landing-page .highlight-underline.visible::after {
width: calc(100% + 10px); }
.landing-page .grid-2-2 {
display: grid;
grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 64px;
justify-items: stretch;
}
.landing-page .grid-item {
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
.landing-page .grid-item label{
font-size: 1.3em;
text-transform: uppercase;
text-align: center;
}
.landing-page .intense {
font-size: 3em !important;
font-weight: 900;
text-transform: uppercase;
}
.landing-page .semi-intense {
font-size: 2em !important;
font-weight: 700;
text-transform: uppercase;
}
.landing-page .primary-color {
color: var(--primary);
}
.landing-page .chrono-icon {
height: 50px;
width: auto;
}
.landing-page .black-background {
background-color: var(--black);
color: var(--dark-text-color);
}
.landing-page .green-background {
background-color: var(--primary);
color: var(--light-text-color);
}
.landing-page .green-background .flex-row {
justify-content: center;
}
@keyframes slide {
from {
transform: translateX(0);
}
to {
transform: translateX(-100%);
}
}
.landing-page .lame-2 {
margin-top: 24px;
}
.landing-page .lame-2 h2 {
color: var(--white);
max-width: 90vw;
}
.landing-page .logos {
overflow: hidden;
padding: 16px 0;
white-space: nowrap;
position: relative;
width: 90%;
}
.landing-page .logos:before,
.landing-page .logos:after {
position: absolute;
top: 0;
width: 200px;
height: 100%;
content: "";
z-index: 2;
}
.landing-page .logos:before {
left: 0;
}
.landing-page .logos:after {
right: 0;
}
.landing-page .logos-slide {
display: inline-block;
animation: 35s slide infinite linear;
}
.landing-page .logos-slide img {
height: 120px;
margin: 0 40px;
}
.landing-page .lame-3 h2 {
margin-top: 8px;
margin-bottom: 8px;
}
.landing-page .grid-3-1 {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(1, 1fr);
gap: 24px;
justify-items: stretch;
padding-top: 16px;
}
.landing-page .grid-2-1 {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(1, 1fr);
gap: 24px;
align-items: center;
}
.landing-page .flex-column {
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
.landing-page .lame-3 img {
height: 65px;
}
.landing-page .lame-3 .flex-column {
margin: 8px 16px;
}
.landing-page .lame-3 p {
text-align: center;
}
.landing-page .objectives-flex {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.landing-page .objective {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
align-self: baseline;
min-width: 90px;
width: calc(25% - 32px - 1px);
margin: 8px;
text-decoration: none;
color: var(--light-text-color);
}
.landing-page .objective img{
width: 90%;
max-width: 150px;
}
.rmc-button {
background-color: var(--primary);
color: var(--grey-900);
font-weight: 700;
border-radius: 100px;
border: none;
padding: 12px 24px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
display: inline-block;
font-size: 1.1em;
margin: 4px 2px;
}
.rmc-button:hover{
color: var(--white);
}
.rmc-white-button {
background-color: var(--white);
color: var(--black);
font-weight: 700;
border-radius: 100px;
border: 2px solid var(--black);
padding: 12px 24px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
display: inline-block;
font-size: 1.1em;
margin: 4px 2px;
}
.landing-page .step-img {
max-width: 100px;
max-height: 75px;
height: auto;
}
.landing-page .flex {
flex: 1;
}
.landing-page .feature-img {
max-width: 100px;
max-height: 48px;
height: auto;
}
.landing-page .line-60 {
margin: 16px 0px;
border: 1px solid var(--white);
width: 60vw;
height: 0px;
}
.landing-page .underline {
text-decoration: underline;
text-decoration-color: var(--primary);
text-underline-offset: 4px;
text-decoration-thickness: 3px;
}
.landing-page .flex-row {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.landing-page .margin-16 {
margin: 16px;
}
.landing-page .parameter-div {
align-self: baseline;
flex: 1;
}
.landing-page h4 {
font-size: 1.1em;
text-transform: uppercase;
font-weight: 700;
text-align: center;
}
.landing-page .center {
text-align: center;
}
.landing-page .elevation-curves {
background-image: linear-gradient(
rgba(0, 0, 0, 0.7),
rgba(0, 0, 0, 0.7)
), url(https://run-motion.com/wp-content/themes/twentyseventeen/../../../ressources/LP2025/curve-levels.svg);;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
color: var(--white);
background-color: var(--black);
}
.landing-page .elevation-curves h2,
.landing-page .elevation-curves h3,
.landing-page .elevation-curves h4 {
color: var(--dark-text-color);
}
.landing-page .key-features {
align-items: flex-start;
}
.landing-page .key-features-svg {
margin-right: 16px;
}
.landing-page .providers {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.landing-page .providers div {
padding: 16px 32px;
display: flex;
justify-content: center;
align-items: center;
}
.landing-page .providers img {
max-width: 125px;
max-height: 50px;
}
.landing-page .grey-100-background {
background-color: var(--grey-100);
color: var(--light-text-color);
}
.landing-page .creator-container {
display: flex;
flex-direction: row;
justify-self: center;
padding: 16px 0;
}
.landing-page .creator-container img{
height: 200px;
width: 200px;
border-radius: 100%;
}
.landing-page .creator-container .creator-info {
display: flex;
flex-direction: column;
}
.landing-page .sub-title-creator {
font-weight: 700;
text-transform: uppercase;
margin: 0;
color: var(--grey-600);
font-size: 1.2em;
}
.landing-page .creator-tags label {
border: 2px solid var(--grey-900);
color: var(--light-text-color);
height: 32px;
line-height: 24px;
display: inline-block;
margin: 4px;
padding: 2px 8px;
font-weight: 700;
border-radius: 8px;
font-size: 0.8em;
}
.landing-page .lame-6 .flex-row {
padding: 8px 0px;
}
.landing-page .lame-6 p {
margin: 0;
}
.landing-page .lame-6 h2 {
margin-bottom: 24px;
}
.landing-page .lame-9 {
padding-bottom: 0px;
}
.landing-page .lame-10 img {
width: 80%;
max-width: 600px;
min-width: 300px;
}
.landing-page .lame-10 h2, 
.landing-page .lame-10 h3 {
color: var(--light-text-color) !important;
}
.landing-page .lame-10 h2 {
font-weight: 900;
}
.landing-page .lame-10 h3 {
font-size: 1.5em;
text-transform: uppercase;
}
.landing-page .lame-10 label {
color: var(--light-text-color);
text-align: center;
line-height: 40px;
}
.landing-page .lame-10 .white-underline {
text-decoration:  double underline;
color: var(--light-text-color);
text-decoration-color: var(--white) !important;
text-overline-offset: 6px;
text-underline-offset: 6px;
text-decoration-thickness: 5px;
padding: 16px 8px;
}
.no-border {
border: none;
}
.landing-page .lame-10 p {
color: var(--black);
}
.landing-page .community {
width: 80%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.landing-page .community h2{
color: var(--dark-text-color);
}
.landing-page .community img{
padding: 24px 0px;
max-width: min(900px, 100%);
}
.landing-page .grid-reverse {
grid-auto-flow: dense;
}
.landing-page .show-mobile {
visibility: hidden;
}
.landing-page .hide-mobile {
visibility: visible;
}
.landing-page .try {
text-align: center;
color: var(--black);
}
.landing-page .try span {
color: var(--black);
text-decoration: underline;
text-decoration-color: var(--white);
text-underline-offset: 4px;
text-decoration-thickness: 3px;
}
.landing-page .lame-11 {
padding-top: 24px;
}
.landing-page .plans-container {
display: flex;
flex-direction: row;
gap: 20px;
padding-bottom: 24px;
align-items: center;
justify-content: center;
}
.landing-page .plan {
background-color: white;
border-radius: 15px;
padding: 20px;
text-align: center;
flex: 1 1 250px;
max-width: 300px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
position: relative;
margin-top: 60px;
height: 730px;
}
.landing-page .plan img {
width: 100%;
max-height: 250px;
object-fit: contain;
margin-bottom: 10px;
}
.landing-page .plan h2 {
margin: 10px 0;
text-transform: uppercase;
color: var(--light-text-color) !important;
}
.landing-page .plan p {
margin: 5px 0;
color: var(--grey-600);
}
.landing-page .price {
font-size: 3.5em;
font-weight: 900;
margin: 15px 0;
color: var(--light-text-color);
}
.landing-page .plan .note {
color: var(--grey-600);
}
.landing-page .one-year {
border: 3px solid var(--primary);
height: 850px;
}
.landing-page .one-year img{
position: relative;
top: -70px;
max-height: 450px;
}
.landing-page .one-year .flex-column {
position: relative;
top: -70px;
}
.landing-page .table-container {
padding: 16px 32px;
border-radius: 24px;
background-color: var(--white);
color: var(--light-text-color);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
margin-bottom: 24px;
}
.landing-page .table-container .div-text {
color: var(--light-text-color);
}
.landing-page .table-container h2 {
color: var(--light-text-color) !important;
padding-bottom: 24px;
}
.landing-page .table {
width: 100%;
margin: 0 auto;
border-collapse: collapse;
}
.landing-page .table th, .landing-page .table td {
padding: 8px;
text-align: left;
vertical-align: middle;
}
.landing-page .table th {
background-color: var(--light-background);
font-weight: bold;
font-size: 1.3em;
text-transform: uppercase;
text-align: center;
}
.landing-page .table td {
background-color: var(--light-background);
}
.landing-page .mobile-free-premium h3{
margin-bottom: 24px;
}
.landing-page .mobile-free-premium div{
max-width: 90%;
margin: 4px 0;
}
.landing-page .dot {
width: 10px;
height: 10px;
border-radius: 50%;
display: inline-block;
}
.landing-page .dot.green {
background-color: var(--primary);
}
.landing-page .dot.gray {
background-color: var(--grey-600);
}
.landing-page .table td:last-child,
.landing-page .table td:nth-child(2) {
text-align: center;
}
.landing-page .table td:nth-child(1) {
display: flex;
width: 95%;
}
.landing-page .table .div-text {
padding-left: 8px;
}
.landing-page .table th:nth-child(1) {
display: flex;
width: 95%;
}
.landing-page .lame-users h2 {
padding: 8px 0px;
}
.landing-page .user-opinions {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.landing-page .user-div {
justify-content: flex-start;
margin: 8px 8px;
min-width: 200px;
max-width: 300px;
background: var(--grey-100);
border-radius: 16px;
padding: 8px 16px;
}
.landing-page .user-div label {
margin: 0 0 8px 0;
text-align: center;
}
.landing-page .user-div img {
width: 200px;
}
.landing-page .user-div p {
font-style: italic;
}
.landing-page .user-div .user-name {
font-weight: 700;
font-size: 1.2em;
margin-top: 16px;
}
.landing-page .lp-faq-left {
align-items: flex-start;
}
.landing-page .lp-faq-left h2 {
text-align: left;
}
.landing-page .accordion5, .landing-page .panel5 {
padding: 16px;
margin: auto;
width: 90%;
text-align: left;
}
.landing-page .accordion5 {
padding: 16px;
cursor: pointer;
outline: 0;
transition: .4s;
}
.landing-page .panel5 {
padding-top: 0.5em;
max-height: 0;
overflow: hidden;
transition: .4s ease-in-out;
opacity: 0;
}
.landing-page h4.accordion5.active, .landing-page h4.accordion5:hover{
background-color:var(--transparent-grey-100);
}
.landing-page h4.accordion5:before {
content: '+';
color: var(--primary);
float: left;
margin: auto 1em;
font-size: 30px;
line-height: 30px;
}
.landing-page h4.accordion5.active:before {
content: "-"
}
.landing-page div.panel5.show {
opacity: 1;
max-height: 800px;
padding-bottom: 0.5em;
}
.landing-page .advices {
flex-wrap: wrap !important;
justify-content: space-evenly;
padding: 16px;
width: 100%;
}
.landing-page .advices p{
width: 100%;
color: var(--primary);
}
.landing-page .advices a{
align-self: baseline;
text-decoration: none;
color: var(--light-text-color);
max-width: 200px;
min-width: 150px;
padding: 0px 24px;
margin: 0px 8px;
}
.landing-page .advices a img{
width: 100%;
object-fit: cover;
object-position: center center;
aspect-ratio: 1;
}
.landing-page .lame-12 .main-img {
max-width: 100%;
}
.landing-page .lame-12 .flex-column {
width: 100%;
}
.landing-page .lame-12 p {
width: 100%;
text-align: left;
}
.landing-page .lame-12 .store-div {
width: 100%;
justify-content: start;
}
.landing-page .lame-13 a {
padding: 0px 16px;
}
.landing-page .lame-13 a svg {
height: 55px;
width: 55px;
color: var(--grey-900);
padding: 4px 8px;
}
.landing-page .lame-13 a:hover svg{
color: var(--primary);
}
.landing-page .show-mobile {
visibility: collapse;
}
@media (prefers-color-scheme: dark) {
.landing-page {
background-color: var(--dark-background);
color: var(--dark-text-color);
}
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5
{
color: var(--dark-text-color)
}
.landing-page label {
color: var(--dark-text-color);
}
.landing-page .objective {
color: var(--dark-text-color);
}
.landing-page .advices a{
color: var(--dark-text-color);
}
.landing-page .lame-13 a svg {
color: var(--grey-100);
}
.landing-page .user-div {
background: var(--grey-800);
}
.landing-page .creator-tags label {
border: 2px solid var(--grey-100);
color: var(--dark-text-color);
}
}
@media (max-width: 700px) {
.landing-page h1 {
font-size: 2em;
}
.landing-page h2 {
font-size: 1.8em;
}
.landing-page h3 {
font-size: 1.5em;
}
.landing-page h4 {
font-size: 1.2em;
}
.landing-page .grid-2-2,
.landing-page .grid-3-1,
.landing-page .grid-2-1,
.landing-page .grid-1-2,
.landing-page .creator-container {
display: flex;
flex-direction: column;
}
.landing-page .flex-row {
flex-wrap: wrap;
}
.landing-page .hide-mobile {
visibility: collapse;
}
.landing-page .show-mobile {
visibility: visible;
}
.landing-page .lame-10 label {
padding: 32px 0;
}
.landing-page .advices a{
margin: 16px 0px;
}
.landing-page .plans-container {
display: flex;
flex-direction: column;
}
.landing-page .store-div img{
max-width: 120px;
}
.landing-page .lame-12 .store-div {
justify-content: center;
}
}