:root {
  --black: #2b2a35;
  --text-color: #545465;
  --white: white;
  --lighter-gray: #f6f6f6;
  --blue: #334ac0;
  --royal-blue: #0c62ac;
  --lighter-blue: #586ee0;
  --darker-white: #f2f2f2;
  --darker-grey: #dddfe5;
  --white-smoke: #f9f9f9;
  --dodger-blue: #3898ec;
  --dark-slate-grey: #283338;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Markpro, sans-serif;
  font-size: 144px;
  font-weight: 900;
  line-height: 137px;
}

h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Markpro, sans-serif;
  font-size: 3.2em;
  font-weight: 900;
  line-height: 1em;
}

h3 {
  color: var(--black);
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Markpro, sans-serif;
  font-size: 2.6em;
  font-weight: 900;
  line-height: 1.5em;
}

h4 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Eina, sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 41px;
}

h5 {
  color: var(--black);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

h6 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
}

p {
  color: var(--text-color);
  margin-bottom: 0;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

a {
  text-decoration: underline;
}

.nav {
  z-index: 2147483647;
  background-color: var(--white);
  padding: 16px 4vw;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav.nav--purple {
  background-image: linear-gradient(to right, #4966f7, #7756fd);
}

.nav.hide {
  display: none;
}

.nav__container {
  grid-template: "Area Area-2 Area-3"
  / auto auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nav__logo {
  order: -1;
  width: 12vw;
  height: auto;
}

.nav__menu {
  align-items: flex-end;
  display: flex;
}

.nav__link {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-family: Eina, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}

.nav__logo-image {
  color: var(--black);
  display: none;
}

.nav__logo-image.nav__logo-image--white {
  color: var(--white);
}

.nav__buttons {
  order: 1;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.button {
  text-align: center;
  border-radius: 4px;
  padding: 12px 25px;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.button.button--white-whitebg {
  border: .5px solid var(--lighter-gray);
  background-color: var(--white);
  color: var(--blue);
  transition: box-shadow .2s;
  box-shadow: 0 4px 6px #0000000f, 0 2px 6px #0000000a, 0 0 1px #0000000f;
}

.button.button--white-whitebg:hover {
  box-shadow: 0 4px 6px #0000001f, 0 2px 6px #00000014, 0 0 1px #0000001f;
}

.button.button--white-whitebg.button--space {
  margin-right: 12px;
}

.button.button--blue {
  background-color: var(--royal-blue);
  color: var(--white);
  text-transform: uppercase;
  padding: 3vh 2vw;
  font-size: .9vw;
  font-weight: 700;
  line-height: 1.1px;
  transition: background-color .2s;
}

.button.button--blue:hover {
  background-color: var(--lighter-blue);
}

.button.button--blue.w--current {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 12vw;
  font-size: 1.2vw;
  line-height: 1.2px;
  display: flex;
}

.button.button--white-purplebg {
  border: .5px solid var(--lighter-gray);
  background-color: var(--white);
  color: var(--blue);
  transition: box-shadow .2s;
  box-shadow: 0 4px 6px #0000000f, 0 2px 6px #0000000a, 0 0 1px #0000000f;
}

.button.button--white-purplebg:hover {
  background-color: var(--darker-white);
  box-shadow: 0 4px 6px #0000000f, 0 2px 6px #0000000a, 0 0 1px #0000000f;
}

.button.button--white-purplebg.button--space {
  margin-right: 12px;
}

.nav__link-div-jobs {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-end;
  width: auto;
  height: 28px;
  display: flex;
  position: relative;
}

.nav__link-div-jobs-counter {
  background-color: var(--blue);
  border-radius: 20px;
  width: 18px;
  height: 18px;
  padding-top: 2px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.nav__link-div-jobs-counter.nav__link-div-jobs-counter--white {
  background-color: var(--white);
}

.nav__link-jobs-counter {
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Eina, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
}

.nav__link-jobs-counter.nav__link-jobs-counter--black {
  color: var(--black);
}

.nav__link-div-learning {
  cursor: pointer;
  align-items: flex-start;
  height: 23px;
  text-decoration: none;
  position: relative;
}

.nav__link-div-learning.nav__link-div-learning--space {
  align-items: flex-end;
  margin-right: 24px;
}

.nav__link-div-learning-arrow {
  color: var(--black);
  order: 1;
  align-self: flex-start;
  margin-right: 0;
  display: inline-block;
  position: static;
  inset: 0% 0% auto auto;
}

.nav__link-div-learning-arrow.nav__link-div-learning-arrow--white {
  color: var(--white);
}

.nav__link-learning {
  order: -1;
  align-self: flex-start;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.nav__link-learning.nav__link--8pxspace {
  margin-right: 8px;
}

.nav__link-learning.nav__link--8pxspace.nav__link-learning--black {
  color: var(--black);
  margin-right: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}

.nav__link-learning.nav__link--8pxspace.nav__link-learning--white {
  color: var(--white);
}

.nav__link-div {
  color: var(--black);
  height: 23px;
  margin-right: 0;
  text-decoration: none;
}

.nav__link-div.nav__link-div--black {
  color: var(--black);
}

.nav__link-div.nav__link-div--black:hover {
  border-bottom: 2px solid var(--darker-grey);
}

.nav__link-div.nav__link-div--black.w--current {
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
}

.nav__link-div.nav__link-div--black.nav__link-div--space {
  margin-right: 50px;
  display: none;
}

.nav__link-div.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
  display: none;
}

.nav__link-div.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div.nav__link-div--space.nav__link-div--white {
  color: var(--white);
}

.nav__link-div.nav__link-div--space.nav__link-div--white:hover {
  border-bottom: 2px solid var(--white);
}

.nav__link-div.nav__link-div--space.nav__link-div--white.w--current {
  border-bottom-color: var(--white);
  color: var(--white);
}

.nav__link-div.nav__link-div--white {
  color: var(--white);
}

.nav__link-div.nav__link-div--white:hover {
  border-bottom: 2px solid var(--white);
}

.nav__link-div.nav__link-div--white.w--current {
  border-bottom: 2px solid var(--blue);
}

.nav__link-div.nav__link-div--white.nav__link-div--space, .nav__link-div.nav__link-div--white.space {
  margin-right: 50px;
}

.nav__link-div.nav__link-div--white.space.w--current {
  border-bottom-color: var(--white);
}

.nav__link-div.nav__link-div-jobs--white {
  color: var(--white);
}

.nav__link-div.nav__link-div-jobs--white:hover {
  border-bottom: 2px solid var(--white);
}

.nav__link-div.nav__link-div-jobs--white.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div.nav__link-div-jobs--black {
  color: var(--black);
}

.nav__link-div.nav__link-div-jobs--black:hover {
  border-bottom: 2px solid var(--darker-grey);
}

.nav__link-div.nav__link-div-jobs--black.nav__link-div--space {
  margin-right: 50px;
}

.nav-shadow {
  z-index: 9995;
  background-color: #0000;
  height: 5em;
  display: block;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 6px 20px #00000029, 0 2px 6px #00000014, 0 0 1px #00000014;
}

.nav__dropdown {
  z-index: 9999999;
  width: 330px;
  position: absolute;
  left: -63px;
}

.nav__dropdown.w--open {
  background-color: #0000;
  width: 330px;
  padding-bottom: 20px;
}

.nav__dropdown-bg {
  background-color: var(--white);
  border-radius: 4%;
  width: 300px;
  height: 168px;
  padding-bottom: 20px;
  box-shadow: 0 6px 20px #00000014, 0 2px 6px #0000000a, 0 0 1px #0000000a;
}

.nav__dropdown-wrapper {
  width: 330px;
  height: auto;
  padding-bottom: 20px;
}

.nav__dropdown-links-wrapper {
  flex-direction: column;
  padding-top: 6px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.nav__dropdown-arrow {
  height: 6px;
  padding-bottom: 20px;
}

.nav__dropdown-links-div {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 26px 40px;
  display: flex;
}

.nav__dropdown-link-div {
  height: 21px;
  margin-right: 0;
  text-decoration: none;
}

.nav__dropdown-link-div.nav__dropdown-link-div--black {
  color: var(--black);
}

.nav__dropdown-link-div.nav__dropdown-link-div--black:hover {
  border-bottom: 2px solid var(--darker-grey);
}

.nav__dropdown-link-div.nav__dropdown-link-div--black.w--current {
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
}

.nav__dropdown-link-div.nav__dropdown-link-div--black.nav__dropdown-link-div--space {
  height: 18px;
  margin-top: 3px;
  margin-bottom: 12px;
}

.nav__dropdown-link {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-family: Eina, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.nav__link-wrapper-learning {
  align-items: flex-end;
  padding: 0;
  display: flex;
}

.hero__cta-heading {
  color: var(--black);
  text-align: center;
  margin-bottom: 17px;
}

.hero__cta-div {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero__cta-inputwrapper {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.hero__cta-input {
  border-style: solid none solid solid;
  border-width: 1px 0 1px 1px;
  border-color: var(--darker-grey) black var(--darker-grey) var(--darker-grey);
  color: #545465d1;
  border-radius: 4px 0 0 4px;
  width: 226px;
  height: 46px;
  margin-bottom: 0;
  padding: 14px 18px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  transition: border-color .2s;
}

.hero__cta-input:hover {
  border-top-color: #2b2a354d;
  border-bottom-color: #2b2a354d;
  border-left-color: #2b2a354d;
}

.hero__cta-input:focus {
  border-top-color: var(--blue);
  border-bottom-color: var(--blue);
  border-left-color: var(--blue);
}

.hero__cta-button {
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 46px;
  padding: 15px 48px;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  transition: background-color .2s;
}

.hero__cta-button:hover {
  background-color: var(--lighter-blue);
}

.hero__cta-disclaimer {
  color: #54546599;
  font-family: Eina, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.hero__cta-disclamer-link {
  color: var(--lighter-blue);
  text-decoration: none;
}

.hero__cta-disclamer-link:hover {
  text-decoration: underline;
}

.clients {
  background-image: linear-gradient(to bottom, var(--lighter-gray), var(--white) 30%);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4vw 75px;
  display: flex;
  overflow: hidden;
}

.intro__logos {
  margin-bottom: 136px;
}

.intro__logos-heading {
  color: var(--text-color);
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 70px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

.intro__logos-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 33px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 80vw;
  height: 56px;
  display: grid;
}

.intro__logo {
  max-height: 6vh;
}

.intro__logo.intro__logo--rmargin {
  margin-right: 40px;
}

.intro__logo.big {
  max-height: 4vh;
}

.intro__logo.small {
  max-height: 9vh;
}

.intro__logo.xl {
  max-height: 2.5vh;
}

.intro__logo.garneau {
  max-height: 5vh;
}

.intro__workflow {
  justify-content: space-between;
  align-items: center;
  max-width: 80em;
  margin-top: 28%;
  display: flex;
  position: relative;
}

.intro__workflow-text {
  width: 50%;
}

.intro__workflow-heading {
  opacity: 0;
  margin-bottom: 46px;
  transform: translate(0, 100px);
}

.intro__workflow-paragraph {
  opacity: 0;
  transform: translate(0, 100px);
}

.intro__workflow-paragraph.intro__workflow-paragraph--space {
  margin-bottom: 18px;
}

.logiciels {
  background-color: var(--lighter-gray);
  flex-direction: column;
  align-items: center;
  padding-top: 154px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.decks__text {
  flex-direction: column;
  width: 70vw;
  margin-bottom: 40px;
  display: flex;
}

.decks__text-heading {
  opacity: 0;
  text-align: center;
  margin-bottom: 46px;
  transform: translate(0, 100px);
}

.decks__text-paragraph {
  opacity: 0;
  text-align: center;
  transform: translate(0, 100px);
}

.decks__wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 120vw;
  display: flex;
}

.decks__overlay {
  z-index: 1;
  background-image: linear-gradient(#f6f6f600, #2b2a3533);
  height: 116px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.decks__grid {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.decks__grid.decks__grid--margin {
  margin-right: 1vw;
}

.decks__image {
  border-radius: 4px;
  width: 15.5vw;
  box-shadow: 0 24px 24px #0000000a, 0 16px 24px #0000000f, 0 4px 8px #0000001f, 0 0 1px #0000000f;
}

.decks__image.decks__image--margin {
  margin-bottom: 1.5vh;
}

.autonomie {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 93px;
  padding-left: 4vw;
  padding-right: 4vw;
  display: block;
  overflow: hidden;
}

.formatting__text {
  width: 525px;
  margin-left: -15px;
  margin-right: 4vw;
  padding-top: 66px;
  padding-bottom: 180px;
  position: relative;
}

.formatting__lottie {
  z-index: 0;
  width: 75em;
  height: auto;
  margin-left: -24.8em;
  position: absolute;
  bottom: 0;
  left: 0;
}

.vulgarisation {
  background-color: var(--lighter-gray);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 0 188px;
  display: block;
  overflow: hidden;
}

.integrations__text {
  width: 425px;
  padding-top: 186px;
}

.integrations__text-heading {
  opacity: 0;
  margin-bottom: 46px;
  transform: translate(0, 100px);
}

.news__card-paragraph {
  color: var(--white);
}

.integrations__lottie {
  width: 75em;
  margin-top: 0;
  margin-right: -22vw;
}

.projets {
  flex-direction: column;
  align-items: center;
  padding-top: 113px;
  padding-left: 2vw;
  padding-right: 2vw;
  display: block;
  overflow: hidden;
}

.sharing__text {
  width: 565px;
  margin-left: auto;
  margin-right: auto;
}

.sharing__text-heading {
  opacity: 0;
  text-align: center;
  margin-bottom: 46px;
  transform: translate(0, 100px);
}

.sharing__text-paragraph {
  z-index: 9995;
  opacity: 0;
  text-align: center;
  position: relative;
  transform: translate(0, 100px);
}

.sharing__wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.sharing__image {
  width: 100%;
}

.sharing__hand {
  width: 22%;
  position: absolute;
  bottom: 0;
  left: 14%;
}

.sharing__access {
  width: 30%;
  position: absolute;
  top: 25%;
  left: 0;
}

.sharing__invite {
  width: 30%;
  position: absolute;
  top: 50%;
  right: 0;
}

.sharing__plane-wrapper {
  width: 40%;
  position: absolute;
  top: -72px;
  right: 77px;
}

.sharing__plane {
  z-index: 1;
  position: relative;
}

.sharing__plane-shadow {
  display: none;
  position: absolute;
  bottom: 123px;
  right: 57px;
}

.news {
  justify-content: center;
  align-items: center;
  padding-top: 178px;
  padding-left: 4vw;
  padding-right: 4vw;
  display: block;
}

.news__wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.news__card {
  border: 1px solid var(--darker-grey);
  background-color: var(--white);
  opacity: 0;
  border-radius: 6px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  margin: 1.5em;
  padding: 4em;
  display: flex;
  transform: translate(0, 100px);
}

.news__card.news__card--purple {
  background-color: #0000;
  background-image: linear-gradient(138deg, #4966f7, #7756fd);
  border-style: none;
}

.news__card-content {
  flex: 26em;
  margin-bottom: 22px;
}

.news__card-content.news__card-content--height {
  flex: 30em;
}

.news__card-heading {
  margin-bottom: 24px;
  font-size: 3em;
  line-height: 1em;
  transition: color .2s;
}

.news__card-heading:hover {
  color: var(--blue);
}

.news__card-heading.news__card-heading--white {
  color: var(--white);
}

.news__card-button {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start;
  align-items: center;
  width: 139px;
  text-decoration: none;
  display: flex;
}

.news__card-buttontext {
  color: var(--blue);
  margin-right: 8px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
}

.news__card-buttontext.news__card-buttontext--white {
  color: var(--darker-white);
}

.news__card-buttonarrow {
  color: var(--blue);
}

.news__card-buttonarrow.news__card-buttonarrow--white {
  color: var(--darker-white);
}

.testimonials {
  background-color: var(--white-smoke);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 174px 4vw 103px;
  display: block;
}

.testimonials__heading {
  text-align: center;
  max-width: 80em;
  margin-bottom: 84px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials__wrapper {
  flex-flow: wrap;
  place-content: flex-start center;
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.testimonials__card {
  border: 1px solid var(--darker-grey);
  background-color: var(--white);
  border-radius: 6px;
  flex-direction: column;
  flex: 0 30em;
  justify-content: space-between;
  align-items: center;
  margin: 1.5em;
  padding: 38px;
}

.testimonials__card-content {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.testimonials__card-blockquote {
  color: var(--text-color);
  text-align: center;
  letter-spacing: .1px;
  margin-bottom: 34px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.testimonials__card-info {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonials__card-photo {
  border-radius: 100%;
  width: 60px;
  margin-bottom: 15px;
}

.testimonials__card-role {
  color: #2b2a3580;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.cta {
  background-image: linear-gradient(to right, #4966f7, #7756fd);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 73px 10vw 118px;
  display: block;
}

.cta__container {
  width: 730px;
  margin-left: auto;
  margin-right: auto;
}

.cta__heading {
  color: var(--white);
  text-align: center;
  margin-bottom: 67px;
}

.cta-div {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cta__input-wrapper {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.cta__input {
  border: 1px solid var(--white);
  color: #fff9;
  background-color: #0000;
  border-radius: 4px 0 0 4px;
  width: 226px;
  height: 46px;
  margin-bottom: 0;
  padding: 14px 18px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

.cta__button {
  background-color: var(--white);
  color: var(--blue);
  text-align: center;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 46px;
  padding: 15px 48px;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  transition: background-color .2s;
}

.cta__button:hover {
  background-color: var(--darker-white);
}

.cta__disclaimer {
  color: #fff9;
  font-family: Eina, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.cta__disclamer-link {
  color: var(--white);
  text-decoration: none;
}

.cta__disclamer-link:hover {
  text-decoration: underline;
}

.footer {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.footer__wrapper {
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 80em;
  margin-left: 4vw;
  margin-right: 4vw;
  padding-top: 53px;
  display: flex;
}

.footer__credits {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer__logo {
  order: -1;
  width: 66px;
  height: 23px;
  margin-bottom: 37px;
}

.footer__logo-image {
  color: var(--black);
}

.footer__copyright {
  color: var(--black);
  margin-top: 1vh;
  font-family: Eina, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
}

.footer__links-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer__heading {
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 15px;
}

.footer__link {
  color: var(--black);
  margin-bottom: 4px;
  font-family: Eina, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
  display: inline-block;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__link.bd {
  font-weight: 700;
}

.footer__sm-wrapper {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer__sm-icon {
  color: #5f6264;
}

.footer__sm-icon:hover {
  color: #424648;
}

.footer__sm-link {
  margin-right: 13px;
}

.news__card-linkh {
  text-decoration: none;
}

.integrations__text-paragraph {
  opacity: 0;
  color: var(--black);
  transform: translate(0, 100px);
}

.integrations__wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.formatting__wrapper {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 77em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.about-hero {
  z-index: 0;
  background-image: linear-gradient(to right, #4966f7, #7756fd);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 48em;
  display: flex;
  position: relative;
}

.about-hero__wrapper {
  width: 50em;
}

.about-hero__heading {
  color: var(--white);
  text-align: center;
  letter-spacing: -3px;
  margin-bottom: -.2em;
  font-family: Markpro, sans-serif;
  font-size: 7em;
  font-weight: 900;
  line-height: .9em;
}

.about-hero__image {
  width: 30em;
  margin-bottom: 0;
  margin-left: 100px;
}

.about-intro {
  z-index: 1;
  background-image: linear-gradient(#fff 73%, #f6f6f6);
  flex-direction: column;
  align-items: center;
  padding: 103px 10vw 95px;
  display: flex;
}

.about-intro__wrapper {
  max-width: 100em;
  margin-left: auto;
  margin-right: auto;
}

.about-intro__paragraph {
  font-family: Eina, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
}

.about {
  z-index: 1;
  background-image: linear-gradient(#fff 72%, #f6f6f6);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 103px 10vw 100px;
  display: flex;
  position: relative;
}

.about__heading-wrapper {
  z-index: 1;
  width: 60vw;
  position: relative;
}

.about__heading {
  color: var(--black);
  text-align: center;
  font-family: Markpro, sans-serif;
  font-size: 5em;
  font-weight: 900;
  line-height: 1em;
}

.about__confetti {
  z-index: 0;
  width: 664px;
  position: absolute;
  top: 0;
}

.about__paragraph1-wrapper {
  max-width: 100em;
  margin-top: 125px;
  margin-bottom: 94px;
}

.about__paragraph1 {
  font-family: Eina, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
}

.about__team {
  max-width: 100em;
}

.about__photos-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about__photo-teammember {
  width: 100%;
}

.about__2photos-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 15px;
  display: grid;
}

.about__paragraph2-wrapper {
  max-width: 100em;
  margin-top: 114px;
  margin-bottom: 94px;
}

.about__culture {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 100em;
  display: grid;
}

.about__paragraph2 {
  font-family: Eina, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
}

.about__culture-lottie {
  width: 100%;
}

.about__culture-office {
  background-image: url('../images/office1.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
}

.about__culture-photo {
  width: 100%;
}

.about__culture-party {
  background-image: url('../images/party.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
}

.about__investors {
  margin-top: 84px;
}

.about__investors-heading {
  text-align: center;
}

.about__investors-container {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 64px;
  display: grid;
}

.about__investors-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.about__investors-logo.about__investors-logo--50space {
  margin-bottom: 50px;
}

.about__investors-logo.about__investors-logo--34space {
  margin-bottom: 34px;
}

.about__investors-logo.about__investors-logo--27space {
  margin-bottom: 27px;
}

.about__investors-logo.about__investors-logo--19space {
  margin-bottom: 19px;
}

.about__investors-name {
  color: var(--black);
  text-align: center;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.about__investors-info {
  color: #2b2a3580;
  text-align: center;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.about-numbers {
  z-index: 1;
  background-image: linear-gradient(#fff 73%, #f6f6f6);
  flex-direction: column;
  align-items: center;
  padding: 74px 10vw 97px;
  display: flex;
}

.about-numbers__container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-numbers__heading {
  text-align: center;
  margin-bottom: 60px;
}

.about-numbers__wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 21px;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: 1fr;
  margin-bottom: 53px;
  display: grid;
}

.about-numbers__metric {
  text-align: center;
  font-family: Markpro, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
}

.about-numbers__metric.about-numbers__metric--blue {
  color: var(--blue);
}

.about-numbers__metric-link {
  color: var(--blue);
  text-decoration: none;
}

.about-numbers__metric-link:hover {
  text-decoration: underline;
}

.about-numbers__metrich {
  color: #2b2a3580;
  text-align: center;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.about-numbers__glassdoor {
  grid-column-gap: 42px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.about-numbers__rating {
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.about-numbers__rating:hover {
  text-decoration: underline;
}

.about-numbers__stars-wrapper {
  display: flex;
}

.about-numbers__rating-link {
  color: var(--black);
  text-align: center;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  text-decoration: none;
}

.about-jobs {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 74px 10vw 120px;
  display: flex;
}

.about-jobs__mission {
  margin-bottom: 23px;
}

.about-jobs__mission-heading {
  text-align: center;
  margin-bottom: 45px;
}

.about-jobs__mission-paragraph {
  text-align: center;
}

.about-jobs__benefits {
  margin-bottom: 81px;
}

.about-jobs__benefits-heading {
  text-align: center;
  margin-bottom: 24px;
}

.about-jobs__benefits-wrapper {
  grid-column-gap: 86px;
  grid-row-gap: 20px;
  color: var(--blue);
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  place-items: center start;
  margin-bottom: 0;
  display: grid;
}

.about-jobs__benefit {
  color: var(--text-color);
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.divider-800 {
  background-color: var(--darker-grey);
  width: 100%;
  height: 1px;
}

.about-jobs__positions.about-jobs__positions--86margin {
  margin-top: 86px;
}

.about-jobs__positions.about-jobs__positions--46margin {
  margin-top: 46px;
}

.about-jobs__positions-heading {
  text-align: center;
  margin-bottom: 22px;
}

.about-jobs__positions-wrapper {
  border: 1px solid var(--darker-grey);
  background-color: var(--white);
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  width: 60vw;
  height: 76px;
  padding: 20px 24px 20px 20px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 4px 6px #0000000f, 0 2px 6px #0000000a, 0 0 1px #0000000f;
}

.about-jobs__positions-wrapper:hover {
  box-shadow: 0 4px 6px #0000001f, 0 2px 6px #00000014, 0 0 1px #0000001f;
}

.about-jobs__positions-wrapper.about-jobs__positions-wrapper--space {
  margin-bottom: 20px;
}

.about-jobs__position-title {
  color: var(--black);
  text-align: left;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.about-jobs__position-location {
  color: #2b2a3580;
  text-align: right;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.blog-hero {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 110px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.blog-hero__wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.blog-hero__text-wrapper {
  flex: 0 0 44%;
}

.blog-hero__heading {
  transition: color .2s;
}

.blog-hero__heading:hover {
  color: var(--blue);
}

.blog-hero__paragraph {
  margin-bottom: 38px;
}

.blog-hero__cta {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start;
  align-items: center;
  width: 164px;
  text-decoration: none;
  display: flex;
}

.blog-hero__cta-text {
  color: var(--blue);
  margin-right: 8px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
}

.blog-hero__cta-arrow {
  color: var(--blue);
}

.blog-hero__image {
  border-radius: 6px;
}

.blog-hero__image.blog-hero__image--onlymobile {
  display: none;
}

.blog-recent {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 60px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
  overflow: hidden;
}

.blog-recent__container {
  opacity: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  transform: translate(0, 300px);
}

.blog-recent__wrapper {
  flex: 0 0 31%;
}

.blog-recent__image {
  border-radius: 6px;
}

.blog-recent__heading {
  font-size: 1.7em;
  line-height: 1.7em;
  transition: color .2s;
}

.blog-recent__heading:hover {
  color: var(--blue);
}

.blog-recent__paragraph {
  font-size: 1.2em;
  line-height: 1.9em;
}

.newsletter-cta {
  flex-direction: column;
  align-items: center;
  padding-top: 33px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.newsletter-cta__container {
  opacity: 0;
  background-image: linear-gradient(45deg, #4966f7, #7756fd);
  border-radius: 6px;
  width: 100%;
  height: auto;
  padding-top: 2em;
  padding-bottom: 1em;
  padding-left: 2em;
  position: relative;
  transform: translate(0, 120px);
}

.newsletter-cta__heading {
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-cta__paragraph {
  color: #fff9;
  margin-bottom: 11px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.newsletter-cta__link {
  color: var(--darker-white);
  font-weight: 700;
  text-decoration: none;
}

.newsletter-cta__link:hover {
  color: var(--white);
}

.newsletter-cta__div {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.newsletter-cta__input-wrapper {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.newsletter-cta__input {
  border: 1px solid var(--white);
  color: #fff9;
  background-color: #0000;
  border-radius: 4px 0 0 4px;
  width: 226px;
  height: 46px;
  margin-bottom: 0;
  padding: 14px 18px;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

.newsletter-cta__button {
  background-color: var(--white);
  color: var(--blue);
  text-align: center;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 46px;
  padding: 15px 48px;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  transition: background-color .2s;
}

.newsletter-cta__button:hover {
  background-color: var(--darker-white);
}

.newsletter-cta__disclaimer {
  color: #fff9;
  font-family: Eina, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.newsletter-cta__disclamer-link {
  color: var(--white);
  text-decoration: none;
}

.newsletter-cta__disclamer-link:hover {
  text-decoration: underline;
}

.newsletter-cta__image {
  width: 360px;
  position: absolute;
  inset: auto 0 0% auto;
}

.blog-essential {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 93px;
  margin-bottom: 111px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.blog-essential__container {
  width: 100%;
}

.blog-essential__heading {
  margin-bottom: 8px;
}

.divider-1184 {
  background-color: var(--darker-grey);
  height: 1px;
}

.blog-essential__wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  display: grid;
}

.blog-essential__article {
  opacity: 0;
  width: auto;
  text-decoration: none;
  transform: translate(0, 170px);
}

.blog-essential__article-nr {
  color: var(--darker-grey);
  margin-bottom: 20px;
  font-family: Markpro, sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 60px;
  text-decoration: none;
}

.blog-articles {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 95px;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.blog-articles__container {
  width: 100%;
}

.blog-articles__heading {
  margin-bottom: 8px;
}

.blog-articles__wrapper {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-top: 62px;
  display: flex;
}

.blog-articles__article {
  opacity: 0;
  flex: 0 0 31%;
  transform: translate(0, 100px);
}

.blog-articles__image1 {
  background-image: url('../images/smallheader_ramsrefresh.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image1:hover {
  opacity: .8;
}

.blog-articles__article-heading {
  letter-spacing: -.5px;
  font-size: 1.7em;
  line-height: 1.7em;
  transition: color .2s;
}

.blog-articles__article-heading:hover {
  color: var(--blue);
}

.blog-articles__paragraph {
  font-size: 1.2em;
  line-height: 1.9em;
}

.blog-articles__image2 {
  background-image: url('../images/cover-thumbnail-420x300.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image2:hover {
  opacity: .8;
}

.blog-articles__image3 {
  background-image: url('../images/supercast_thumbnail.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image3:hover {
  opacity: .8;
}

.blog-articles__image4 {
  background-image: url('../images/kevinspost_coverthumbnail.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image4:hover {
  opacity: .8;
}

.blog-articles__image5 {
  background-image: url('../images/programme-formation-teletravail-pandemie-urgence-sanitaire-covid-19-quebec-canada-europe.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image5:hover {
  opacity: .8;
}

.blog-articles__image6 {
  background-image: url('../images/fabspost_thumbnail.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image6:hover {
  opacity: .8;
}

.blog-articles__image7 {
  background-image: url('../images/coverthumbmnail.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image7:hover {
  opacity: .8;
}

.blog-articles__image8 {
  background-image: url('../images/lprspotlight_cover.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image8:hover {
  opacity: .8;
}

.blog-articles__image9 {
  background-image: url('../images/stealthreveal_header_thumbnail.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image9:hover {
  opacity: .8;
}

.blog-articles__image10 {
  background-image: url('../images/womensday_cover.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image10:hover {
  opacity: .8;
}

.blog-articles__image11 {
  background-image: url('../images/pitch-lpr.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image11:hover {
  opacity: .8;
}

.blog-articles__image12 {
  background-image: url('../images/funding_cover.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 6px;
  width: 25vw;
  height: 18vw;
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-articles__image12:hover {
  opacity: .8;
}

.blog-hero__heading-link {
  margin-bottom: 46px;
  text-decoration: none;
}

.blog-hero__image-link {
  flex: 0 0 50%;
  transition: opacity .2s;
}

.blog-hero__image-link:hover {
  opacity: .8;
}

.blog-recent__image-link {
  margin-bottom: 22px;
  transition: opacity .2s;
}

.blog-recent__image-link:hover {
  opacity: .8;
}

.blog-recent__heading-link {
  margin-bottom: 10px;
  text-decoration: none;
}

.newsletter-cta__heading-link {
  text-decoration: none;
}

.blog-articles__article-heading-link {
  margin-bottom: 16px;
  text-decoration: none;
}

.hero__container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150vh;
  display: block;
}

.hero__cta-section {
  margin-top: 0;
  margin-bottom: 8vw;
  position: relative;
}

.hero__container-inner {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  max-width: none;
  height: 100%;
  margin: 0 auto;
  display: flex;
}

.hero__scroll-container {
  align-self: flex-start;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.hero__transform-target {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  transform-origin: 50% 40%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 10vw;
  display: flex;
  position: relative;
  top: 0;
}

.hero__intro {
  z-index: 1;
  color: var(--text-color);
  text-align: center;
  width: 50vw;
  max-width: none;
  margin-top: 20vw;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: Eina, sans-serif;
  font-size: .13em;
  font-weight: 400;
  line-height: 1.55em;
  display: block;
  position: absolute;
  top: 30vh;
  left: 50%;
  transform: translate(-50%);
}

.hero__headline {
  max-width: 16ch;
  margin-top: -6vh;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 26vh;
  left: 0;
  right: 0;
}

.hero__headline-text {
  color: var(--blue);
  text-align: center;
  font-size: 5.5vw;
  line-height: 1.1em;
  display: block;
  position: relative;
}

.hero__hand {
  z-index: 1;
  width: 10em;
  max-width: none;
  height: auto;
  margin-left: -5em;
  display: inline-block;
  position: absolute;
  top: -1.05em;
  left: 50%;
}

.hero__ui {
  z-index: -1;
  width: 16.25em;
  max-width: none;
  height: auto;
  margin-top: -3.75em;
  margin-left: -8.75em;
  display: block;
  position: absolute;
  top: .6em;
  left: 50%;
}

.intro__workflow-asset {
  z-index: 2;
  flex: 0 0 50em;
  margin-bottom: 0;
  margin-right: -13vw;
  position: static;
  inset: auto 0% 0% auto;
}

.div-animated {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 88em;
}

.about__overlay-teammember {
  opacity: 0;
  background-image: linear-gradient(#353b5100 80%, #353b518c 88%, #353b51f2);
  position: absolute;
  inset: 0%;
}

.about__wrapper-teammember {
  position: relative;
}

.about__infowrapper-teammember {
  z-index: 1;
  opacity: 0;
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.about__name-teammember {
  color: var(--white);
  margin-bottom: 0;
}

.about__role-teammember {
  color: var(--white);
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.about__socialwrapper-teammember {
  margin-top: 0;
}

.about__sociallink-teammember {
  margin-right: 15px;
}

.about__smicon-teammember {
  color: var(--darker-white);
}

.about__smicon-teammember:hover {
  color: var(--white);
}

.formatting__heading {
  margin-bottom: 46px;
}

.formatting__paragraph.intro__workflow-paragraph--space, .formatting__paragraph.formatting__paragraph--space {
  margin-bottom: 18px;
}

.nav__link-div-jobstext {
  color: var(--black);
  height: 23px;
  margin-right: 0;
  text-decoration: none;
}

.nav__link-div-jobstext.nav__link-div--black {
  color: var(--black);
}

.nav__link-div-jobstext.nav__link-div--black:hover {
  border-bottom: 2px solid var(--darker-grey);
}

.nav__link-div-jobstext.nav__link-div--black.w--current {
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
}

.nav__link-div-jobstext.nav__link-div--black.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-jobstext.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
  display: none;
}

.nav__link-div-jobstext.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-jobstext.nav__link-div--space.nav__link-div--white {
  color: var(--white);
}

.nav__link-div-jobstext.nav__link-div--space.nav__link-div--white:hover {
  border-bottom: 2px solid var(--white);
}

.nav__link-div-jobstext.nav__link-div--space.nav__link-div--white.w--current {
  border-bottom-color: var(--white);
  color: var(--white);
}

.nav__link-div-jobstext.nav__link-div--white {
  color: var(--white);
}

.nav__link-div-jobstext.nav__link-div--white:hover {
  border-bottom: 2px solid var(--white);
}

.nav__link-div-jobstext.nav__link-div--white.w--current {
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
}

.nav__link-div-jobstext.nav__link-div--white.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-jobstext.nav__link-div-jobs--white {
  color: var(--white);
}

.nav__link-div-jobstext.nav__link-div-jobs--white:hover {
  border-bottom: 2px solid var(--white);
}

.nav__link-div-jobstext.nav__link-div-jobs--white.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-jobstext.nav__link-div-jobs--black {
  color: var(--black);
}

.nav__link-div-jobstext.nav__link-div-jobs--black:hover {
  border-bottom: 2px solid var(--darker-grey);
}

.nav__link-div-jobstext.nav__link-div-jobs--black.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-onlymobile {
  color: var(--black);
  height: 23px;
  margin-right: 0;
  text-decoration: none;
  display: none;
}

.nav__link-div-onlymobile.nav__link-div--black {
  color: var(--black);
}

.nav__link-div-onlymobile.nav__link-div--black:hover {
  border-bottom: 2px solid var(--darker-grey);
}

.nav__link-div-onlymobile.nav__link-div--black.w--current {
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
}

.nav__link-div-onlymobile.nav__link-div--black.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-onlymobile.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
  display: none;
}

.nav__link-div-onlymobile.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-onlymobile.nav__link-div--space.nav__link-div--white {
  color: var(--white);
}

.nav__link-div-onlymobile.nav__link-div--space.nav__link-div--white:hover {
  border-bottom: 2px solid var(--white);
}

.nav__link-div-onlymobile.nav__link-div--space.nav__link-div--white.w--current {
  border-bottom-color: var(--white);
  color: var(--white);
}

.nav__link-div-onlymobile.nav__link-div--white {
  color: var(--white);
}

.nav__link-div-onlymobile.nav__link-div--white:hover {
  border-bottom: 2px solid var(--white);
}

.nav__link-div-onlymobile.nav__link-div--white.w--current {
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
}

.nav__link-div-onlymobile.nav__link-div--white.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-onlymobile.nav__link-div-jobs--white {
  color: var(--white);
}

.nav__link-div-onlymobile.nav__link-div-jobs--white:hover {
  border-bottom: 2px solid var(--white);
}

.nav__link-div-onlymobile.nav__link-div-jobs--white.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-onlymobile.nav__link-div-jobs--black {
  color: var(--black);
}

.nav__link-div-onlymobile.nav__link-div-jobs--black:hover {
  border-bottom: 2px solid var(--darker-grey);
}

.nav__link-div-onlymobile.nav__link-div-jobs--black.nav__link-div--space {
  margin-right: 50px;
}

.nav__link-div-jobs-mobileonly {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-end;
  width: 60px;
  height: 28px;
  display: none;
  position: relative;
}

.blog-articles__wrapper-mobile {
  display: none;
}

.disclaimer {
  z-index: 99999;
  margin-left: 10vw;
  margin-right: 10vw;
  display: none;
  position: fixed;
  bottom: 0;
}

.disclaimer__p {
  color: var(--white);
  font-size: 1.2em;
  line-height: 1.8em;
}

.disclaimer__bg {
  opacity: .8;
  background-image: linear-gradient(to right, #4966f7, #7756fd);
  border-radius: 6px 6px 0 0;
  position: absolute;
  inset: 0%;
}

.disclaimer__wrapper {
  z-index: 1;
  padding: 1em 4em 1em 2em;
  position: relative;
}

.disclaimer__close {
  z-index: 1;
  cursor: pointer;
  width: 20px;
  position: absolute;
  inset: 1em 1em auto auto;
}

.disclaimer__link {
  color: var(--white);
}

.logo-image-svg {
  width: 100%;
  height: 100%;
}

.drop-arrow-plain {
  margin-right: 5px;
  font-size: 14px;
}

.nav-card-02 {
  background-color: #fff0;
  border-radius: 25px;
  flex-direction: column;
  align-items: flex-start;
  min-height: auto;
  display: flex;
}

.navigation-column {
  justify-content: center;
  align-items: center;
  width: 25%;
  height: auto;
  padding: 0 5px 10px 1vw;
}

.bannerlink {
  color: #000;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
  position: relative;
  top: 0;
}

.bannerlink.npn {
  color: #000000bd;
  font-family: Oswald, sans-serif;
  font-size: 14px;
}

.navigation {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: static;
}

.banner_sante_canada {
  color: #fff;
  background-color: #dedede;
  border-bottom: 1px solid #63717821;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  box-shadow: 1px 1px 14px #8d8d8d;
}

.navigation-link {
  color: #000;
  justify-content: center;
  align-items: center;
  min-width: 12vw;
  padding: 20px 12px;
  font-family: Eina, sans-serif;
  font-size: .9vw;
  font-weight: 600;
  line-height: 14px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.navigation-link:hover {
  color: var(--blue);
}

.navigation-link.w--current {
  color: #cc3225;
}

.pricemenu {
  color: #cc3225;
  letter-spacing: -1px;
  font-size: 19px;
  font-weight: 700;
  line-height: 21px;
  position: relative;
  top: 3px;
}

.navigation-button {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #cc3225;
  background-image: linear-gradient(#cc3225, #cc3225);
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  min-height: 50px;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Exo, sans-serif;
  font-size: 15px;
  line-height: 15px;
  text-decoration: none;
  transition: all .4s ease-out;
  display: flex;
  position: relative;
  box-shadow: inset -1px -1px 3px #201b3d99, inset 1px 1px 3px #eee6ff70;
}

.navigation-button:hover {
  box-shadow: inset 1px 1px 3px #201b3d38, inset -1px -1px 3px #eee6ff00, 1px 1px 2px #5b3acc;
}

.navigation-button.menu {
  width: 156px;
  min-width: 130px;
  margin-right: 0;
  font-weight: 700;
  line-height: 11px;
}

.nav-card {
  border-radius: 25px;
  flex-direction: column;
  align-items: flex-start;
  min-height: auto;
  display: flex;
}

.dropdown {
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  position: static;
}

.image-14 {
  width: auto;
  min-width: 30px;
  height: 20px;
  position: relative;
  right: 4px;
}

.menu-title {
  letter-spacing: -.5px;
  font-family: Markpro, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  position: relative;
}

.navigation-full {
  border-bottom: 1px solid #3d424b12;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 4vw;
  display: flex;
}

.dropdown-list {
  min-width: 100%;
}

.dropdown-list.w--open {
  background-color: #0000;
  border-bottom: 1px solid #0000002e;
  padding-top: 20px;
  position: absolute;
  inset: 70% 0 auto;
  box-shadow: 0 13px 12px -5px #00000045;
}

.nav-link-details {
  color: var(--black);
  margin-top: 3px;
  margin-bottom: 4px;
  font-family: Eina, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  position: relative;
  top: 3px;
}

.logo {
  width: 12vw;
  min-width: 133px;
  max-width: none;
  height: auto;
  position: relative;
  top: 1vh;
}

.logo.footer {
  top: 0;
}

.dropdown-link-mobile {
  color: #283338;
  width: 100%;
  height: auto;
  padding: 20px 4px 16px 8px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.dropdown-link-mobile:hover {
  background-color: #f2f2f2;
  border: 1px #cc3225;
}

.qc_wrap {
  align-items: center;
  min-width: 20px;
  height: 100%;
  min-height: 20px;
  display: flex;
}

.navigation-right {
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  font-size: 16px;
  display: flex;
}

.link-block-2 {
  width: auto;
  height: auto;
  min-height: 40px;
  margin-left: 18px;
  position: relative;
}

.navigation-container {
  align-items: center;
  width: 100%;
  max-width: 1340px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  top: -1px;
}

.text-block-62 {
  color: var(--black);
  margin-right: 6px;
  font-family: Eina, sans-serif;
  font-size: 24px;
  line-height: 28px;
  position: relative;
  top: 1px;
}

.image-11 {
  border-radius: 8px;
  width: 4.5vw;
  height: 4.5vw;
  box-shadow: 1px 1px 3px #0000004a;
}

.image-11.ms {
  box-shadow: none;
}

.textbarflex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  height: 60px;
  min-height: 60px;
  max-height: 60px;
  display: flex;
}

.navigation-left {
  align-items: center;
  width: 50%;
  display: flex;
}

.logo_santecanada {
  color: #ffffffed;
  text-align: center;
  letter-spacing: .6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  position: relative;
}

.flowbase-logo {
  width: 54px;
}

.text-block-63 {
  color: #000;
  font-family: Eina, sans-serif;
  font-size: .9vw;
  font-weight: 600;
}

.text-block-63:hover {
  color: var(--blue);
}

.lang_txt {
  color: #cc3225;
  font-weight: 700;
  text-decoration: none;
}

.logo_banner {
  position: relative;
}

.logo_banner.quebec {
  margin-left: 10px;
  margin-right: 50px;
}

.dropdown-toggle {
  padding-left: 12px;
  padding-right: 26px;
  font-family: Eina, sans-serif;
  font-size: 14px;
  line-height: 14px;
  transition: all .2s;
}

.dropdown-toggle:hover {
  color: var(--blue);
}

.dropdown-list-full-wrapper {
  background-color: #ffffffed;
  background-image: linear-gradient(#fff, #fff0 73%, #fff0);
  border-top: 1px #2833381c;
}

.navigation-wrap {
  z-index: 9999;
  background-color: var(--white);
  width: 100%;
  display: block;
  position: relative;
}

.link-block {
  color: #6127da;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
  display: flex;
}

.navigation-container-mob {
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.submenuheader {
  background-color: #fff;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 16px;
  display: flex;
}

.nav-content-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 8px;
  display: flex;
  position: relative;
  top: 0;
}

.header_wrap {
  z-index: 9998;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 40px;
  display: block;
  position: fixed;
}

.header_switch_language {
  color: #cc3225;
  border: 1px solid #cc3225;
  justify-content: center;
  align-items: center;
  width: 156px;
  min-width: 100px;
  height: 30px;
  min-height: 100%;
  padding: 6px 10px;
  text-decoration: underline;
  display: flex;
  position: relative;
}

.header_switch_language:hover {
  opacity: 1;
  border-color: #cc3225;
  box-shadow: 0 0 6px #cc322587;
}

.icon-square {
  flex: none;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.brand {
  margin-right: 44px;
  top: -7px;
}

.lang_wrap {
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  min-height: 20px;
  display: flex;
  position: relative;
  top: 9px;
}

.navigation-mob {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  display: none;
  position: relative;
  inset: 0% 0% auto;
}

.navigation-drop-container {
  background-color: #fff0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-menu {
  color: #283338;
  align-items: center;
  font-size: 15px;
  display: flex;
  position: static;
}

.top-nav-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.html-embed {
  width: 9vw;
  height: 9vh;
  margin-top: 28vh;
  position: relative;
  inset: 0% 0% auto;
}

.anim_mouse {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 14vw;
  margin-top: 15vh;
  padding-top: 7rem;
  display: flex;
  position: absolute;
}

.lottie_mouse_container {
  width: 3vw;
  height: 8vh;
  position: relative;
}

.lottie_anim_mouse {
  width: 3vw;
}

.scroll_text {
  width: 100%;
  min-height: 30px;
  font-size: 8vw;
}

.scroll_txt {
  width: 100%;
  min-height: 30px;
  font-family: Markpro, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  position: relative;
  top: 6px;
}

.lottie_anim_swipe {
  width: 6vw;
  display: none;
}

.client_link {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 15vw;
  margin-left: 2vw;
  margin-right: 2vw;
  display: inline-block;
}

.preloader {
  z-index: 999999;
  background-color: #2c71f6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.preloader__text {
  color: #fff;
  text-align: center;
  font-family: Eina, sans-serif;
  font-size: 1.5vw;
  font-weight: 400;
  line-height: 6vh;
  position: relative;
}

.preloader_logo {
  width: 18vw;
  margin-bottom: 2vh;
}

.lien {
  z-index: 1;
  background-color: #151515;
  justify-content: center;
  align-items: center;
  padding: 12vw 4vw;
  display: flex;
  position: relative;
}

.requests__video-wrapper {
  width: 25%;
  height: 24vw;
  position: absolute;
  left: 20.8%;
}

.requests__video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.requests__wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 51%;
  margin-right: 4.1%;
  display: flex;
  position: relative;
}

.requests__heading {
  color: #f1f1f1;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Markpro, sans-serif;
  font-size: 3.2em;
  font-weight: 900;
  line-height: 1em;
}

.requests__text {
  color: #f1f1f1;
  margin-top: 1.4vw;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.requests__text.today {
  color: var(--white);
  width: 28vw;
  font-size: 1.1vw;
  line-height: 1.4vw;
}

.footer__language-menu {
  cursor: pointer;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.footer__loop {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
}

.flight {
  z-index: 1;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.footer__bottom {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 91%;
  display: flex;
  position: absolute;
  bottom: 3vw;
  left: 4.16%;
  right: 0;
}

.footer__powered {
  color: #f1f1f1;
  font-size: .9em;
  font-weight: 500;
  line-height: 1em;
  display: block;
}

.footer__heading-2 {
  color: #f1f1f1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3vw;
  font-weight: 900;
  line-height: 6vh;
}

.footer__cta {
  color: #fff;
  text-align: center;
  background-color: #2c71f6;
  border-radius: 3em;
  margin-top: 2vw;
  padding-left: .85em;
  padding-right: .85em;
  font-size: .97vw;
  font-weight: 500;
  line-height: 2.2em;
  text-decoration: none;
}

.footer__lowered-link {
  color: #fff;
  text-decoration: none;
}

.footer__copyright-2 {
  color: #f1f1f180;
  font-size: .9em;
  font-weight: 500;
  line-height: 1em;
}

.footer__loop-wrapper {
  background-color: var(--royal-blue);
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.footer__heading-wrapper {
  flex-flow: column wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer__language {
  color: #fff;
  text-align: right;
  margin-right: 7px;
  font-size: .9em;
  font-weight: 500;
  line-height: 1em;
}

.footer__language-arrow {
  margin-bottom: 4px;
}

.footer__menu-link {
  opacity: .8;
  color: #fff;
  background-color: #2c71f6;
  border-bottom: 1px solid #0000001a;
  padding: .75em 1em;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

.footer__menu-link:hover {
  opacity: 1;
}

.footer__menu {
  opacity: 0;
  display: none;
  position: absolute;
  bottom: 2.5em;
  right: 0;
}

.footer__wrapper-2 {
  z-index: 2;
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 12vh;
  padding-left: 4vw;
  display: flex;
  position: relative;
}

.button_flight {
  text-align: center;
  border: 3px solid #ffffff26;
  border-radius: 7px;
  margin-top: 6vh;
  padding: 13px 25px 12px;
  font-family: Eina, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.button_flight.button--white-whitebg {
  border: .5px solid var(--lighter-gray);
  background-color: var(--white);
  color: var(--blue);
  transition: box-shadow .2s;
  box-shadow: 0 4px 6px #0000000f, 0 2px 6px #0000000a, 0 0 1px #0000000f;
}

.button_flight.button--white-whitebg:hover {
  box-shadow: 0 4px 6px #0000001f, 0 2px 6px #00000014, 0 0 1px #0000001f;
}

.button_flight.button--white-whitebg.button--space {
  margin-right: 12px;
}

.button_flight.button--blue {
  background-color: var(--blue);
  color: var(--white);
  text-transform: uppercase;
  padding: 3vh 2vw;
  font-size: 1.1vw;
  font-weight: 700;
  line-height: 1.1px;
  transition: background-color .2s;
}

.button_flight.button--blue:hover {
  background-color: var(--lighter-blue);
}

.button_flight.button--white-purplebg {
  border: .5px solid var(--lighter-gray);
  background-color: var(--white);
  color: var(--blue);
  transition: box-shadow .2s;
  box-shadow: 0 4px 6px #0000000f, 0 2px 6px #0000000a, 0 0 1px #0000000f;
}

.button_flight.button--white-purplebg:hover {
  background-color: var(--darker-white);
  box-shadow: 0 4px 6px #0000000f, 0 2px 6px #0000000a, 0 0 1px #0000000f;
}

.button_flight.button--white-purplebg.button--space {
  margin-right: 12px;
}

.formation_splash {
  z-index: 1;
  background-color: #0000;
  height: 100vh;
  padding-top: 9vh;
  position: relative;
  overflow: hidden;
}

.hero__intro-2 {
  z-index: 2;
  opacity: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.formation_heading {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 2vh;
  font-size: 2.7vw;
  font-weight: 900;
  line-height: 4.2vh;
}

.formation_heading.center {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  line-height: 5vh;
}

.formation_heading.sub {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  font-size: 1.4vw;
  line-height: 5vh;
}

.formation_title_wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.logo_titre_formation {
  border-radius: 8px;
  width: 5vw;
  height: 5vw;
  margin-top: 2vh;
  margin-bottom: 2vh;
  margin-right: 1vw;
  box-shadow: 1px 1px 3px #0000004a;
}

.logo_titre_formation.ms, .logo_titre_formation.elements, .logo_titre_formation.sommet {
  box-shadow: none;
}

.formation_survol {
  background-color: var(--white-smoke);
  border-bottom: 1px solid #00000012;
  flex-direction: column;
  align-items: center;
  padding: 0 4vw 50vh;
  display: flex;
}

.survol_wrap {
  flex-direction: column;
  align-items: center;
  width: 70vw;
  min-height: 30px;
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

.suvrol_tt {
  opacity: 1;
  text-align: center;
  margin-top: 1vh;
  margin-bottom: 46px;
  position: relative;
  transform: translate(0, 100px);
}

.suvrol_tt.plan-de-cours {
  margin-top: 3vh;
}

.suvrol_txt {
  opacity: 1;
  text-align: center;
  margin-bottom: 12vh;
  position: relative;
  transform: translate(0, 100px);
}

.suvrol_txt.link {
  top: -8vh;
}

.link_regular {
  color: var(--royal-blue);
  font-weight: 700;
}

.suvrol_pdf_tt {
  opacity: 1;
  text-align: center;
  margin-top: 2vh;
  margin-bottom: 46px;
  font-size: 22px;
  transform: translate(0, 100px);
}

.pdflinkblock {
  position: relative;
}

.suvol_ident {
  opacity: 1;
  color: var(--royal-blue);
  text-align: center;
  margin-bottom: 46px;
  font-family: Eina, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  position: relative;
  transform: translate(0, 100px);
}

.application_splash_photo {
  background-image: url('../images/elearning-schedule-planification-graphic-design-remote-work-montreal-quebec-canada.jpg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 66vh;
}

.application_splash_photo.psd {
  background-image: url('../images/apprentissage-des-logiciels-adobe-creative-cloud-quebec-canada-europe-afrique.jpg');
  background-position: 50% 40%;
}

.application_splash_photo.ai {
  background-image: url('../images/elearning-schedule-planification-graphic-design-remote-work-montreal-quebec-canada.jpg');
}

.application_splash_photo.indd {
  background-image: url('../images/formation-apprentissage-a-la-maison-adobe-microsoft-office-quebec-canada-france.jpg');
  background-position: 50% 35%;
}

.application_splash_photo.lr {
  background-image: url('../images/cours-formation-a-distance-infographie-design-graphique-graphisme-quebec-france.jpg');
  background-position: 100% 35%;
}

.application_splash_photo.ae {
  background-image: none;
  height: 90vh;
}

.application_splash_photo.au {
  background-image: url('../images/formation-studio-adobe-audition-logicpro-vancouver-quebec-montreal-ottawa.jpg');
  background-position: 50% 40%;
}

.application_splash_photo.word {
  background-image: url('../images/apprentissage-des-logiciels-adobe-creative-cloud-quebec-canada-europe-afrique.jpg');
  background-position: 50% 40%;
}

.appscreen_image {
  width: 40vw;
  margin-top: -21vh;
  margin-left: 12vw;
  position: relative;
  left: -12vw;
}

.appscreen_image.ae {
  width: 40vw;
  position: absolute;
}

.foot_video_wrap {
  width: 100%;
  height: 90vh;
  min-height: 100px;
}

.background-video {
  width: 100%;
  height: 100%;
}

.iconswrap {
  background-color: var(--royal-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: auto;
  min-height: auto;
  margin-top: 0;
  display: flex;
  position: relative;
  top: 100px;
}

.logo_plancours {
  border-radius: 0;
  width: 140px;
  height: 140px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  position: relative;
  box-shadow: 1px 1px 3px #0000004a;
}

.logo_plancours.ms {
  box-shadow: none;
}

.survol {
  flex-direction: column;
  align-items: center;
  margin-bottom: 36vh;
  display: flex;
}

.video_bckg_ae {
  width: 100%;
  height: 90vh;
  position: relative;
  inset: 0% 0% auto;
}

.link_regular-2 {
  color: #0c62ac;
  font-weight: 700;
}

.link_paragraph {
  color: #0c62ac;
  font-weight: 400;
}

.others_tt {
  opacity: 1;
  text-align: center;
  margin-top: 1vh;
  margin-bottom: 46px;
  font-size: 2.4em;
  line-height: 1.3em;
  position: relative;
  transform: translate(0, 100px);
}

.others_tt.plan-de-cours {
  margin-top: 3vh;
}

.linkothers {
  color: var(--royal-blue);
}

.others_subtt {
  opacity: 1;
  text-align: center;
  margin-top: 0;
  margin-bottom: 46px;
  font-size: 1.6em;
  font-weight: 700;
  position: relative;
  transform: translate(0, 100px);
}

.others_subtt.plan-de-cours {
  margin-top: 3vh;
}

.contact_splash {
  z-index: 1;
  background-color: #0000;
  height: 40vh;
  padding-top: 9vh;
  position: relative;
  overflow: hidden;
}

.footer__loop-wrappe {
  background-color: var(--royal-blue);
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.contact_head {
  background-color: var(--royal-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 35vh;
  padding-top: 12vh;
  display: flex;
}

.footer_adress {
  z-index: 1;
  color: var(--black);
  font-family: Eina, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  position: relative;
}

.footlink {
  color: var(--royal-blue);
}

.comtact_head_wrap {
  width: 60vw;
}

.contact_card_columns {
  width: 100%;
  margin-top: 6vh;
}

.contact_card_columns01 {
  flex-direction: column;
  align-items: flex-start;
  min-height: 60px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.telephome_block {
  z-index: 9998;
  background-color: #3898ec00;
  background-image: url('../images/telephone-contact-formation-teletravail-infographie-video-quebec-montreal-france.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: center;
  width: 20vw;
  height: 7vh;
  margin-top: 0;
  padding-left: 4vw;
  font-family: Markpro, sans-serif;
  font-size: 1.6vw;
  font-weight: 900;
  display: flex;
  position: relative;
  inset: 0 0% 0% auto;
}

.telephome_block:hover {
  color: #fff;
  text-shadow: 0 0 13px var(--darker-white);
}

.notel_header {
  z-index: 9998;
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 100%;
  font-family: Markpro, sans-serif;
  font-size: 1.9vw;
  font-weight: 900;
  display: flex;
  position: relative;
  left: auto;
}

.linkphone {
  z-index: 9998;
  color: var(--white);
  font-size: 1.6vw;
  text-decoration: none;
  position: relative;
}

.telephone_container {
  z-index: 9998;
  background-color: #0000;
  width: 100%;
  height: auto;
  min-height: 3vh;
  position: relative;
}

.category_item {
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  width: 100%;
  min-height: 20px;
  font-family: Eina, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 2vw;
  position: relative;
}

.heading {
  color: var(--white);
  min-height: 20px;
  margin-bottom: 0;
  font-family: Eina, sans-serif;
  font-size: 1.9vw;
  font-weight: 400;
  line-height: 24px;
}

.contact_subtt_wrap {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 20px;
  margin-bottom: 2vh;
  display: flex;
}

.contact_icons {
  background-image: url('../images/coach-prive-infographie-video-bureautique-teletravail-quebec-montreal.svg');
  background-position: 0 0;
  background-size: auto;
  width: 2vw;
  height: 2vw;
  margin-right: 1vw;
}

.contact_icons.telephone {
  background-repeat: no-repeat;
  background-size: contain;
}

.contact_icons.email {
  background-image: url('../images/formation-en-ligne-graphisme-montage-video-traitement-texte-quebec.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.link-2 {
  color: var(--white);
  font-size: 1.8vw;
  font-weight: 400;
}

.address_wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 30px;
  margin-top: 6vh;
  display: flex;
}

.logofooter {
  width: 12vw;
  min-width: 133px;
  max-width: none;
  height: auto;
  position: relative;
  top: 1vh;
}

.logofooter.footer {
  top: 0;
}

.politiques {
  flex-direction: column;
  align-items: center;
  height: auto;
  margin-bottom: 36vh;
  padding-top: 5vh;
  display: flex;
}

.testimonials__linkz {
  color: #2b2a3580;
  font-family: Eina, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.link-3 {
  color: var(--royal-blue);
}

.socialicons {
  width: 2vw;
  height: 2vw;
}

.mapwide {
  background-image: url('../images/cours-prive-groupe-formation-infographie-video-zoom-quebec-canada.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 45vh;
}

.linkgoogle {
  color: var(--white);
  position: relative;
  top: 2vh;
}

.contact-container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.main-section {
  margin-top: 0;
  padding: 70px 20vw 80px;
}

.field-label {
  color: #000;
  text-transform: uppercase;
  font-family: Markpro, sans-serif;
  font-weight: 700;
  display: block;
}

.contact-header {
  float: left;
  color: #000;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5vw;
  line-height: 1.8vw;
}

.text-area {
  opacity: .5;
  border-radius: 4px;
  margin-bottom: 24px;
  font-family: Varela Round, sans-serif;
}

.text-area:focus {
  opacity: 1;
  background-color: #0000;
  border: 1px solid #4ac2c9;
}

.contact-icon {
  float: left;
  margin-top: 2px;
  margin-right: 10px;
  padding-top: 0;
}

.submit-form {
  color: #6670737d;
  background-color: #fff;
  border: 3px solid #4ac2c9;
  border-radius: 12px;
  padding: 10px 70px;
  font-family: Varela Round, sans-serif;
  font-size: 15px;
  transition: all .4s;
}

.submit-form:hover {
  color: #fff;
  background-color: #4ac2c9b3;
}

.contact-column {
  padding-left: 0;
  padding-right: 40px;
}

.contact-column.right {
  padding-left: 40px;
}

.two-column-heading {
  text-align: left;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.list-item, .list-item-2, .list-item-3, .list-item-4 {
  margin-bottom: 2vh;
}

.form {
  display: none;
}

.maindev {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #000;
  background-image: linear-gradient(#0000009e, #0000009e), url('../images/texture_coal.jpeg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.rodalogo {
  background-image: url('../images/roda-import-export-coal-charcoal-tires-africa-canada-americas.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 60%;
  height: 40%;
  margin-top: -123px;
}

.infos {
  color: #fff;
  margin-bottom: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.link-4 {
  color: #e41f26;
}

.sommetmain {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 70vw;
  height: auto;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  display: flex;
}

.sommetmain._02small {
  text-align: left;
  margin-top: 52px;
}

.mainflex {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin: 120px;
  display: none;
}

._02class {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 70vw;
  height: auto;
  margin-top: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

._02class._02small {
  text-align: left;
  margin-top: 52px;
}

.body {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

._03 {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 70vw;
  height: auto;
  margin-top: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

._03._02small {
  text-align: left;
  margin-top: 52px;
}

.body-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.titlereplaced {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 70vw;
  height: auto;
  margin-bottom: 52px;
  font-family: Montserrat, sans-serif;
  font-size: 33px;
  font-weight: 700;
  display: flex;
}

.titlereplaced._02small {
  text-align: left;
  margin-top: 52px;
}

@media screen and (min-width: 1280px) {
  .nav {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .nav__container {
    max-width: 100em;
  }

  .clients {
    align-items: stretch;
    padding-left: 10vw;
    padding-right: 10vw;
    display: block;
  }

  .intro__logos {
    flex-direction: column;
    justify-content: center;
    align-self: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .intro__logo.intro__logo--rmargin {
    margin-right: 80px;
  }

  .intro__workflow {
    flex-direction: row;
    max-width: 100em;
    margin-left: auto;
    margin-right: auto;
  }

  .intro__workflow-text {
    width: 525px;
  }

  .logiciels {
    height: 100vh;
  }

  .decks__text {
    margin-bottom: 40px;
  }

  .autonomie {
    padding-left: 7vw;
    padding-right: 9vw;
    display: block;
  }

  .vulgarisation {
    padding-left: 10vw;
    padding-right: 0;
    display: block;
  }

  .integrations__lottie {
    width: 80em;
  }

  .sharing__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 86em;
  }

  .sharing__image {
    width: 1198px;
  }

  .sharing__hand {
    width: 274px;
    left: 167px;
  }

  .sharing__access {
    width: 335px;
    top: 157px;
    left: 22px;
  }

  .sharing__invite {
    width: 362px;
    top: 317px;
    right: 9px;
  }

  .sharing__plane-wrapper {
    width: auto;
  }

  .sharing__plane {
    width: 396px;
  }

  .sharing__plane-shadow {
    display: inline-block;
    bottom: 53px;
    right: 57px;
  }

  .news {
    padding-left: 10vw;
    padding-right: 10vw;
    display: block;
  }

  .news__wrapper {
    max-width: 100em;
    margin-left: auto;
    margin-right: auto;
  }

  .news__card-content {
    flex-direction: column;
    flex: 36em;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .news__card-heading {
    font-size: 4em;
  }

  .testimonials {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .testimonials__wrapper {
    max-width: 100em;
  }

  .testimonials__card {
    flex-grow: 1;
    flex-basis: 0%;
  }

  .testimonials__card-role {
    text-align: center;
  }

  .footer {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .footer__wrapper {
    max-width: 100em;
  }

  .footer__logo {
    width: auto;
    height: auto;
  }

  .integrations__wrapper, .formatting__wrapper {
    max-width: 80em;
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero {
    padding-bottom: 0;
  }

  .about-hero__wrapper {
    width: 50em;
  }

  .about-hero__heading {
    font-size: 7em;
  }

  .about-hero__image {
    width: 35em;
    margin-bottom: 0;
  }

  .about-intro__wrapper {
    max-width: 60em;
  }

  .about__heading-wrapper {
    width: 828px;
  }

  .about__heading {
    font-size: 120px;
    line-height: 120px;
  }

  .about__paragraph1-wrapper, .about__paragraph2-wrapper {
    max-width: 60em;
  }

  .about-jobs__mission, .about-jobs__benefits, .divider-800 {
    max-width: 70vw;
  }

  .about-jobs__positions-wrapper {
    width: 50vw;
  }

  .newsletter-cta__container {
    padding-top: 3em;
    padding-bottom: 2em;
    padding-left: 3em;
  }

  .blog-essential__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .blog-essential__article {
    opacity: 0;
    width: 50%;
  }

  .hero__container {
    height: 200vh;
  }

  .hero__cta-section {
    margin-top: -10vh;
    margin-bottom: 8vw;
  }

  .hero__intro {
    margin-top: 22vw;
  }

  .div-animated {
    top: 50em;
  }

  .menu-title {
    font-size: 13px;
  }

  .anim_mouse {
    padding-top: 11.6rem;
  }

  .scroll_txt {
    top: 8px;
  }

  .requests__heading {
    margin-bottom: 45px;
  }

  .requests__text.today {
    width: 33vw;
  }

  .footer__wrapper-2 {
    justify-content: flex-start;
    padding-top: 11vh;
    padding-left: 4vw;
  }

  .button_flight {
    background-color: var(--dodger-blue);
    text-transform: uppercase;
    margin-top: 4vh;
    padding-top: 2.5vh;
    padding-bottom: 2vh;
    font-size: 2.3vh;
    line-height: 2.3vh;
  }

  .button_flight:hover {
    background-color: var(--dodger-blue);
  }

  .formation_heading.center {
    font-size: 2vw;
    line-height: 3vh;
  }

  .formation_heading.sub {
    margin-top: .5vh;
    font-size: 1vw;
    line-height: 3vh;
  }

  .survol_wrap {
    margin-bottom: 40px;
  }

  .survol_wrap.wide {
    width: 90vw;
  }

  .iconswrap {
    top: 100px;
  }

  .survol {
    margin-bottom: 36vh;
  }

  .survol.nopadfoot {
    margin-bottom: 8vh;
  }

  .contact_card_columns {
    margin-top: 3vh;
  }

  .telephome_block {
    margin-top: 0;
  }

  .category_item {
    font-size: 1.3vw;
    line-height: 1.6vw;
  }

  .heading {
    font-size: 1.2vw;
  }

  .contact_subtt_wrap {
    margin-bottom: 1vh;
  }

  .link-2 {
    font-size: 1.3vw;
  }

  .address_wrap {
    margin-top: 3vh;
  }

  .mapsclick {
    border: 1px solid var(--royal-blue);
    background-image: url('../images/cours-prive-groupe-formation-infographie-video-zoom-quebec-canada.jpg');
    background-position: 50%;
    background-size: cover;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
    margin-top: 10vh;
    display: flex;
  }

  .mapstype {
    color: var(--white);
    text-align: center;
    text-shadow: 1px 1px 4px #000000d6;
    font-family: Markpro, sans-serif;
    font-size: 1.6vw;
    font-weight: 700;
    line-height: 2vw;
    text-decoration: none;
  }

  .politiques {
    margin-bottom: 36vh;
  }

  .politiques.nopadfoot {
    margin-bottom: 8vh;
  }

  .rodalogo {
    height: 40%;
  }
}

@media screen and (min-width: 1440px) {
  .autonomie {
    padding-left: 8vw;
    padding-right: 11vw;
  }

  .vulgarisation {
    padding-bottom: 100px;
  }

  .testimonials__card {
    flex-grow: 1;
    flex-basis: 0%;
  }

  .about-hero {
    height: 60em;
  }

  .about-hero__wrapper {
    width: 55em;
  }

  .about-hero__heading {
    font-size: 9em;
  }

  .about-hero__image {
    width: 50em;
  }

  .about__investors-container {
    grid-column-gap: 180px;
    grid-row-gap: 66px;
  }

  .about-jobs__mission {
    max-width: 50vw;
  }

  .about-jobs__benefits, .divider-800 {
    max-width: 60vw;
  }

  .about-jobs__positions-wrapper {
    width: 40vw;
  }

  .blog-hero__heading {
    font-size: 4em;
  }

  .blog-hero__image {
    height: 800px;
  }

  .newsletter-cta__image {
    right: 60px;
  }

  .blog-articles__image1, .blog-articles__image2, .blog-articles__image3, .blog-articles__image4, .blog-articles__image5, .blog-articles__image6, .blog-articles__image7, .blog-articles__image8, .blog-articles__image9, .blog-articles__image10, .blog-articles__image11, .blog-articles__image12 {
    width: 22vw;
    height: 15vw;
  }

  .blog-hero__heading-link {
    width: 80%;
  }

  .hero__container {
    height: 150vh;
  }

  .hero__cta-section {
    margin-top: 0;
    margin-bottom: 4vw;
  }

  .hero__headline {
    max-width: 18ch;
  }

  .hero__hand {
    display: inline-block;
  }

  .intro__workflow-asset {
    flex-basis: 55em;
  }

  .div-animated {
    top: 90em;
  }

  .disclaimer {
    margin-left: 15vw;
    margin-right: 15vw;
  }

  .menu-title {
    font-size: 14px;
  }

  .anim_mouse {
    padding-top: 13rem;
    position: absolute;
  }

  .scroll_txt {
    top: 10px;
  }

  .formation_splash {
    padding-top: 9vh;
  }

  .formation_title_wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .iconswrap {
    top: 100px;
  }

  .contact_splash {
    padding-top: 9vh;
  }

  .telephome_block {
    margin-top: 0;
  }

  .rodalogo {
    height: 40%;
  }
}

@media screen and (min-width: 1920px) {
  .button.button--blue {
    padding-top: 3vh;
    padding-bottom: 3vh;
    font-size: .9vw;
  }

  .about-hero {
    height: 70em;
  }

  .about-jobs__mission, .about-jobs__benefits, .divider-800 {
    max-width: 44vw;
  }

  .about-jobs__positions-wrapper {
    width: 35vw;
  }

  .blog-hero__wrapper {
    max-width: 100em;
  }

  .blog-recent__heading {
    font-size: 2em;
  }

  .newsletter-cta__container, .blog-essential__container, .blog-articles__container {
    max-width: 100em;
  }

  .blog-articles__image1 {
    width: 32em;
    height: 22em;
  }

  .blog-articles__article-heading {
    font-size: 2em;
  }

  .blog-articles__image2, .blog-articles__image3, .blog-articles__image4, .blog-articles__image5, .blog-articles__image6, .blog-articles__image7, .blog-articles__image8, .blog-articles__image9, .blog-articles__image10, .blog-articles__image11, .blog-articles__image12 {
    width: 32em;
    height: 22em;
  }

  .hero__cta-section {
    margin-top: -4vh;
    margin-bottom: 4vw;
  }

  .intro__workflow-asset {
    flex-basis: 70em;
  }

  .blog-recent__scrollable {
    max-width: 100em;
  }

  .disclaimer {
    margin-left: 25vw;
    margin-right: 25vw;
  }

  .navigation-link {
    font-size: .9vw;
  }

  .pricemenu {
    font-size: 17px;
    top: 7px;
  }

  .menu-title {
    font-size: 19px;
    line-height: 21px;
  }

  .navigation-full {
    flex-direction: row;
  }

  .nav-link-details {
    font-size: 17px;
    line-height: 17px;
    top: 7px;
  }

  .navigation-container {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .image-11 {
    width: 2.7vw;
    height: 2.7vw;
  }

  .text-block-63 {
    font-size: .9vw;
  }

  .navigation-drop-container {
    max-width: none;
  }

  .anim_mouse {
    padding-top: 16rem;
  }

  .scroll_txt {
    top: 12px;
  }

  .footer__wrapper-2 {
    margin-top: 0;
  }

  .button_flight.button--blue {
    padding-top: 1.5vh;
    padding-bottom: 1.5vh;
    font-size: .9vw;
  }

  .formation_splash {
    padding-top: 9vh;
  }

  .suvrol_tt.plan-de-cours, .others_tt.plan-de-cours, .others_subtt.plan-de-cours {
    margin-top: 3vh;
  }

  .contact_splash {
    padding-top: 9vh;
  }

  .telephome_block {
    margin-top: 0;
  }

  .rodalogo {
    width: 40%;
    height: 40%;
  }
}

@media screen and (max-width: 991px) {
  .nav {
    padding: 8px 0;
  }

  .nav__container {
    align-content: center;
    max-width: 100vmax;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4vw;
    padding-right: 4vw;
    position: relative;
  }

  .nav__menu {
    z-index: 9999;
    background-color: var(--white);
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    display: block;
    box-shadow: 0 4px 26px #0000001f;
  }

  .nav__mobilebutton {
    color: var(--black);
    order: 3;
    padding: 8px;
  }

  .nav__mobilebutton.w--open {
    color: var(--black);
    background-color: #0000;
  }

  .nav__mobilebutton.nav__mobilebutton--white {
    color: var(--white);
  }

  .nav__buttons {
    order: 2;
    position: absolute;
    right: 100px;
  }

  .button {
    padding: 10px;
  }

  .button.button--blue {
    margin-left: 35%;
    padding: 4vh 3vw;
    font-size: 2vw;
  }

  .nav__link-div-jobs {
    border-top: 1px solid var(--darker-grey);
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 1.3em 4vw;
    display: none;
  }

  .nav__link-div-jobs-counter {
    position: static;
    top: auto;
    right: auto;
  }

  .nav__link-div-learning.nav__link-div-learning--space {
    margin-right: 0;
    display: none;
  }

  .nav__link-div {
    border-top: 1px solid var(--darker-grey);
    height: auto;
    padding: 1.6em 6vw 1.3em;
    display: flex;
  }

  .nav__link-div:hover {
    border-bottom: 1px #000;
  }

  .nav__link-div.nav__link-div--black:hover {
    border-bottom-style: none;
  }

  .nav__link-div.nav__link-div--black.nav__link-div--space {
    margin-right: 0;
  }

  .nav__link-div.nav__link-div--black.nav__link-div--space.w--current {
    border-bottom-style: none;
  }

  .nav__link-div.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
    justify-content: flex-start;
    display: flex;
  }

  .nav__link-div.nav__link-div--white {
    color: var(--black);
  }

  .nav__link-div.nav__link-div--white.w--current {
    border-bottom-style: none;
  }

  .nav__link-div.nav__link-div--white.nav__link-div--space {
    margin-right: 0;
  }

  .nav-shadow {
    height: 56px;
  }

  .clients {
    padding-bottom: 0;
  }

  .intro__logos-wrapper {
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: center;
    place-items: center;
    width: 100%;
    height: auto;
    display: flex;
  }

  .intro__logo.intro__logo--rmargin {
    margin-right: 0;
  }

  .intro__workflow {
    flex-direction: column;
    justify-content: flex-start;
  }

  .intro__workflow-text {
    width: 100%;
  }

  .intro__workflow-heading {
    text-align: center;
    font-size: 3.2em;
    line-height: 1em;
  }

  .intro__workflow-paragraph {
    text-align: center;
  }

  .logiciels {
    height: 50vh;
    padding-top: 60px;
  }

  .decks__text {
    width: 80%;
  }

  .decks__wrapper {
    transform: translate(0, -24px);
  }

  .autonomie {
    padding-top: 60px;
  }

  .formatting__text {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
    display: flex;
  }

  .formatting__lottie {
    width: 90vw;
    margin-left: 0;
    position: static;
  }

  .vulgarisation {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .integrations__text {
    width: 100%;
    margin-bottom: 40px;
    padding-top: 0;
  }

  .integrations__text-heading {
    text-align: center;
  }

  .integrations__lottie {
    width: 90vw;
    margin-right: 0;
  }

  .projets {
    padding-top: 60px;
  }

  .sharing__text {
    width: 80%;
  }

  .sharing__plane-wrapper {
    width: 30%;
    right: 20px;
  }

  .news {
    padding-top: 60px;
  }

  .news__wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
  }

  .news__card-content {
    flex: 0 auto;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .testimonials__wrapper {
    flex-direction: column;
  }

  .testimonials__card {
    flex: 1;
  }

  .cta {
    padding: 60px 4vw;
  }

  .cta__container {
    width: 100%;
  }

  .footer {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .footer__wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 40px;
    grid-template: "Area Area-2 Area-3"
                   "Area-4 Area-4 ."
                   / 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .integrations__text-paragraph {
    text-align: center;
  }

  .integrations__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }

  .formatting__wrapper {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .about-hero {
    height: 42em;
  }

  .about-hero__image {
    margin-bottom: 0;
  }

  .about-intro, .about {
    padding: 60px 4vw;
  }

  .about__heading {
    font-size: 4em;
  }

  .about__confetti {
    width: 30em;
  }

  .about__paragraph1-wrapper, .about__paragraph2-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .about__investors-container {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .about-numbers {
    padding: 60px 4vw;
  }

  .about-numbers__metric {
    font-size: 1.6em;
    line-height: 1em;
  }

  .about-jobs {
    padding: 60px 4vw;
  }

  .about-jobs__benefits {
    margin-bottom: 60px;
  }

  .about-jobs__benefits-heading {
    font-size: 1.8em;
  }

  .about-jobs__positions.about-jobs__positions--86margin {
    margin-top: 60px;
  }

  .about-jobs__positions-wrapper {
    width: 100%;
  }

  .blog-hero {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .blog-hero__wrapper {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .blog-hero__image.blog-hero__image--nomobile {
    display: none;
  }

  .blog-hero__image.blog-hero__image--onlymobile {
    background-image: url('../images/cover-thumbnail-420x300.jpg');
    background-position: 50% 0;
    background-size: cover;
    width: 90vw;
    height: 35vh;
    display: block;
  }

  .blog-recent {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-recent__container {
    width: 145vw;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .newsletter-cta {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .newsletter-cta__image {
    display: none;
  }

  .blog-essential {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .blog-essential__wrapper {
    grid-column-gap: 40px;
  }

  .blog-essential__article-nr {
    font-size: 3em;
    line-height: 1em;
  }

  .blog-articles {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .blog-articles__wrapper {
    display: none;
  }

  .blog-articles__article {
    opacity: 0;
  }

  .blog-articles__image1, .blog-articles__image2, .blog-articles__image3, .blog-articles__image4, .blog-articles__image5, .blog-articles__image6, .blog-articles__image7, .blog-articles__image8, .blog-articles__image9, .blog-articles__image10 {
    width: 100%;
    height: 28vw;
  }

  .blog-articles__image11 {
    width: 100%;
    height: 29vw;
  }

  .blog-articles__image12 {
    width: 100%;
    height: 28vw;
  }

  .blog-hero__image-link {
    flex-basis: 100%;
    margin-bottom: 40px;
  }

  .hero__transform-target {
    transform-origin: 50%;
    top: 0;
  }

  .hero__intro {
    margin-top: 16vh;
    font-size: .16em;
    top: 39.3vh;
  }

  .intro__workflow-asset {
    flex: none;
    width: 90vw;
    margin-right: 0;
  }

  .about__name-teammember {
    font-size: 1.3em;
    line-height: 1em;
  }

  .about__role-teammember {
    font-size: 1em;
    line-height: 1.5em;
  }

  .formatting__heading, .formatting__paragraph, .formatting__paragraph.formatting__paragraph--space {
    text-align: center;
  }

  .nav__mobileicon {
    color: var(--black);
    font-size: 32px;
  }

  .nav__link-div-jobstext {
    height: auto;
  }

  .nav__link-div-jobstext.nav__link-div--black.nav__link-div--space {
    margin-right: 0;
  }

  .nav__link-div-jobstext.nav__link-div--black.nav__link-div--space.w--current {
    border-bottom-style: none;
  }

  .nav__link-div-jobstext.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
    justify-content: flex-start;
    display: flex;
  }

  .nav__link-div-onlymobile {
    border-top: 1px solid var(--darker-grey);
    height: auto;
    padding: 1.6em 6vw 1.6em 10vw;
    display: flex;
  }

  .nav__link-div-onlymobile.nav__link-div--black.nav__link-div--space {
    margin-right: 0;
  }

  .nav__link-div-onlymobile.nav__link-div--black.nav__link-div--space.w--current {
    border-bottom-style: none;
  }

  .nav__link-div-onlymobile.nav__link-div--black.nav__link-div--space.nav__link-div--hidedesktop {
    justify-content: flex-start;
    display: flex;
  }

  .nav__link-div-jobs-mobileonly {
    border-top: 1px solid var(--darker-grey);
    color: var(--black);
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: auto;
    padding: 1.6em 6vw;
    text-decoration: none;
    display: flex;
  }

  .blog-recent__scrollable {
    width: 100vw;
    overflow: auto;
  }

  .blog-articles__wrapper-mobile {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 62px;
    display: grid;
  }

  .navigation {
    display: none;
  }

  .banner_sante_canada {
    z-index: 5000;
    width: 100%;
    display: block;
    position: relative;
    top: -416px;
  }

  .mobile-nav {
    background-color: #fff;
    padding-top: 8vh;
    box-shadow: 42px 42px 55px #20355a17;
  }

  .image-14 {
    display: none;
  }

  .menu-title {
    margin-top: 1vh;
  }

  .navigation-full {
    background-color: #fff;
  }

  .nav-link-details {
    font-size: 15px;
    line-height: 16px;
  }

  .nav-link-details.mob {
    width: 95%;
    font-size: 14px;
  }

  .dropdown-list-2 {
    background-color: #fff;
  }

  .dropdown-list-2.w--open {
    position: relative;
  }

  .dropdown-link-mobile {
    background-image: none;
    border-top: 1px solid #0000002b;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .mobile-toggle {
    text-transform: uppercase;
    font-family: Eina, sans-serif;
  }

  .link-block-2 {
    width: 180px;
  }

  .mobile-nav-link {
    text-transform: uppercase;
    justify-content: center;
    width: 100%;
    font-family: Eina, sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
  }

  .image-11 {
    width: 6vw;
    height: 6vw;
    margin-left: 4vw;
    margin-right: 1vw;
  }

  .navigation-left {
    display: none;
  }

  .logo_santecanada {
    margin-left: auto;
    margin-right: auto;
  }

  .flowbase-logo {
    width: 166px;
    position: relative;
    top: 1vh;
  }

  .text-block-65 {
    font-family: Eina, sans-serif;
    font-size: 16px;
    font-weight: 700;
  }

  .navigation-wrap {
    z-index: 2500;
    position: relative;
  }

  .sc_mobile {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 13px;
    position: relative;
  }

  .menu-mob {
    color: #fff;
    background-color: #0000;
    border-radius: 100px;
    font-size: 22px;
  }

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

  .navigation-container-mob {
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0;
  }

  .mobile-dropdown {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .nav-content-wrap {
    justify-content: center;
  }

  .header_switch_language {
    left: -9px;
  }

  .npnwrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .navigation-mob {
    z-index: 9999;
    border-bottom: 1px solid #4455671c;
    flex-direction: row;
    justify-content: center;
    padding: 10px 4vw;
    display: flex;
    position: relative;
  }

  .brand-2 {
    top: -8px;
  }

  .top-nav-container {
    justify-content: flex-end;
  }

  .icon {
    color: #000;
    font-family: Eina, sans-serif;
    font-size: 44px;
    line-height: 44px;
    position: relative;
  }

  .anim_mouse {
    width: 30vw;
    max-width: 107.483ch;
    margin-top: -12vh;
    display: block;
  }

  .lottie_anim_mouse {
    display: none;
  }

  .lottie_anim_swipe {
    width: 12vw;
    margin-bottom: -56px;
    display: block;
    position: relative;
  }

  .requests__text.today {
    width: 80vw;
    font-size: 2vw;
    line-height: 3vw;
  }

  .footer__wrapper-2 {
    padding-top: 7vh;
  }

  .button_flight {
    padding: 10px;
  }

  .mobile_menu_itemwap {
    flex-direction: column;
    align-items: flex-start;
    width: 99%;
    display: flex;
  }

  .formation_splash {
    padding-top: 18vh;
  }

  .bold-text {
    font-family: Markpro, sans-serif;
  }

  .formation_heading {
    font-size: 4vw;
  }

  .logo_titre_formation {
    width: 10vw;
    height: 10vw;
    margin-left: 0;
    margin-right: 1vw;
  }

  .survol_wrap {
    width: 80%;
  }

  .logo_plancours {
    width: 140px;
    height: 140px;
    margin-left: 0;
    margin-right: 0;
  }

  .contact_splash {
    padding-top: 18vh;
  }

  .contact_head {
    height: 40vh;
    padding-top: 18vh;
  }

  .comtact_head_wrap {
    width: 90vw;
  }

  .telephome_block {
    width: 35vw;
    margin-top: 0;
    font-size: 3vw;
  }

  .linkphone {
    font-size: 3vw;
  }

  .category_item {
    font-size: 2.4vw;
    line-height: 2.8vw;
  }

  .heading {
    font-size: 2.2vw;
  }

  .link-2 {
    font-size: 2.4vw;
  }

  .politiques {
    padding-top: 20vh;
  }

  .mapwide {
    background-position: 60%;
    height: 40vh;
  }

  .heading-2 {
    font-size: 88px;
  }
}

@media screen and (max-width: 767px) {
  .button.button--white-whitebg.button--space.button--nomobile {
    display: none;
  }

  .button.button--blue {
    margin-top: 1vh;
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .button.button--white-purplebg.button--space.button--nomobile {
    display: none;
  }

  .hero__cta-heading {
    font-size: 1.4em;
    line-height: 1em;
  }

  .hero__cta-inputwrapper {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
    display: block;
  }

  .hero__cta-input {
    border: 1px solid var(--darker-grey);
    border-radius: 4px;
    width: 100%;
    margin-bottom: 16px;
  }

  .hero__cta-button {
    border-radius: 4px;
    width: 100%;
    height: auto;
  }

  .hero__cta-disclaimer {
    text-align: center;
  }

  .intro__logos {
    margin-bottom: 60px;
  }

  .intro__logos-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .intro__logo.intro__logo--rmargin {
    margin-bottom: 24px;
  }

  .intro__workflow-text {
    margin-bottom: 20px;
  }

  .intro__workflow-heading {
    font-size: 2.6em;
  }

  .logiciels {
    height: 70vh;
  }

  .decks__text {
    width: 90%;
  }

  .decks__text-heading, .integrations__text-heading {
    font-size: 2.6em;
  }

  .sharing__text {
    margin-bottom: 40px;
  }

  .sharing__text-heading {
    font-size: 2.6em;
  }

  .news__card {
    margin-left: 0;
    margin-right: 0;
  }

  .news__card-heading, .testimonials__heading {
    font-size: 2.6em;
  }

  .testimonials__card {
    margin-left: 0;
    margin-right: 0;
  }

  .cta__heading {
    font-size: 2.6em;
  }

  .cta__input-wrapper {
    width: 100%;
    display: block;
  }

  .cta__input {
    border-style: solid;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 16px;
  }

  .cta__button {
    border-radius: 4px;
    width: 100%;
    height: auto;
  }

  .cta__disclaimer {
    text-align: center;
  }

  .footer__wrapper {
    grid-template: "Area Area-2"
                   "Area-3 ."
                   "Area-4 Area-4"
                   / 1fr 1fr;
  }

  .about-hero {
    height: 24em;
  }

  .about-hero__wrapper {
    width: 60vw;
  }

  .about-hero__heading {
    letter-spacing: -1px;
    margin-bottom: -1vh;
    font-size: 10vw;
    line-height: 1em;
  }

  .about-hero__image {
    width: 16em;
    margin-left: 30px;
  }

  .about-intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-intro__paragraph {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .about {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about__heading-wrapper {
    width: 70vw;
  }

  .about__heading {
    font-size: 2.6em;
  }

  .about__confetti {
    width: 23em;
  }

  .about__paragraph1-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .about__paragraph1 {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .about__photos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about__paragraph2-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .about__culture {
    grid-template-rows: 40vw auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .about__paragraph2 {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .about__investors {
    margin-top: 40px;
  }

  .about__investors-heading {
    font-size: 2.6em;
  }

  .about__investors-container {
    grid-template-columns: 1fr;
  }

  .about__investors-logo.about__investors-logo--50space {
    margin-bottom: 30px;
  }

  .about__investors-name, .about__investors-info {
    font-size: 1.1em;
  }

  .about-numbers {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-numbers__heading {
    margin-bottom: 40px;
    font-size: 2.6em;
  }

  .about-numbers__wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 8px;
    grid-template: ". ."
                   ". ."
                   ". Area-2"
                   ". Area"
                   / auto auto auto;
    margin-bottom: 40px;
  }

  .about-numbers__glassdoor {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .about-numbers__rating-link {
    font-size: 1.1em;
  }

  .about-jobs {
    align-items: flex-start;
  }

  .about-jobs__mission-heading {
    font-size: 2.8em;
  }

  .about-jobs__mission-paragraph {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .about-jobs__benefits-wrapper {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .about-jobs__benefit {
    font-size: 1.2em;
    line-height: 1.8em;
  }

  .about-jobs__positions-heading {
    font-size: 1.8em;
  }

  .about-jobs__positions-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    display: flex;
  }

  .about-jobs__position-title, .about-jobs__position-location {
    font-size: 1.1em;
    line-height: 2em;
  }

  .blog-hero {
    padding-top: 80px;
  }

  .blog-hero__heading {
    font-size: 2.6em;
  }

  .blog-hero__paragraph {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .blog-hero__image.blog-hero__image--onlymobile {
    height: 26vh;
  }

  .blog-recent {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .blog-recent__container {
    width: 170vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .blog-recent__wrapper {
    flex-basis: 19em;
  }

  .blog-recent__heading {
    font-size: 1.5em;
    line-height: 1.5em;
  }

  .blog-recent__paragraph {
    font-size: 1.1em;
    line-height: 1.7em;
  }

  .newsletter-cta__container {
    opacity: 0;
    padding-right: 2em;
  }

  .newsletter-cta__heading {
    font-size: 2.3em;
    line-height: 1.2em;
  }

  .newsletter-cta__paragraph {
    font-size: 1.2em;
    line-height: 1.5em;
  }

  .newsletter-cta__input-wrapper {
    width: 100%;
    display: block;
  }

  .newsletter-cta__input {
    border-style: solid;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 8px;
  }

  .newsletter-cta__button {
    border-radius: 4px;
    width: 100%;
    height: auto;
  }

  .blog-essential {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .blog-essential__wrapper {
    display: block;
  }

  .blog-essential__article {
    margin-bottom: 40px;
  }

  .blog-essential__article-heading {
    font-size: 1.6em;
    line-height: 1.5em;
  }

  .blog-articles {
    margin-bottom: 40px;
  }

  .blog-articles__article {
    opacity: 0;
  }

  .blog-articles__image1 {
    height: 60vw;
  }

  .blog-articles__article-heading {
    font-size: 1.5em;
    line-height: 1.5em;
  }

  .blog-articles__paragraph {
    font-size: 1.1em;
    line-height: 1.7em;
  }

  .blog-articles__image2, .blog-articles__image3, .blog-articles__image4, .blog-articles__image5, .blog-articles__image6, .blog-articles__image7, .blog-articles__image8, .blog-articles__image9, .blog-articles__image10, .blog-articles__image11, .blog-articles__image12 {
    height: 60vw;
  }

  .hero__container {
    height: 300vh;
  }

  .hero__intro {
    margin-top: 6vh;
  }

  .intro__workflow-asset {
    width: 60em;
  }

  .div-animated {
    top: 120vh;
  }

  .formatting__heading {
    font-size: 2.6em;
  }

  .blog-articles__wrapper-mobile {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .disclaimer__p {
    font-size: 1.1em;
  }

  .disclaimer__bg {
    opacity: .9;
  }

  .disclaimer__wrapper {
    padding-bottom: 3em;
  }

  .banner_sante_canada, .logo_santecanada {
    display: none;
  }

  .flowbase-logo {
    top: 1.2vh;
  }

  .menu-mob {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .header_switch_language {
    left: -2px;
  }

  .navigation-mob {
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .icon {
    top: .5vh;
  }

  .anim_mouse {
    margin-top: -27vh;
  }

  .lottie_anim_swipe {
    width: 14vw;
  }

  .lien {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .requests__video-wrapper {
    width: 83vw;
    height: 83vw;
    margin: auto;
    position: relative;
    top: auto;
    left: auto;
  }

  .requests__video {
    object-fit: cover;
  }

  .requests__wrapper {
    align-items: center;
    margin-top: 22vw;
    margin-left: auto;
    margin-right: auto;
  }

  .requests__heading {
    text-align: center;
    font-size: 12vw;
  }

  .requests__text {
    text-align: center;
    margin-top: 10vw;
    font-size: 4vw;
  }

  .requests__text.today {
    text-align: left;
    width: 90vw;
    margin-top: 2.1vw;
    font-size: 3vw;
    line-height: 3.5vw;
  }

  .footer__language-menu {
    margin-bottom: 6vw;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    bottom: 8vw;
  }

  .footer__powered {
    display: none;
  }

  .footer__heading-2 {
    font-size: 8vw;
  }

  .footer__cta {
    width: 83vw;
    font-size: 6.66vw;
    position: absolute;
    bottom: 30vw;
  }

  .footer__wrapper-2 {
    justify-content: flex-start;
    margin-top: 0;
    padding-top: 10vw;
    padding-right: 4vw;
  }

  .button_flight.button--white-whitebg.button--space.button--nomobile, .button_flight.button--white-purplebg.button--space.button--nomobile {
    display: none;
  }

  .formation_splash {
    padding-top: 9vh;
  }

  .hero__intro-2 {
    display: block;
  }

  .formation_heading {
    width: 100%;
    margin-bottom: 0;
    font-size: 3.4vw;
    line-height: 3.4vh;
  }

  .formation_heading.center {
    font-size: 5vw;
  }

  .formation_heading.sub {
    font-size: 2.3vw;
  }

  .formation_title_wrap {
    width: 90vw;
  }

  .logo_titre_formation {
    width: 10vw;
    height: 10vw;
    margin-top: 1vh;
    margin-bottom: 0;
    margin-left: 0;
  }

  .survol_wrap {
    width: 90%;
  }

  .suvrol_tt, .suvrol_pdf_tt {
    font-size: 2.6em;
  }

  .suvol_ident {
    font-size: 1.2em;
  }

  .application_splash_photo {
    background-position: 50%;
  }

  .appscreen_image {
    width: 70vw;
  }

  .logo_plancours {
    width: 140px;
    height: 140px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .others_tt, .others_subtt {
    font-size: 2.6em;
  }

  .contact_splash {
    padding-top: 9vh;
  }

  .comtact_head_wrap {
    width: 90vw;
  }

  .telephome_block {
    width: 45vw;
    margin-top: 0;
    font-size: 4vw;
  }

  .linkphone {
    font-size: 4vw;
  }

  .category_item {
    font-size: 4vw;
    line-height: 4vw;
  }

  .heading {
    margin-top: 3vh;
    font-size: 4vw;
    line-height: 4vh;
  }

  .link-2 {
    font-size: 4vw;
    line-height: 4vw;
  }

  .mapwide {
    background-position: 60%;
  }

  .contact-container {
    padding-left: 20px;
  }

  .maindev {
    justify-content: flex-start;
  }

  .rodalogo {
    width: 90%;
    margin-top: 0;
  }
}

@media screen and (max-width: 479px) {
  .nav__buttons {
    right: 70px;
  }

  .button.button--blue {
    font-size: 3vw;
  }

  .hero__cta-heading {
    line-height: 1.5em;
  }

  .hero__cta-inputwrapper {
    flex: 1;
    align-self: stretch;
  }

  .hero__cta-input {
    width: 100%;
  }

  .intro__logos-heading {
    font-size: 12px;
  }

  .intro__logos-wrapper {
    flex-direction: column;
  }

  .decks__wrapper {
    width: 180vw;
  }

  .decks__grid.decks__grid--margin {
    margin-right: 2vw;
  }

  .decks__image {
    width: 30vw;
  }

  .decks__image.decks__image--margin {
    margin-bottom: 1vh;
  }

  .autonomie, .vulgarisation {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .projets {
    padding-top: 0;
  }

  .sharing__text-paragraph {
    z-index: 9990;
  }

  .news__card {
    padding: 2em;
  }

  .cta__input-wrapper {
    flex: 1;
    align-self: stretch;
  }

  .cta__input {
    width: 100%;
  }

  .integrations__wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-recent__container {
    width: 240vw;
  }

  .newsletter-cta__input-wrapper {
    flex: 1;
    align-self: stretch;
  }

  .newsletter-cta__input {
    width: 100%;
  }

  .hero {
    position: relative;
    top: 2vh;
  }

  .hero__container {
    height: 150vh;
  }

  .hero__cta-section {
    margin-bottom: 20vw;
  }

  .hero__transform-target {
    top: 2.6vh;
  }

  .hero__intro {
    width: 70vw;
    margin-top: 14vh;
    font-size: .44em;
    line-height: 1.5em;
    top: 30.6vh;
  }

  .hero__headline {
    margin-top: -2vh;
  }

  .intro__workflow-asset {
    width: 25em;
  }

  .bannerlink.npn {
    letter-spacing: -1px;
  }

  .nav-link-details {
    font-family: Markpro, sans-serif;
    font-size: 13px;
  }

  .nav-link-details.mob {
    font-family: Eina, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
  }

  .dropdown-link-mobile {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .flowbase-logo {
    width: 320px;
  }

  .header_switch_language {
    top: -9px;
    left: 0;
  }

  .npnwrap {
    width: 30vw;
  }

  .navigation-mob {
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .anim_mouse {
    width: 70vw;
    margin-top: 39vh;
    display: flex;
  }

  .scroll_txt {
    font-size: 18px;
    line-height: 18px;
  }

  .lottie_anim_swipe {
    width: 32%;
    margin-bottom: -34px;
  }

  .client_link {
    width: 44vw;
    margin-bottom: 36px;
  }

  .requests__text.today {
    text-align: center;
    width: 100%;
    font-size: 4.5vw;
    line-height: 6vw;
  }

  .footer__heading-2 {
    text-align: center;
  }

  .footer__heading-wrapper {
    align-items: center;
    width: 100%;
  }

  .footer__wrapper-2 {
    margin-top: 0;
    padding-top: 15vw;
    padding-right: 4vw;
  }

  .formation_splash {
    padding-top: 13vh;
  }

  .hero__intro-2 {
    display: block;
  }

  .formation_heading {
    margin-top: 2vh;
    margin-bottom: 1vh;
    font-size: 6vw;
  }

  .formation_heading.center {
    font-size: 5.4vw;
    line-height: 3vh;
  }

  .formation_heading.sub {
    margin-top: 0;
    font-size: 3vw;
  }

  .formation_title_wrap {
    flex-direction: column;
  }

  .logo_titre_formation {
    width: 15vw;
    height: 15vw;
    margin-top: 2vh;
    margin-left: 0;
  }

  .appscreen_image {
    width: 88vw;
    margin-top: -16vh;
  }

  .logo_plancours {
    width: 80vw;
    height: 80vw;
    margin-left: 0;
  }

  .contact_splash {
    padding-top: 13vh;
  }

  .contact_head {
    height: 30vh;
  }

  .telephome_block {
    justify-content: center;
    width: 100vw;
    margin-top: 0;
    padding-left: 0;
    font-size: 7vw;
  }

  .linkphone {
    font-size: 5vw;
  }

  .category_item {
    margin-bottom: 2vh;
    font-size: 5vw;
    line-height: 5vw;
  }

  .heading {
    font-size: 5vw;
  }

  .contact_subtt_wrap {
    margin-bottom: 1vh;
  }

  .contact_icons.telephone, .contact_icons.email {
    width: 7vw;
    height: 7vw;
  }

  .link-2 {
    font-size: 5vw;
  }

  .mapstype {
    text-align: center;
  }

  .politiques {
    padding-top: 20vh;
  }

  .contact-container {
    padding-left: 15px;
  }

  .main-section {
    padding-bottom: 40px;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .contact-header {
    font-size: 5vw;
    line-height: 5vw;
  }

  .contact-icon {
    width: 10vw;
    height: 10vw;
  }

  .submit-form {
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
    display: block;
  }

  .contact-column {
    padding-right: 15px;
  }

  .contact-column.right {
    padding-left: 15px;
  }

  .two-column-heading {
    text-align: center;
    line-height: 20px;
  }

  .list-item {
    display: flex;
  }

  .list-item-3 {
    flex-direction: row;
    display: flex;
  }

  .heading-3 {
    font-size: 1.5em;
    line-height: 2em;
  }

  .maindev {
    justify-content: flex-start;
  }

  .rodalogo {
    background-size: contain;
    height: 25%;
    margin-top: 0;
  }

  .infos {
    font-size: 16px;
  }
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-abaf1ce7 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-abaf1ce7 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-abaf1ce7 {
  grid-area: Area-3;
}

#w-node-_401260e6-c28f-e776-9c77-4038d7efbbca-ebaf1ce8 {
  grid-area: Area;
}

#w-node-_401260e6-c28f-e776-9c77-4038d7efbbf1-ebaf1ce8 {
  grid-area: Area-3;
}

#w-node-_640535ca-2b32-99fc-c2fe-36c433e5e2ac-ebaf1ce8 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_7bc43e11-ff24-cbdd-02fa-8cd8020778d2-ebaf1ce8 {
  grid-area: 3 / 2 / 5 / 4;
}

#w-node-_6e423346-ca0c-4139-fdae-c6f9562d6359-ebaf1ce8, #w-node-_7bc6401d-5edb-b5e3-5114-6907a76cf068-ebaf1ce8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_47267f2e-9d27-910e-124c-38b1a50a832b-ebaf1ce8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9110bbda-ac3e-35ee-f26f-a632cb821a19-ebaf1ce8 {
  grid-area: 2 / 4 / 3 / 5;
}

#w-node-_7ffa3924-ef28-5891-edd4-6cdadb050750-ebaf1ce8 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_380e8dd7-ac2e-7eed-3c9d-091543cd2630-43cd262e {
  grid-area: Area;
}

#w-node-_380e8dd7-ac2e-7eed-3c9d-091543cd2657-43cd262e {
  grid-area: Area-3;
}

#w-node-_32e10129-2707-fa69-8e71-2a2e29fe89b8-29fe89b6 {
  grid-area: Area;
}

#w-node-_32e10129-2707-fa69-8e71-2a2e29fe89ba-29fe89b6 {
  grid-area: Area-2;
}

#w-node-_32e10129-2707-fa69-8e71-2a2e29fe89df-29fe89b6 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-51af1ceb {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-51af1ceb {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-51af1ceb {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-7eaf1cec {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-7eaf1cec {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-7eaf1cec {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-62af1ced {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-62af1ced {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-62af1ced {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-25af1cee {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-25af1cee {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-25af1cee {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-89af1cef {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-89af1cef {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-89af1cef {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-12af1cf0 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-12af1cf0 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-12af1cf0 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-3caf1cf1 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-3caf1cf1 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-3caf1cf1 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-4baf1cf2 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-4baf1cf2 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-4baf1cf2 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-45af1cf3 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-45af1cf3 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-45af1cf3 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-e0af1cf4 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-e0af1cf4 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-e0af1cf4 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-0aaf1cf5 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-0aaf1cf5 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-0aaf1cf5 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-e9af1cf6 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-e9af1cf6 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-e9af1cf6 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-efaf1cf7 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-efaf1cf7 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-efaf1cf7 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-aaaf1cf8 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-aaaf1cf8 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-aaaf1cf8 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-deaf1cf9 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-deaf1cf9 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-deaf1cf9 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-07af1cfa {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-07af1cfa {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-07af1cfa {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-7eaf1cfb {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-7eaf1cfb {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-7eaf1cfb {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-e3af1cfc {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-e3af1cfc {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-e3af1cfc {
  grid-area: Area-3;
}

#w-node-fe281ab3-c07f-0d96-60b3-577a1b112991-1b11298f {
  grid-area: Area;
}

#w-node-fe281ab3-c07f-0d96-60b3-577a1b112993-1b11298f {
  grid-area: Area-2;
}

#w-node-fe281ab3-c07f-0d96-60b3-577a1b1129cd-1b11298f {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-46af1d00 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-46af1d00 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-46af1d00 {
  grid-area: Area-3;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a465f-0baf1d02 {
  grid-area: Area;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a4661-0baf1d02 {
  grid-area: Area-2;
}

#w-node-c61db530-beca-fb98-e173-8e819e0a46cc-0baf1d02 {
  grid-area: Area-3;
}

@media screen and (max-width: 991px) {
  #w-node-_52689639-77f9-af09-ed7f-733cbb12f40d-bb12f40b {
    grid-area: Area-4;
  }

  #w-node-_7bc43e11-ff24-cbdd-02fa-8cd8020778d2-ebaf1ce8 {
    grid-area: 3 / 2 / 5 / 4;
  }

  #w-node-_59cee851-4cb2-5cfd-10ec-0524e98edc7c-ebaf1ce8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c75cc7cf-eb9a-5e8e-21b2-1f1d53187401-531873fe {
    grid-area: Area-4;
  }

  #w-node-c75cc7cf-eb9a-5e8e-21b2-1f1d53187426-531873fe {
    grid-area: Area-3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_7bc43e11-ff24-cbdd-02fa-8cd8020778d2-ebaf1ce8 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_95111b44-e48a-673f-88c7-bddf22aae615-ebaf1ce8 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_19bca3f4-4839-e5c8-7aa7-895ae081cc2a-ebaf1ce8 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_9110bbda-ac3e-35ee-f26f-a632cb821a19-ebaf1ce8 {
    grid-area: Area;
  }

  #w-node-_7ffa3924-ef28-5891-edd4-6cdadb050750-ebaf1ce8 {
    grid-area: Area-2;
  }
}


@font-face {
  font-family: 'Eina';
  src: url('../fonts/eina-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eina';
  src: url('../fonts/eina-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Markpro';
  src: url('../fonts/markpro-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Markpro';
  src: url('../fonts/markpro-heavy-1.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}