@font-face {
  font-family: Gellix;
  src: url('../fonts/Gellix-SemiBold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gellix;
  src: url('../fonts/Gellix-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gellix;
  src: url('../fonts/Gellix-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blanc: white;
  --font-family: Gellix, Arial, sans-serif;
  --noir: #0e0e0e;
  --bleu: #4c37f4;
  --rouge: #eb0678;
  --gris-clair: #f2f2f2;
  --gris-foncé: #c9c9c9;
  --vert: #60fc9d;
  --rose: #e450fe;
  --bleu-clair: #6deffe;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--blanc);
  font-family: var(--font-family);
  color: var(--noir);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 9vw;
  font-weight: 500;
  line-height: 1em;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1em;
}

h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

h5 {
  color: var(--bleu);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

p {
  color: var(--noir);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  border-bottom: 2px solid var(--bleu);
  color: var(--bleu);
  padding-bottom: 5px;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--bleu);
  color: var(--blanc);
  text-align: center;
  border-bottom-style: none;
  border-radius: 50px;
  padding-left: 45px;
  padding-right: 45px;
  font-weight: 500;
  box-shadow: 0 0 10px #0003;
}

.btn-primary.white {
  background-color: var(--blanc);
  color: var(--bleu);
}

.btn-primary.red {
  background-color: var(--rouge);
}

.btn-talk {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: inline-flex;
}

.btn-talk.rotate {
  pointer-events: auto;
}

.triangle {
  margin-top: -1px;
  margin-right: 15px;
}

.overview {
  z-index: 1;
  background-color: var(--blanc);
  font-family: var(--font-family);
  width: 100%;
  padding-left: 12vw;
  padding-right: 12vw;
  position: relative;
}

.overview.grey {
  background-color: var(--gris-clair);
}

.overview.grey.padding-8 {
  padding-top: 8vh;
  padding-bottom: 8vh;
}

.overview.white-text.black-bg {
  background-color: var(--noir);
}

.overview.footer {
  z-index: 0;
  background-color: var(--noir);
  color: var(--blanc);
  max-height: 60vh;
  padding-left: 2vw;
  padding-right: 2vw;
  display: none;
  position: sticky;
  bottom: 0;
  overflow: hidden;
}

.overview-lines {
  pointer-events: none;
  width: 100%;
  height: 100%;
  padding: 4vh 12vw;
  display: flex;
  position: absolute;
  inset: 0%;
}

.overview-lines.footer {
  padding-bottom: 0;
  padding-left: 2vw;
  padding-right: 2vw;
}

.lines {
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
}

.vertical-divider {
  background-color: var(--gris-foncé);
  opacity: .4;
  color: var(--blanc);
  width: 1px;
  height: auto;
}

.vertical-divider.height-100 {
  height: 100px;
}

.overview-section {
  z-index: 1;
  grid-column-gap: 4vh;
  grid-row-gap: 4vh;
  width: 100%;
  height: 100%;
  padding-top: 8vh;
  padding-bottom: 8vh;
  display: flex;
  position: relative;
}

.overview-section.step {
  grid-column-gap: 0vh;
  grid-row-gap: 0vh;
  flex-flow: column;
  margin-top: -8vh;
  padding-top: 0;
  padding-bottom: 16vh;
}

.overview-section.column {
  grid-column-gap: 0vh;
  grid-row-gap: 0vh;
}

.overview-section.image {
  margin-top: -20vh;
  margin-bottom: -8vh;
  padding-top: 0;
  padding-bottom: 0;
}

.overview-section.footer {
  padding-top: 4vh;
  padding-bottom: 0;
}

.col-2 {
  flex: 0 50%;
  padding-left: 2vw;
  padding-right: 2vw;
}

.col-2.border {
  border-top: 1px solid var(--gris-foncé);
  border-bottom: 1px solid var(--gris-foncé);
  padding-left: 0;
  padding-right: 0;
}

.col-2.inline {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.col-2.fullpage {
  align-self: flex-end;
  padding-left: 0;
  padding-right: 0;
}

.col-2.center-align {
  align-self: center;
}

.hero {
  z-index: 1;
  background-image: url('../images/Background_Complet.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
}

.nav-bar {
  z-index: 100;
  pointer-events: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2vh 0 2vh 2vw;
  display: flex;
  position: fixed;
  top: 0;
}

.hero-content {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 4vh;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
}

.nav-left {
  width: 160px;
}

.nav-right {
  transform-origin: 100% 0;
  transform: translate(-25px)rotate(7deg);
}

.triangle-top {
  transform-style: preserve-3d;
  margin-top: 0;
  margin-bottom: -1px;
  margin-right: 15px;
  transform: rotateX(0)rotateY(180deg)rotateZ(180deg);
}

.hero-left, .hero-right {
  flex: 0 50%;
}

.white-text {
  color: var(--blanc);
}

.supertitle {
  color: var(--bleu);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.5em;
}

.supertitle.white-text {
  color: var(--blanc);
}

.supertitle.small {
  margin-bottom: 10px;
  font-size: 1rem;
}

.paragraph-medium {
  font-size: 1.6rem;
  line-height: 1.4em;
}

.paragraph-medium.max-width {
  max-width: 600px;
}

.heading {
  line-height: 14vh;
}

.col-item {
  padding-top: 3vh;
  padding-bottom: 3vh;
}

.col-item.flex-row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.horizontal-divider {
  background-color: var(--gris-foncé);
  opacity: .4;
  color: var(--blanc);
  width: 100%;
  height: 1px;
}

.col-4 {
  flex: 0 25%;
  width: 25%;
  margin-bottom: -8vh;
  padding-left: 1vw;
  padding-right: 1vw;
  position: sticky;
  top: 0;
}

.col-4.border {
  border-top: 1px solid var(--gris-foncé);
  border-bottom: 1px solid var(--gris-foncé);
  padding-left: 0;
  padding-right: 0;
}

.col-4.margin-25 {
  margin-left: 25%;
}

.col-4.margin-50 {
  margin-left: 50%;
}

.col-4.margin-75 {
  margin-left: 75%;
}

.step-number {
  color: var(--blanc);
  margin-left: -3.5rem;
  font-size: 12rem;
  font-weight: 600;
  line-height: 12rem;
}

.step-left {
  margin-left: -.9vw;
  overflow: hidden;
}

.col-1 {
  flex: 0 100%;
  padding-left: 2vw;
  padding-right: 2vw;
}

.col-1.border {
  border-top: 1px solid var(--gris-foncé);
  border-bottom: 1px solid var(--gris-foncé);
  padding-left: 0;
  padding-right: 0;
}

.tag {
  background-color: var(--bleu);
  color: var(--blanc);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3.5em;
  padding: 7px 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.tags {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.feature {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: 18px;
  display: flex;
}

.overview-fullpage {
  z-index: 1;
  background-color: var(--blanc);
  width: 100%;
  position: relative;
}

.overview-fullpage.gradient {
  z-index: 1;
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #9386f5, #4c37f4 40%, var(--noir));
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.row-1.margin-12 {
  grid-column-gap: 33px;
  grid-row-gap: 33px;
  text-align: center;
  flex-flow: column;
  align-items: center;
  margin-left: 12vw;
  margin-right: 12vw;
  padding-top: 8vh;
  padding-bottom: 8vh;
  display: flex;
}

.accordion {
  flex-flow: column;
  display: flex;
}

.accordion-item {
  border-top: 1px solid var(--gris-foncé);
  cursor: pointer;
  background-color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  margin-bottom: -30px;
  padding: 2vh 2vw 30px;
  overflow: hidden;
}

.accordion-header {
  align-items: center;
  margin-bottom: 25px;
  display: flex;
}

.accordion-body {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.h3 {
  margin-bottom: 0;
}

.star-close {
  width: 40px;
  height: 40px;
  display: block;
}

.star-open {
  width: 40px;
  height: 40px;
  display: none;
}

.col-3 {
  flex: 0 33.3%;
  padding-left: 2vw;
  padding-right: 2vw;
}

.col-3.border {
  border-top: 1px solid var(--gris-foncé);
  border-bottom: 1px solid var(--gris-foncé);
  padding-left: 0;
  padding-right: 0;
}

.large-number {
  color: var(--bleu);
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 6rem;
}

.heading-2 {
  line-height: 1.1em;
}

.footer-menu {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  flex: 0 50%;
  display: flex;
}

.footer-menu-items {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--blanc);
  flex-flow: column;
  display: flex;
}

.white-text-link {
  color: var(--blanc);
  border-bottom: 1px solid #fff6;
}

.white-text-link:hover {
  border-bottom-color: var(--gris-foncé);
  color: var(--gris-foncé);
}

.logo-footer {
  padding: 0 10vw 1vh;
}

.accordion-img {
  margin-bottom: 20px;
}

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

  .overview {
    padding-left: 20px;
    padding-right: 20px;
  }

  .overview.grey.padding-8 {
    padding-top: 2vh;
    padding-bottom: 2vh;
  }

  .overview-lines {
    padding-left: 20px;
    padding-right: 20px;
  }

  .overview-section {
    padding-top: 2vh;
    padding-bottom: 2vh;
  }

  .overview-section.column {
    grid-column-gap: 4vh;
    grid-row-gap: 4vh;
    flex-flow: column;
    padding-top: 2vh;
    padding-bottom: 2vh;
  }

  .overview-section.image {
    margin-bottom: -2vh;
  }

  .hero-content {
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .hero-left, .hero-right {
    flex: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 15vw;
  }

  .overview.grey.padding-8 {
    padding-top: 8vh;
  }

  .overview.footer {
    max-height: none;
  }

  .vertical-divider.display-none {
    display: none;
  }

  .overview-section {
    flex-flow: column;
  }

  .overview-section.step {
    margin-top: 4vh;
    padding-bottom: 8vh;
  }

  .overview-section.image {
    margin-top: 0;
  }

  .col-2 {
    flex-basis: 100%;
  }

  .col-2.border {
    border-top-width: 0;
    border-bottom-width: 0;
  }

  .col-2.center-align {
    width: 100%;
  }

  .supertitle {
    font-size: 1rem;
  }

  .paragraph-medium {
    font-size: 1.3rem;
    line-height: 1.3em;
  }

  .col-4 {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 10vh;
    position: static;
  }

  .col-4.margin-25, .col-4.margin-50, .col-4.margin-75 {
    margin-left: 0%;
  }

  .step-number {
    display: none;
  }

  .accordion-item {
    margin-bottom: -10px;
  }

  .accordion-header {
    flex-flow: column;
    align-items: stretch;
  }
}

@media screen and (max-width: 479px) {
  .nav-bar {
    flex-flow: column;
  }

  .nav-left {
    align-self: flex-start;
  }

  .nav-right {
    align-self: flex-end;
    margin-top: -40px;
    transform: translate(-25px)rotate(-9deg);
  }

  .col-item.flex-row {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
  }

  .col-4 {
    padding-left: 0;
    padding-right: 0;
  }
}


@font-face {
  font-family: 'Gellix';
  src: url('../fonts/Gellix-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gellix';
  src: url('../fonts/Gellix-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gellix';
  src: url('../fonts/Gellix-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}