:root {
  --blanc: #ececec;
  --fond-noir: #1d1f25;
  --gradient-green: #b3e7ce;
  --gradient-blue: #4482b7;
  --text-spacing: 20px;
  --gris: #4c4c4c;
  --gaz-vert: #b3e7ce;
  --gaz-bleu: #4482b7;
  --white: white;
  --black: black;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

h1 {
  letter-spacing: -2.694px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 67.34px;
  font-weight: 600;
  line-height: 110%;
}

h2 {
  letter-spacing: -1.516px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 37.9px;
  font-weight: 600;
  line-height: 110%;
}

h3 {
  letter-spacing: -1.137px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28.43px;
  font-weight: 600;
  line-height: 110%;
}

a {
  color: var(--blanc);
}

.body {
  background-color: var(--fond-noir);
  color: var(--blanc);
  letter-spacing: -.64px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.navigation {
  background-color: var(--fond-noir);
  justify-content: space-around;
  align-items: center;
  padding: 12px 10%;
  display: flex;
  position: sticky;
  top: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 2px 2px #0d0d0d1a;
}

.cta-menu {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: row;
  justify-content: flex-end;
  width: 50%;
  display: flex;
  position: relative;
}

.nav-menu {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  color: var(--blanc);
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.left-menu {
  flex: 0 auto;
  align-items: center;
  width: 50%;
  display: flex;
}

.nav-link {
  color: var(--blanc);
  flex: 0 auto;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: flex;
}

.nav-link.w--current {
  background-image: linear-gradient(to right, var(--gradient-green), var(--gradient-blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
}

.nav-link.cta-link {
  font-weight: 600;
  text-decoration: none;
}

.button {
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  transition: transform .2s;
}

.button:hover {
  transform: translate(0, -3px);
}

.button.cta-button {
  background-image: linear-gradient(135deg, var(--gradient-green), var(--gradient-blue));
  color: var(--fond-noir);
}

.button.showcase-button {
  background-color: var(--fond-noir);
  color: var(--gradient-green);
  transition: background-color .2s, transform .2s;
}

.button.showcase-button:hover {
  background-color: #292b32;
}

.gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #b3e7ce, #4482b7);
  -webkit-background-clip: text;
  background-clip: text;
}

.gradient.quote {
  padding-right: 8px;
  font-style: italic;
}

.hero-section {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.hero-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 60%;
  max-width: 860px;
  display: flex;
}

.titles {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.subtitle {
  color: var(--gradient-green);
  letter-spacing: -.14px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.text-l {
  font-size: 21.33px;
  line-height: 130%;
}

.image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 32px;
  width: 100%;
}

.image.content-image {
  aspect-ratio: 16 / 9;
  text-transform: none;
  flex: 1;
  max-width: 800px;
}

.logos {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 860px;
  display: flex;
}

.advantages-section {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  padding: 80px 10%;
  display: flex;
}

.advantages-column {
  grid-column-gap: var(--text-spacing);
  grid-row-gap: var(--text-spacing);
  flex-direction: column;
  flex: 1;
  align-items: center;
  max-width: 480px;
  display: flex;
}

.advantages-picture {
  background-image: linear-gradient(to right, var(--gradient-green), var(--gradient-blue));
  border-radius: 16px;
  padding: 8px;
}

.advantages-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.payment-section {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 40px 10%;
  display: flex;
}

.showcase {
  background-image: linear-gradient(to right, var(--gradient-green), var(--gradient-blue));
  border-radius: 32px;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1600px;
  padding: 60px 0 60px 80px;
  display: flex;
}

.showcase-content {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.showcase-title, .showcase-text {
  color: var(--fond-noir);
}

.content-section {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  flex-direction: column;
  align-items: center;
  padding: 120px 10%;
  display: flex;
}

.right-content-block {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: row;
  align-items: stretch;
  max-width: 1600px;
  display: flex;
}

.content-image {
  aspect-ratio: 2;
  width: 50%;
}

.content-read {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.content-read-title {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.left-content-block {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  display: flex;
}

.review {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  flex: 0 auto;
  display: flex;
}

.text-xl {
  font-size: 37.9px;
  font-weight: 600;
  line-height: 41.69px;
}

.text-s {
  font-size: 14px;
}

.rating {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.showcase-reading {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 66%;
  display: flex;
}

.showcase-picture {
  margin-top: -80px;
  margin-bottom: -300px;
  margin-right: -80px;
}

.cta-section {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 80px 10%;
  display: flex;
}

.faq-section {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  align-items: center;
  padding: 120px 10%;
  display: none;
}

.faq-title {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  width: 100%;
  max-width: 1600px;
  padding: 0;
}

.faq-question {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.green {
  color: var(--gradient-green);
}

.footer {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-color: #86bec5;
  flex-direction: column;
  padding: 4% 5%;
  display: flex;
}

.footer-column {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  flex: 0 auto;
  min-width: 200px;
  display: flex;
}

.footer-title {
  color: var(--fond-noir);
  letter-spacing: -.853px;
  font-size: 21.33px;
  font-weight: 600;
  line-height: 110%;
}

.footer-link {
  color: var(--fond-noir);
  text-decoration: none;
}

.footer-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.footer-informations {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--gris);
  flex-direction: column;
  display: flex;
}

.footer-logos {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: row;
  display: flex;
}

.mobile-navigation {
  background-color: var(--fond-noir);
  justify-content: space-around;
  align-items: center;
  padding: 20px 5%;
  display: none;
  position: sticky;
  top: 0%;
  left: 0%;
  right: 0%;
}

.logo {
  max-width: none;
}

.logos-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  padding: 0;
}

.div-block {
  align-items: center;
  width: 100%;
  max-width: 1600px;
  display: flex;
}

.logos-cell {
  justify-content: center;
}

.repairs-section {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10% 80px;
  display: flex;
}

.repairs-cell {
  grid-column-gap: var(--text-spacing);
  grid-row-gap: var(--text-spacing);
  flex-direction: column;
  flex: 0 auto;
  align-items: center;
  display: flex;
}

.products-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.products-picture {
  background-image: linear-gradient(to right, var(--gradient-green), var(--gradient-blue));
  border-radius: 16px;
  padding: 8px;
}

.centered {
  text-align: center;
}

.centered.gradient.small {
  font-size: 28.43px;
}

.hero-slider {
  border-radius: 32px;
  width: 860px;
  height: auto;
}

.mask {
  border-radius: 32px;
}

.slide-1 {
  aspect-ratio: 16 / 9;
  background-image: linear-gradient(#00000080, #00000080), url('../images/prendre-rdv.webp');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.slide-2 {
  aspect-ratio: 16 / 9;
  background-image: linear-gradient(#00000080, #00000080), url('../images/recrutement.webp');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.slide-3 {
  aspect-ratio: 16 / 9;
  background-image: linear-gradient(#00000080, #00000080), url('../images/romain-dancre-doplSDELX7E-unsplash.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.repairs-line {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  display: flex;
}

.stars {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  display: flex;
}

.small-h2 {
  font-size: 28.43px;
}

.slide-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 60px;
  margin-right: 60px;
  display: flex;
}

.slide-title {
  color: var(--blanc);
  text-align: center;
  letter-spacing: -.14px;
  text-transform: none;
  font-size: 28.43px;
  font-weight: 600;
  line-height: 130%;
}

.infos-two-columns {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  width: 100%;
  display: flex;
}

.info-column {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  flex: 0 auto;
  width: 50%;
  display: flex;
}

.steps-section {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  padding: 80px 10%;
  display: flex;
}

.rendez-vous-section {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 40px 10%;
  display: flex;
}

.double-cta {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.showcase-link {
  color: var(--fond-noir);
  font-weight: 600;
  text-decoration: none;
}

.repairs-grid, .prices-grid {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
}

.email-button {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.bonus-section {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10%;
  display: flex;
}

._3-columns {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.bonus-section-title {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  align-self: center;
  max-width: 700px;
  display: flex;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50.52px;
  }

  h2 {
    font-size: 28.43px;
  }

  h3 {
    font-size: 21.33px;
  }

  .navigation {
    flex-direction: column;
    display: none;
  }

  .nav-menu {
    background-color: var(--fond-noir);
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    flex-direction: column;
    align-items: center;
    display: block;
    box-shadow: 0 2px 5px #0006;
  }

  .nav-link {
    font-size: 16px;
  }

  .image.content-image {
    width: 100%;
  }

  .advantages-section {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .right-content-block {
    flex-direction: column;
  }

  .content-read {
    width: 100%;
  }

  .left-content-block {
    flex-direction: column-reverse;
  }

  .showcase-picture {
    width: 200px;
    height: 200px;
    margin-right: -40px;
  }

  .mobile-navigation {
    justify-content: space-between;
    display: block;
  }

  .nav-flex {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 60px;
    display: flex;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .repairs-section {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .products-picture {
    max-width: 120px;
    max-height: 120px;
  }

  .hero-slider {
    width: 90%;
  }

  .steps-section {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .double-cta {
    align-items: center;
  }

  .repairs-grid, .prices-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .bonus-section {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }
}

@media screen and (max-width: 767px) {
  .advantages-section {
    flex-direction: column;
  }

  .showcase {
    justify-content: center;
    padding-left: 0;
  }

  .content-section {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .showcase-reading {
    align-items: center;
  }

  .showcase-picture {
    display: none;
  }

  .repairs-section {
    flex-direction: column;
  }

  .hero-slider {
    width: 80%;
    display: none;
  }

  .repairs-line {
    width: 100%;
  }

  .quick-stack-3 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .infos-two-columns {
    flex-direction: column;
    align-items: center;
  }

  .steps-section, .double-cta, .bonus-section {
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 37.9px;
    line-height: 120%;
  }

  .hero-section {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .titles {
    width: 100%;
  }

  .subtitle {
    width: 100%;
    display: block;
  }

  .image {
    max-width: 90%;
    margin-left: 20px;
    margin-right: 20px;
  }

  .image.content-image {
    margin-left: 0;
  }

  .advantages-section {
    padding: 40px 20px;
  }

  .payment-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .showcase {
    padding: 32px 20px;
  }

  .showcase-title {
    text-align: center;
    font-size: 21.33px;
  }

  .showcase-text.text-l {
    text-align: center;
    font-size: 16px;
  }

  .content-section {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    padding: 40px 20px;
  }

  .right-content-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-items: center;
  }

  .left-content-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column-reverse;
  }

  .showcase-reading {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: center;
    max-width: 100%;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .faq-section {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding: 40px 20px 80px;
  }

  .footer {
    padding: 40px 20px;
  }

  .repairs-section {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .repairs-cell {
    text-align: center;
  }

  .centered.gradient.small {
    font-size: 21.33px;
    line-height: 120%;
  }

  .hero-slider {
    width: 90%;
  }

  .repairs-line {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .quick-stack-3 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .slide-title {
    width: 100%;
    display: block;
  }

  .steps-section {
    padding: 40px 20px;
  }

  .rendez-vous-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .showcase-link {
    font-size: 16px;
  }

  .bonus-section {
    padding: 40px 20px;
  }
}

#w-node-_97a4a331-7703-732f-0b3e-1a07bf2b3903-8d5fbb6d {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_2763e070-842f-0367-e74e-85ae8113797a-8d5fbb6d {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

#w-node-e9fb41f3-4e05-bcd2-a349-fe0352eb0746-8d5fbb6d {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-e8099df2-5788-2fed-8bc7-aee6ef772602-ef772601 {
  grid-template-rows: auto;
  grid-template-columns: .5fr .25fr .25fr .25fr;
}

#w-node-e9fb41f3-4e05-bcd2-a349-fe0352eb0746-8857d8cd {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_97a4a331-7703-732f-0b3e-1a07bf2b3903-aec4eaba {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-e9fb41f3-4e05-bcd2-a349-fe0352eb0746-aec4eaba, #w-node-e9fb41f3-4e05-bcd2-a349-fe0352eb0746-42be6c93 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-_97a4a331-7703-732f-0b3e-1a07bf2b3903-8d5fbb6d {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_2763e070-842f-0367-e74e-85ae8113797a-8d5fbb6d {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  #w-node-e9fb41f3-4e05-bcd2-a349-fe0352eb0746-8d5fbb6d {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e8099df2-5788-2fed-8bc7-aee6ef772602-ef772601 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-e9fb41f3-4e05-bcd2-a349-fe0352eb0746-8857d8cd {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_97a4a331-7703-732f-0b3e-1a07bf2b3903-aec4eaba {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-e9fb41f3-4e05-bcd2-a349-fe0352eb0746-aec4eaba, #w-node-e9fb41f3-4e05-bcd2-a349-fe0352eb0746-42be6c93 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_2763e070-842f-0367-e74e-85ae8113797a-8d5fbb6d {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-e8099df2-5788-2fed-8bc7-aee6ef772602-ef772601 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2763e070-842f-0367-e74e-85ae8113797a-8d5fbb6d {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
}


