@font-face {
  font-family: Switzer;
  src: url('../fonts/Switzer-VariableItalic.ttf') format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Switzer;
  src: url('../fonts/Switzer-Variable.ttf') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --900: #101211;
  --100: white;
  --accent-light: #fff0d1;
  --400: #dbdbdb;
  --700: #202221;
  --600: #525252;
  --300: #ebebeb;
  --800: #171918;
  --primaireorange: #b6821b;
  --200: #f7f7f7;
  --accent-medium: #ffda8f;
}

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

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

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

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

body {
  background-color: var(--900);
  color: var(--100);
  font-family: Switzer, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

h1 {
  color: var(--100);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
}

h3 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

h6 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

p {
  opacity: .72;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

a {
  color: var(--100);
  letter-spacing: -.01em;
  font-weight: 500;
  text-decoration: none;
  transition: transform .25s, opacity .25s;
  display: inline-block;
}

a:hover {
  opacity: .84;
}

a:active {
  transform: scale(.98);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

li {
  letter-spacing: .015em;
  margin-bottom: .25rem;
  margin-left: 1.5rem;
  padding-left: 1.25rem;
}

label {
  margin-bottom: .5rem;
  font-weight: 500;
  display: block;
}

strong {
  font-weight: 500;
}

blockquote {
  background-color: var(--accent-light);
  color: var(--900);
  border: .0625rem #000;
  border-radius: .75rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  font-family: Switzer, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

figcaption {
  color: var(--400);
  text-align: center;
  letter-spacing: .015em;
  margin-top: .75rem;
  font-size: .875rem;
}

.style-guide-block {
  margin-bottom: 2rem;
}

.form-error {
  color: var(--100);
  background-color: #fce3e3;
  border-radius: .375rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  font-weight: 600;
}

.form {
  margin-bottom: .5rem;
}

.form-radio-button, .form-checkbox {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.text-input {
  background-color: var(--700);
  color: var(--100);
  border: .125rem solid #0000;
  border-radius: .5rem;
  min-height: 3.5rem;
  margin-bottom: 0;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: border .25s, background-color .25s;
}

.text-input:hover {
  background-color: var(--600);
}

.text-input:focus {
  border: .125rem solid var(--400);
}

.text-input::placeholder {
  color: var(--300);
}

.text-input.form {
  background-color: var(--800);
  min-height: 7.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  line-height: 1.4em;
}

.text-input.form:hover {
  background-color: var(--700);
}

.text-input.area {
  min-height: 10.5rem;
}

.paragraph {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.paragraph.small {
  font-size: .875rem;
  line-height: 1.5;
}

.paragraph.extra-large {
  font-size: 1.75rem;
  line-height: 1.4;
}

.paragraph.large {
  font-size: 1.25rem;
  line-height: 1.45;
}

.radio-button {
  border-width: .1875rem;
  border-color: var(--100);
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0;
  margin-left: -1.5rem;
  margin-right: 1rem;
}

.radio-button.w--redirected-checked {
  border-width: .5rem;
  border-color: var(--primaireorange);
}

.visible-spacer {
  background-color: var(--600);
  border-radius: .25rem;
  display: inline-block;
}

.form-dropdown {
  background-color: var(--800);
  color: var(--300);
  border: .125rem solid #0000;
  border-radius: .75rem;
  width: 100%;
  min-height: 3.5rem;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem 1rem 1.375rem;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

.form-dropdown:hover {
  background-color: var(--700);
}

.form-dropdown:focus-visible, .form-dropdown[data-wf-focus-visible] {
  border: .125rem solid var(--300);
}

.form-dropdown::placeholder {
  color: #999;
  font-size: .9375rem;
}

.rich-text {
  line-height: 1.5;
}

.rich-text h3 {
  margin-top: 4.5rem;
  margin-bottom: 1.5rem;
}

.rich-text a {
  text-decoration: underline;
}

.rich-text h1 {
  margin-top: 5.5rem;
  margin-bottom: 2.5rem;
}

.rich-text h2 {
  margin-top: 5.5rem;
  margin-bottom: 2rem;
}

.rich-text h4 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

.rich-text h5 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.rich-text h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rich-text img {
  border-radius: .5rem;
  width: 100%;
}

.rich-text p {
  margin-bottom: 2rem;
}

.style-guide-colour-block {
  width: 12.5%;
  padding-right: 1rem;
  display: inline-block;
}

.check-box {
  border-width: .1875rem;
  border-color: var(--100);
  border-radius: .5rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0;
  margin-left: -1.5rem;
  margin-right: 1rem;
}

.check-box.w--redirected-checked {
  border-color: var(--primaireorange);
  background-color: var(--primaireorange);
  background-position: 50%;
  background-size: 1rem;
  border-radius: .5rem;
}

.color-block {
  background-color: var(--900);
  border-radius: .3125rem;
  width: 100%;
  height: 3.75rem;
  margin-bottom: .625rem;
  margin-left: 0;
  margin-right: 0;
}

.form-success {
  text-align: left;
  background-color: #ecfce3;
  border-radius: .375rem;
  padding: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.style-guide-colour-grid {
  flex-wrap: wrap;
  margin-top: 1.5rem;
  display: flex;
}

.field-block {
  z-index: 1;
  border: .0625rem #0000;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  min-width: 3.125rem;
  min-height: 1.25rem;
  margin-bottom: .5rem;
  display: flex;
}

.heading {
  letter-spacing: -.02em;
  font-family: Switzer, sans-serif;
  font-weight: 400;
}

.heading.medium {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.heading.extra-small {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

.heading.small {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

.heading.regular {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading.extra-large {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: .5rem;
  font-family: Switzer, sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

.heading.large {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
}

.button-secondary {
  color: var(--100);
  text-align: center;
  background-color: #ffffff14;
  border-radius: .5rem;
  flex: none;
  min-height: 3.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  transition: transform .25s, opacity .25s;
}

.button-secondary:hover {
  opacity: .72;
}

.button-secondary:active {
  transform: scale(.98);
}

.button-secondary.small {
  border-style: none;
  border-radius: .375rem;
  min-height: 2.5rem;
  padding: .5625rem 1.25rem;
  font-size: .9375rem;
}

.button-secondary.full-width {
  width: 100%;
}

.style-guide-section-header {
  margin-bottom: 3rem;
}

.text-box {
  max-width: 43.75rem;
}

.text-box._600px {
  max-width: 37.5rem;
  min-height: 4rem;
}

.text-box._500px {
  max-width: 31.25rem;
  min-height: 4rem;
}

.text-box._400px {
  max-width: 25rem;
  min-height: 4rem;
}

.text-box._800px {
  max-width: 50rem;
  min-height: 4rem;
}

.text-box._700px {
  max-width: 43.75rem;
  min-height: 4rem;
}

.text-box._900px {
  max-width: 56.25rem;
}

.style-guide-label {
  color: var(--400);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.25;
}

.field-label {
  color: var(--100);
  font-size: 1rem;
  font-weight: 500;
}

.block-quote {
  background-color: var(--accent-light);
  border-radius: .75rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  font-family: Switzer, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.section-presentation {
  filter: brightness(59%);
  background-image: url('../images/model-flocage.png');
  background-position: 50%;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 500px;
  margin-top: 0;
  display: block;
  position: static;
}

.section-presentation.banner {
  background-color: var(--800);
  background-color: var(--600);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .75rem;
  display: flex;
}

.section-presentation.login {
  background-color: var(--900);
  align-items: center;
  height: 100vh;
  display: flex;
}

.section-presentation.is-relative {
  position: relative;
}

.text-color-light-purple {
  color: var(--accent-light);
}

.container-large {
  z-index: 0;
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.container-large.centred {
  margin-left: auto;
  margin-right: auto;
}

.grid-2-column {
  grid-column-gap: 4.5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  display: grid;
}

.grid-2-column.align-baseline {
  align-items: baseline;
}

.grid-2-column.vertically-centred {
  align-items: center;
}

.nav-link {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--400);
  border-radius: .5rem;
  align-self: auto;
  align-items: center;
  min-height: 2.5rem;
  margin: auto;
  font-size: .9375rem;
  transition: transform .25s, background-color .25s, opacity .25s;
  display: flex;
}

.nav-link:hover {
  background-color: var(--800);
  opacity: .84;
}

.nav-link.w--current {
  z-index: 1;
  background-color: var(--700);
  color: var(--100);
}

.nav-link.w--current:hover {
  opacity: 1;
}

.nav {
  z-index: 2;
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: var(--primaireorange);
  -webkit-backdrop-filter: blur(.375rem);
  backdrop-filter: blur(.375rem);
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-clip: border-box;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 80px;
  display: flex;
  position: sticky;
  top: 0;
}

.nav-menu {
  margin-right: -.25rem;
  display: flex;
}

.logo {
  margin-bottom: .25rem;
  padding-left: 0;
  display: inline-block;
  position: static;
}

.logo:hover {
  opacity: .72;
}

.logo.w--current {
  aspect-ratio: auto;
  justify-content: center;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  position: static;
}

.nav-container {
  z-index: 0;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  text-align: left;
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5rem;
  display: flex;
}

.logo-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 16px;
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: auto;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.footer-link {
  font-weight: 400;
  text-decoration: none;
}

.grid-license-images {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-license-fonts {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.button {
  background-color: var(--primaireorange);
  color: var(--900);
  text-align: center;
  border-radius: .5rem;
  flex: none;
  min-height: 3.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  transition: transform .25s, opacity .25s;
}

.button:hover {
  opacity: .88;
}

.button:active {
  transform: scale(.98);
}

.button.small {
  border-radius: .5rem;
  min-height: 2.5rem;
  padding: .5625rem 1rem;
  font-size: .9375rem;
}

.button.full-width {
  width: 100%;
}

.license-image {
  border: .0625rem solid #0000000f;
  border-radius: .5rem;
  width: 100%;
}

.visible-text-box {
  background-color: var(--600);
  border-radius: .375rem;
}

.text-color-200 {
  color: var(--200);
}

.text-color-100 {
  color: var(--100);
}

.text-color-300 {
  color: var(--300);
}

.text-color-400 {
  color: var(--400);
}

.social-proof-logos-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.social-proof-logo {
  opacity: .5;
  max-width: 6rem;
  max-height: 1.25rem;
  display: inline-flex;
}

.nav-menu-button {
  padding: 0;
}

.actions-wrapper {
  grid-column-gap: .75rem;
  display: flex;
}

.button-group {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  display: flex;
}

.faq-question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.25rem 2rem 2.5rem;
  display: flex;
}

.faq-accordion {
  background-color: var(--800);
  border-style: none;
  border-width: .0625rem;
  border-radius: .75rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq-content {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 33.75rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: flex;
}

.faq-answer {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  overflow: hidden;
}

.faq-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.image-wrapper {
  border-radius: .75rem;
  width: 100%;
  overflow: hidden;
}

.text-weight-semibold {
  font-weight: 600;
}

.feature-content {
  max-width: 34rem;
}

.feature-item {
  grid-column-gap: 6rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.card-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  display: grid;
}

.card-item {
  background-color: var(--800);
  border-radius: .75rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 2.5rem;
  display: flex;
}

.card-item.featured {
  background-color: var(--900);
  position: relative;
  overflow: hidden;
}

.card-item.login {
  z-index: 1;
  background-color: var(--900);
  width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem;
  display: flex;
  position: relative;
}

.divider-line {
  background-color: #ffffff0f;
  width: 100%;
  height: .0625rem;
}

.footer-column {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  font-size: .875rem;
  font-weight: 400;
  display: flex;
}

.icon-large {
  color: var(--primaireorange);
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
}

.features-list {
  grid-column-gap: 3rem;
  grid-row-gap: 12.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.header-content {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 38rem;
  display: flex;
}

.testimonials-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  display: grid;
}

.pricing-features-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 2.5rem;
  display: flex;
}

.pricing-feature {
  grid-column-gap: .75rem;
  display: flex;
}

.text-color-accent {
  color: var(--primaireorange);
}

.gradient-image {
  z-index: 0;
  mix-blend-mode: luminosity;
  object-fit: cover;
  background-image: linear-gradient(#000000bf, #000000bf), url('../images/Ethereal-Abstract-Art_1Ethereal Abstract Art.avif');
  background-position: 0 0, 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.pricing-card-content {
  z-index: 1;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.cta-card-content {
  z-index: 1;
  grid-column-gap: 4rem;
  text-align: center;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: start;
  width: 100%;
  display: grid;
}

.form-block {
  width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.error-message {
  color: #bf1935;
  text-align: center;
  background-color: #ffe6ea;
  border-radius: .75rem;
  max-width: 33.75rem;
  min-height: 3.5rem;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem .9375rem;
  font-weight: 500;
}

.success-message {
  background-color: var(--accent-light);
  color: var(--primaireorange);
  border-radius: .75rem;
  max-width: 33.75rem;
  min-height: 3.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem;
  font-weight: 500;
}

.success-message.alternate {
  background-color: var(--900);
}

.login-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.text-weight-regular {
  font-weight: 400;
}

.text-weight-medium {
  font-weight: 500;
}

.pricing-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

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

.feature-image.luminosity {
  mix-blend-mode: luminosity;
}

.icon-24 {
  color: var(--primaireorange);
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.text-link {
  color: var(--accent-medium);
  font-size: .875rem;
}

.text-color-accent-light {
  color: var(--accent-light);
}

.testimonial-details {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--400);
  align-items: center;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  flex: none;
  width: 100%;
  height: 100%;
}

.testimonial-image-wrapper {
  border-radius: .5rem;
  width: 5rem;
  height: 5rem;
  position: relative;
  overflow: hidden;
}

.faq-icon {
  color: var(--primaireorange);
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
}

.text-block {
  color: #b81832;
}

.text-color-600 {
  color: var(--600);
}

.text-color-700 {
  color: var(--700);
}

.text-color-800 {
  color: var(--800);
}

.text-color-900 {
  color: var(--900);
}

.background-color-100 {
  background-color: var(--100);
}

.background-color-300 {
  background-color: var(--300);
}

.background-color-400 {
  background-color: var(--400);
}

.background-color-600 {
  background-color: var(--600);
}

.background-color-700 {
  background-color: var(--700);
}

.background-color-800 {
  background-color: var(--800);
}

.background-color-900 {
  background-color: var(--900);
}

.text-color-muted {
  opacity: .6;
}

.benefit-item {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.icon-medium {
  color: var(--primaireorange);
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}

.text-gradient-overlay {
  background-image: linear-gradient(90deg, var(--100) 72%, var(--accent-medium));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.header-layout {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  display: grid;
}

.grid-3-column {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  display: grid;
}

.container-small {
  z-index: 0;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: var(--800);
  border-radius: .75rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  display: flex;
}

.testimonials-card {
  background-color: var(--800);
  border-radius: 1.25rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 2.5rem;
  display: flex;
}

.testimonials-content-top {
  font-weight: 400;
}

.footer-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  font-weight: 400;
  display: flex;
}

.testimonial-details-text {
  grid-column-gap: .125rem;
  grid-row-gap: .125rem;
  color: var(--400);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.testimonial-logo {
  max-width: 6rem;
  max-height: 1.25rem;
  display: inline-flex;
}

.image-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  display: grid;
}

.about-grid-image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-grid-image-wrapper {
  border-radius: .75rem;
  width: 100%;
  overflow: hidden;
}

.background-color-accent {
  background-color: var(--primaireorange);
}

.background-color-accent-medium {
  background-color: var(--accent-medium);
}

.background-color-accent-light {
  background-color: var(--accent-light);
}

.spacer-4 {
  background-color: #0000;
  flex: none;
  width: .25rem;
  height: .25rem;
}

.spacer-8 {
  background-color: #0000;
  flex: none;
  width: .5rem;
  height: .5rem;
}

.spacer-16 {
  background-color: #0000;
  flex: none;
  width: 1rem;
  height: 1rem;
  display: block;
}

.spacer-24 {
  text-transform: uppercase;
  background-color: #0000;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
}

.spacer-32 {
  background-color: #0000;
  border-radius: .375rem;
  flex: none;
  width: 2rem;
  height: 2rem;
}

.spacer-40 {
  background-color: #0000;
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
}

.spacer-48 {
  background-color: #0000;
  border-radius: .375rem;
  flex: none;
  width: 3rem;
  height: 3rem;
}

.spacer-64 {
  background-color: #0000;
  flex: none;
  width: 4rem;
  height: 4rem;
  display: flex;
}

.spacer-80 {
  background-color: #0000;
  flex: none;
  width: 5rem;
  height: 5rem;
}

.spacer-96 {
  background-color: #0000;
  flex: none;
  width: 6rem;
  height: 6rem;
}

.spacer-128 {
  background-color: #0000;
  flex: none;
  width: 8rem;
  height: 8rem;
}

.background-color-200 {
  background-color: var(--100);
  color: var(--200);
}

.image {
  display: block;
}

.link-block-nav-ws {
  vertical-align: baseline;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: flex-end;
  max-width: 300px;
  display: block;
}

.link-block-nav-ws.w--current {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: center;
  align-items: flex-end;
  margin-left: 45px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.link-block-2 {
  display: block;
}

.image-nav {
  box-sizing: border-box;
  text-align: left;
  vertical-align: baseline;
  object-fit: fill;
  display: block;
}

.text-block-2 {
  color: var(--200);
  align-self: center;
  font-size: 3rem;
}

.navws {
  z-index: 100;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 0px;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  object-fit: fill;
  background-color: #0000;
  background-clip: border-box;
  outline: 3px #fff;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.heading-2 {
  text-align: center;
  justify-content: flex-start;
  align-items: stretch;
  display: block;
}

.container {
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  max-width: none;
  padding-top: 100px;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
}

.container-2 {
  flex: 1;
}

.heading-3 {
  text-align: center;
  text-shadow: 0 1px 20px #000000ba;
}

.footer-service {
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 3rem 5rem;
  display: block;
}

.link-block-nav-ws-ue {
  vertical-align: baseline;
  flex-flow: column;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-self: center;
  align-items: flex-end;
  max-width: 100px;
  display: block;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.image-2 {
  flex: 0 auto;
  order: 0;
  align-self: center;
  max-width: 40px;
  display: block;
  overflow: visible;
}

.link-block-3 {
  min-width: 150px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.flex-block {
  position: absolute;
  inset: 0% 0% 0% auto;
}

.div-block {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.flex-block-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-end;
  align-items: center;
  margin-right: 143px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.textblockancor {
  text-transform: uppercase;
  text-shadow: 0 1px 11px #000;
  min-width: 0;
  min-height: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 1.5rem;
}

.flex-block-4 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  justify-content: flex-end;
  align-items: center;
  margin-right: 40px;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.section {
  height: 300px;
}

.sectionpresentation {
  opacity: 1;
  mix-blend-mode: normal;
  background-image: url('../images/test.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.sectiondepannage {
  -webkit-text-fill-color: inherit;
  background-color: #141414;
  background-clip: border-box;
  border-top: 3px solid #000;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: block;
}

.container-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 78px;
  display: flex;
  position: static;
  inset: 0% 0% auto;
}

.heading-presentation {
  color: var(--100);
  text-align: center;
  text-shadow: 0 0 8px #000;
  font-family: Changa One, Impact, sans-serif;
  font-size: 2.5rem;
}

.buttonphone {
  background-color: #006aac;
  border: 1px solid #000;
  border-radius: 8px;
  flex: 0 auto;
  margin-right: 60px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 2.5rem;
}

.flex-block-5 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.containersection {
  flex: 0 auto;
  align-self: center;
  width: 100%;
  max-width: 90rem;
  padding-top: 20px;
  padding-bottom: 20px;
}

.heading-4 {
  border: 2px #000;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 2.2rem;
}

.linkblockancor.w--current {
  text-align: left;
  text-underline-offset: 6px;
  font-size: 1rem;
  -webkit-text-decoration: underline #0067e6;
  text-decoration: underline #0067e6;
  text-decoration-thickness: 2px;
  transition: opacity .2s, transform .25s, opacity .25s;
}

.paragraphpoesie {
  opacity: 1;
  color: var(--100);
  border: 2px dashed #fff;
  align-self: center;
  padding: 10px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 1.2rem;
}

.paragraph-3 {
  opacity: 1;
  align-self: flex-start;
}

.listserviceinfo {
  font-family: PT Sans, sans-serif;
  font-size: 1.2rem;
  list-style-type: decimal;
  overflow: visible;
}

.sliderservice {
  background-color: #0000;
  border-style: solid;
  border-width: 3px;
  border-radius: 0;
  align-self: stretch;
}

.slide-nav {
  display: block;
}

.slidedepannage1 {
  -webkit-text-fill-color: inherit;
  background-image: url('../images/memtest86.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-clip: border-box;
}

.slidedepannage2 {
  background-image: url('../images/Depannage1.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.slidedepannage3 {
  background-image: url('../images/Depannage2.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.cell {
  justify-content: center;
  align-items: center;
}

.sectionmontage {
  background-color: #482b00;
}

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

.heading-5 {
  align-self: flex-end;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.list {
  font-family: PT Sans, sans-serif;
  font-size: 1.2rem;
  list-style-type: decimal;
}

.paragraphmontagepc {
  opacity: 1;
  border: 2px dashed #fff;
  padding: 10px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 1.2rem;
}

.slider-2 {
  background-color: #0000;
  border: 2px solid #000;
  flex: 1;
  align-self: stretch;
}

.slide {
  background-image: url('../images/20240715_102412.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-2 {
  background-image: url('../images/20240715_145427.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.textblocksectiontitle {
  text-align: center;
  text-transform: uppercase;
  align-self: center;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 500;
}

.text-block-4 {
  text-align: center;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: center;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 500;
}

.text-block-5 {
  text-align: center;
  text-transform: uppercase;
  align-self: center;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 500;
}

.paragraph-5 {
  opacity: 1;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.sectionrecondi {
  background-color: #0d1d30;
}

.text-block-6 {
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 2rem;
}

.slider-3 {
  background-color: #ddd0;
  border-style: solid;
  border-width: 1px;
  align-self: stretch;
}

.slide-3 {
  background-image: url('../images/dev_buz67.png');
  background-position: 0%;
  background-repeat: repeat-x;
  background-size: contain;
}

.slide-4 {
  background-image: url('../images/Interface-Adobe-Acrobat-1.png');
  background-position: 50%;
  background-size: contain;
}

.slide-5 {
  background-image: url('../images/PassMark.png');
  background-position: 0 0;
  background-size: contain;
}

.text-block-7 {
  color: #f2ff00;
  text-align: center;
  align-self: center;
  font-family: Changa One, Impact, sans-serif;
  font-size: 1.5rem;
}

.textblocksectioninfos {
  color: #e3fc00;
  text-align: center;
  align-self: stretch;
  font-family: Changa One, Impact, sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
}

.container-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.flex-block-6 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  justify-content: center;
  align-self: center;
  align-items: center;
  overflow: hidden;
}

.buttonfacebook {
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-image: url('../images/pngegg.png');
  background-position: 50%;
  background-repeat: repeat-y;
  background-size: cover;
  background-attachment: scroll;
  background-clip: border-box;
  flex: 1;
  align-self: stretch;
}

.buttoninsta {
  background-color: #0000;
  background-image: url('../images/Instagram_logo_2022.svg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 1;
}

.text-block-9 {
  color: #df0;
  text-align: center;
  flex: 1;
  align-self: stretch;
  font-family: Changa One, Impact, sans-serif;
  font-size: 1.5rem;
  display: block;
}

.paragraphcours {
  opacity: 1;
  border: 2px dashed #fff;
  padding: 10px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 1.2rem;
}

.link-block-4 {
  flex: 0 auto;
  align-self: center;
}

.image-4 {
  width: 50px;
}

.image-5 {
  width: 47px;
}

.flex-block-7 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}

.link-block-5 {
  align-self: center;
}

.container-7 {
  flex: 1;
  align-self: stretch;
}

.image-6 {
  height: 87px;
}

.container-8 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-2 {
  z-index: 0;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  max-width: 100rem;
  height: 100%;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
  position: relative;
}

.div-block-3 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.quick-stack-2, .quick-stack-3 {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
}

.list-2 {
  font-size: 1.2rem;
}

.slide-6 {
  background-image: url('../images/20240715_105101.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-7 {
  background-image: url('../images/20240715_164421.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-8 {
  background-image: url('../images/20240716_193703.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-9 {
  background-image: url('../images/UEFI_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-10 {
  background-image: url('../images/furmark.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.text-block-10 {
  text-align: center;
  text-transform: uppercase;
  align-self: center;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 500;
}

.link-block-6 {
  text-transform: uppercase;
}

.quick-stack-4 {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
}

.slide-11 {
  background-image: url('../images/N86gGZiLADKyiUs4o7t8wd-970-80.jpg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-12 {
  background-image: url('../images/ordinateur_reconditionne_6.jpg');
  background-position: 50%;
  background-size: cover;
}

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

  .style-guide-block {
    margin-bottom: 2.5rem;
  }

  .form-error {
    padding-left: .25rem;
  }

  .paragraph.extra-large {
    font-size: 1.5rem;
  }

  .form-dropdown {
    padding-right: .25rem;
  }

  .form-success {
    padding-top: .25rem;
  }

  .button-secondary {
    position: relative;
  }

  .section-presentation {
    padding: 6rem 4rem;
  }

  .container-large {
    overflow: hidden;
  }

  .nav-link {
    margin: .25rem 0;
  }

  .nav-menu {
    border-bottom: .0625rem solid var(--600);
    background-color: var(--900);
    align-items: flex-start;
    width: 100vw;
    min-width: 100vw;
    margin-right: 0;
    padding: 1rem 3.125rem 2rem;
  }

  .nav-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .button {
    position: relative;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .nav-menu-button {
    flex-direction: row;
    justify-content: center;
    margin-left: 1rem;
    margin-right: -.5rem;
    padding: 0;
    display: flex;
  }

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

  .actions-wrapper {
    align-items: center;
  }

  .menu-icon-line-bottom {
    background-color: var(--100);
    border-radius: .0625rem;
    width: 2rem;
    height: .15625rem;
    margin-top: .25rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-line-top {
    background-color: var(--100);
    border-radius: .0625rem;
    width: 2rem;
    height: .15625rem;
    margin-bottom: .25rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .faq-wrapper {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .faq-answer {
    padding-right: 2.5rem;
  }

  .feature-item {
    grid-column-gap: 3rem;
    grid-auto-flow: row;
    min-height: auto;
  }

  .testimonials-list {
    grid-template-columns: 1fr;
  }

  .cta-card-content {
    grid-column-gap: 2rem;
  }

  .header-layout {
    grid-template-columns: 1fr;
  }

  .grid-3-column {
    grid-column-gap: 3rem;
  }

  .container-small {
    overflow: hidden;
  }

  .image-grid {
    grid-column-gap: 3rem;
    grid-auto-flow: row;
    min-height: auto;
  }
}

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

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h6 {
    letter-spacing: -.02em;
  }

  .style-guide-colour-block {
    width: 25%;
  }

  .field-block {
    min-height: auto;
  }

  .heading.medium {
    font-size: 2rem;
  }

  .heading.extra-large {
    font-size: 3.25rem;
  }

  .heading.large {
    font-size: 2.5rem;
  }

  .section-presentation.banner {
    display: block;
  }

  .container-large {
    width: 100%;
  }

  .grid-2-column {
    grid-column-gap: 2rem;
    grid-row-gap: 3.5rem;
    grid-template-columns: 1fr;
  }

  .nav-link.w--current {
    background-position: 0%;
  }

  .nav-menu {
    border-right: .0625rem solid var(--700);
    background-color: var(--900);
    -webkit-backdrop-filter: blur(.375rem);
    backdrop-filter: blur(.375rem);
    margin-right: 0;
  }

  .logo-wrapper {
    display: flex;
  }

  .social-proof-logos-wrapper {
    width: auto;
    padding-top: 1rem;
  }

  .faq-wrapper, .feature-item {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .card-list {
    grid-template-columns: 1fr;
  }

  .card-item.login {
    width: 100%;
    padding: 2.5rem;
  }

  .features-list {
    grid-row-gap: 9rem;
  }

  .testimonials-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  .pricing-list {
    grid-template-columns: 1fr;
  }

  .grid-3-column {
    grid-column-gap: 2rem;
    grid-row-gap: 3.5rem;
    grid-template-columns: 1fr;
  }

  .container-small {
    width: 100%;
  }

  .image-grid {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .spacer-4, .spacer-8, .spacer-16, .spacer-24, .spacer-32, .spacer-40, .spacer-48 {
    height: 2.5rem;
  }

  .spacer-64, .spacer-80 {
    width: 3.5rem;
    height: 3.5rem;
  }

  .spacer-96 {
    width: 4.5rem;
    height: 4.5rem;
  }

  .spacer-128 {
    height: 2.5rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.125rem;
  }

  h4 {
    font-size: 1.375rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  p {
    font-size: .9375rem;
  }

  li {
    padding-left: .75rem;
  }

  blockquote {
    padding-left: 1.5rem;
  }

  .text-input {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1rem;
  }

  .paragraph {
    font-size: .875rem;
  }

  .paragraph.extra-large {
    font-size: 1.375rem;
  }

  .paragraph.large {
    font-size: 1.0625rem;
  }

  .rich-text h3 {
    margin-top: 3rem;
  }

  .rich-text h1, .rich-text h2 {
    margin-top: 3.5rem;
  }

  .rich-text h4 {
    margin-top: 2.5rem;
  }

  .rich-text h5 {
    margin-top: 2rem;
  }

  .rich-text h6 {
    margin-top: 1.5rem;
  }

  .check-box {
    flex: none;
  }

  .color-block {
    margin-bottom: 1.25rem;
  }

  .heading.medium {
    font-size: 2rem;
  }

  .heading.extra-small {
    font-size: 1.125rem;
  }

  .heading.small {
    font-size: 1.25rem;
  }

  .heading.regular {
    font-size: 1.375rem;
  }

  .heading.extra-large {
    font-size: 2.5rem;
  }

  .heading.large {
    font-size: 2.125rem;
  }

  .button-secondary {
    font-size: 1rem;
  }

  .button-secondary.small.hide-mobile-portrait {
    display: none;
  }

  .style-guide-section-header {
    margin-bottom: 2rem;
  }

  .block-quote {
    padding-left: 1.5rem;
  }

  .section-presentation {
    padding: 3.5rem 2.5rem;
  }

  .grid-2-column {
    grid-row-gap: 2.5rem;
  }

  .nav {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: row;
    height: auto;
    display: flex;
  }

  .nav-menu {
    padding-left: 1.625rem;
    padding-right: 1.625rem;
  }

  .nav-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .button {
    font-size: 1rem;
  }

  .button.small.hide-mobile-portrait {
    display: none;
  }

  .text-color-300 {
    font-size: .875rem;
  }

  .social-proof-logos-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    justify-content: center;
  }

  .button-group {
    flex-direction: column;
    flex: 1;
    width: 100%;
  }

  .faq-question {
    padding: 1.5rem 1.75rem 1.5rem 2rem;
  }

  .faq-accordion {
    border-radius: 1rem;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .faq-answer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .image-wrapper {
    border-radius: 1rem;
  }

  .feature-item, .card-list {
    grid-template-columns: 1fr;
  }

  .card-item {
    border-radius: 1rem;
    padding: 2rem;
  }

  .card-item.login {
    padding: 2rem;
  }

  .footer-column {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .icon-large {
    width: 2rem;
    height: 2rem;
  }

  .features-list {
    grid-row-gap: 6rem;
  }

  .testimonials-list {
    grid-template-columns: 1fr;
  }

  .pricing-features-list {
    margin-bottom: 2rem;
  }

  .footer-grid {
    grid-column-gap: 1.25rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .login-form {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .pricing-list {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    border-radius: 1rem;
  }

  .header-layout {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .grid-3-column {
    grid-row-gap: 2.5rem;
  }

  .pricing-card, .testimonials-card {
    border-radius: 1rem;
    padding: 2rem;
  }

  .footer-bottom {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .about-grid-image-wrapper {
    border-radius: 1rem;
  }

  .spacer-64, .spacer-80 {
    width: 3rem;
    height: 3rem;
  }

  .spacer-96 {
    width: 3.5rem;
    height: 3.5rem;
  }

  .link-block-nav-ws {
    min-width: 0;
    max-width: 180px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .link-block-nav-ws.w--current {
    max-width: 320px;
    margin: 0 5px;
    position: static;
  }

  .image-nav {
    overflow: hidden;
  }

  .text-block-2 {
    font-size: 1rem;
  }

  .navws {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    display: flex;
    inset: 0% 0% auto;
  }

  .link-block-nav-ws-ue {
    min-width: 0;
    max-width: none;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .link-block-nav-ws-ue.w--current {
    min-width: 0;
    max-width: 180px;
  }

  .image-2 {
    max-width: 20px;
  }

  .flex-block-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-end;
    align-items: center;
    margin-right: 0;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
  }

  .textblockancor {
    outline-offset: 0px;
    outline: 3px #fff;
    font-size: 1.1rem;
    text-decoration: none;
  }

  .flex-block-3 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .flex-block-4 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: wrap;
    justify-content: flex-end;
    align-self: flex-end;
    align-items: stretch;
    margin-top: 5px;
    margin-right: 30px;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .section {
    height: 300px;
  }

  .sectiondepannage {
    display: block;
  }

  .buttonphone {
    margin-right: 0;
  }

  .linkblockancor.w--current {
    -webkit-text-decoration: underline #107bff;
    text-decoration: underline #107bff;
    text-decoration-thickness: 3px;
  }

  .listserviceinfo {
    order: 1;
  }

  .cell {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .slider-2 {
    flex: 0 auto;
  }

  .textblocksectiontitle {
    font-size: 1.7rem;
  }

  .flex-block-7 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .div-block-2 {
    flex-flow: wrap;
    align-self: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-3 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
  }
}

#w-node-_69b4dca0-10bf-8c7d-70ba-6c5093a9ef75-c237b9ce {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_2934ed44-7b73-5e7b-88bb-fb58a03dc098-c237b9ce {
  grid-column: span 2 / span 2;
}

#w-node-_6622242e-fc56-9b60-2386-494ab4fe4d1a-c237b9ce {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-f6705521-d58c-7783-40ee-2adaf177512c-c237b9ce {
  grid-column: span 2 / span 2;
}

#w-node-d2f20659-d5dd-45b3-eda4-5bacbf8fa787-c237b9ce, #w-node-_321e691f-0182-0a7d-bef5-a41216fd442d-c237b9ce {
  grid-row: span 2 / span 2;
}

#w-node-_48fd2b50-66b7-f5da-9985-01fb7068ff3b-c237b9ce {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_48fd2b50-66b7-f5da-9985-01fb7068ff3c-c237b9ce {
  grid-column: span 2 / span 2;
}

#w-node-e9346ea1-155c-4f92-9c1b-c1a4e36bcc65-c237b9ce {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-e9346ea1-155c-4f92-9c1b-c1a4e36bcc66-c237b9ce {
  grid-column: span 2 / span 2;
}

@media screen and (max-width: 479px) {
  #w-node-_69b4dca0-10bf-8c7d-70ba-6c5093a9ef75-c237b9ce {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_2934ed44-7b73-5e7b-88bb-fb58a03dc098-c237b9ce {
    grid-column: span 1 / span 1;
  }

  #w-node-bb783187-ac62-78cc-999d-c807a87feeee-c237b9ce {
    order: 0;
  }

  #w-node-_070ca1ba-263c-a243-3409-aec57ed25a8c-c237b9ce {
    order: 9999;
  }

  #w-node-_6622242e-fc56-9b60-2386-494ab4fe4d1a-c237b9ce {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f6705521-d58c-7783-40ee-2adaf177512c-c237b9ce {
    order: 0;
    grid-column: span 1 / span 1;
  }

  #w-node-d2f20659-d5dd-45b3-eda4-5bacbf8fa787-c237b9ce {
    grid-row: span 2 / span 2;
  }

  #w-node-_321e691f-0182-0a7d-bef5-a41216fd442d-c237b9ce {
    order: 0;
    grid-row: span 2 / span 2;
  }

  #w-node-f421f8c7-0c2d-5f6e-5285-c27512e94842-c237b9ce {
    order: 0;
  }

  #w-node-_48fd2b50-66b7-f5da-9985-01fb7068ff3b-c237b9ce {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_48fd2b50-66b7-f5da-9985-01fb7068ff3c-c237b9ce {
    grid-column: span 1 / span 1;
  }

  #w-node-_6472bf97-2090-fef5-3d48-076fd77a35ac-c237b9ce {
    order: 9999;
  }

  #w-node-e9346ea1-155c-4f92-9c1b-c1a4e36bcc65-c237b9ce {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e9346ea1-155c-4f92-9c1b-c1a4e36bcc66-c237b9ce {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-VariableItalic.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}