@font-face {
  font-family: Icomoon;
  src: url('../fonts/icomoon.eot') format("embedded-opentype"), url('../fonts/icomoon.woff') format("woff"), url('../fonts/icomoon.ttf') format("truetype"), url('../fonts/icomoon.svg') format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: amsi;
  src: url('../fonts/183dc8ce4b9423cabfd7b3a56b7c37ab.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Proxima nova;
  src: url('../fonts/FontsFree-Net-proxima_nova_reg-webfont.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Proxima nova;
  src: url('../fonts/FONTSFREE-NET-PROXIMA-NOVA-BOLD.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Proxima nova;
  src: url('../fonts/FontsFree-Net-Proxima-Nova-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --border-input: #d9d9d9;
  --border-input-focus: #8f8f8f;
  --color-valid: #32ac97;
  --color-bg-input: whitesmoke;
  --color-error: #b00020;
  --vert-btob: #004b59;
  --blue: #114591;
  --white: white;
  --gray-ir: #666;
  --vert-ir: #009688;
  --rouge: #b71923;
  --midnight-blue: #09377b;
}

.w-layout-hflex {
  flex-direction: row;
  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;
}

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

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.body {
  color: #333;
  background-color: #fff;
  font-family: Proxima nova, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.text-block-4 {
  color: #000;
  margin-bottom: 10px;
  font-size: 12px;
}

.radio-button {
  border-width: 2px;
  border-color: var(--border-input);
  color: #000;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-left: 0;
  padding-left: 0;
  position: relative;
  top: -2px;
  left: 5px;
}

.radio-button.w--redirected-checked {
  border-width: 2px;
  border-color: var(--border-input-focus);
  background-color: var(--color-valid);
  background-image: radial-gradient(circle, #000, #fff), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  border-radius: 4%;
}

.radio-button.w--redirected-focus {
  box-shadow: none;
}

.checkbox-field {
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
  display: flex;
}

.radio-button-label {
  color: #000;
  margin-bottom: 0;
  padding-left: 10px;
}

.radio-button-label.valid {
  color: #018786;
}

.radio-button-label.error {
  color: #b00020;
}

.textarea {
  border: 1px solid var(--border-input);
  background-color: var(--color-bg-input);
  color: #000;
  border-radius: 4px;
  min-height: 100px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-left: 16px;
  font-size: 16px;
}

.textarea:focus {
  border-width: 1px;
  border-color: var(--border-input-focus);
}

.textarea::placeholder {
  font-size: 16px;
}

.textarea.active {
  border-width: 1px;
  border-color: var(--border-input-focus);
  color: #000;
  padding-top: 20px;
}

.textarea.error {
  border-width: 1px;
  border-color: var(--color-error);
}

.textarea.valid {
  border-width: 1px;
  border-color: var(--color-valid);
  color: #000;
}

.text-field {
  color: #444;
  background-color: #fff;
  border: 1px solid #1d1d1b;
  border-radius: 8px;
  height: 48px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 16px;
  font-size: 16px;
  line-height: 20px;
  display: block;
}

.text-field:focus {
  border-width: 1px;
  border-color: var(--border-input-focus);
}

.text-field::placeholder {
  font-size: 16px;
  line-height: 19px;
}

.text-field.valid {
  border-width: 1px;
  border-color: var(--color-valid);
  color: #000;
}

.text-field.active {
  border-width: 1px;
  border-color: var(--border-input-focus);
  color: #000;
  padding-top: 16px;
}

.text-field.error {
  border-color: var(--color-error);
  border-radius: 4px 4px 0 0;
}

.text-field.big {
  z-index: auto;
}

.select-field {
  border: 1px solid var(--border-input);
  background-color: var(--color-bg-input);
  color: #000;
  border-radius: 4px;
  height: 56px;
  padding-top: 16px;
  padding-bottom: 2px;
  font-size: 16px;
}

.select-field:active, .select-field:focus {
  border-width: 1px;
  border-color: var(--border-input-focus);
}

.select-field.error {
  border-width: 1px;
  border-color: var(--color-error);
}

.select-field.firstdisabled {
  border-color: var(--border-input);
}

.select-field.valid {
  border-width: 1px;
  border-color: var(--color-valid);
}

.select-field.active {
  border-width: 1px;
  border-color: var(--border-input-focus);
}

.form-item {
  border: 0 solid #000;
  width: 100%;
  margin-bottom: 16px;
  display: block;
  position: relative;
}

.form-item.radios {
  display: flex;
}

.form-item.radio-spe {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.form-item.diplome {
  display: none;
  overflow: visible;
}

.separator {
  border-top: 1px solid gray;
  max-width: 500px;
  margin: 40px auto;
}

.multipage_progress_bar {
  background-color: var(--border-input);
  border-radius: 2px;
  height: 8px;
  position: relative;
  overflow: visible;
}

.icon-input {
  border: 0 solid #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: auto;
  padding-right: 0;
  line-height: 20px;
  display: flex;
  position: absolute;
  inset: 0% 10px 0% auto;
}

.icon-input.icon-cross {
  color: var(--color-error);
  padding: 0;
  font-size: 16px;
}

.icon-input.icon-checkmark {
  color: var(--color-valid);
}

.inner {
  background-color: #004655;
  border-radius: 2px;
  width: 30px;
  height: 100%;
  position: absolute;
  inset: 0 auto 0% 0%;
}

.field-label-text {
  z-index: auto;
  transform-origin: 0 0;
  color: #555;
  text-align: left;
  cursor: pointer;
  background-color: #0000;
  border: 0 solid #ddd;
  border-radius: 5px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Proxima nova, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  transition: transform .15s;
  position: static;
  inset: auto;
}

.field-label-text.active {
  perspective-origin: 50%;
  transform-origin: 0 0;
  color: #8f8f8f;
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
  transition: transform .15s;
  top: 14px;
  left: 16px;
  transform: translate(0, -14px)scale(.75);
}

.field-label-text.error {
  transform-origin: 0 0;
  color: var(--color-error);
  background-color: #0000;
  font-weight: 400;
  transition: transform .15s;
  top: 20px;
  left: 16px;
  transform: translate(0, -14px)scale(.75);
}

.field-label-text.label-select {
  top: 20px;
  left: 16px;
  transform: translate(0, -14px)scale(.75);
}

.field-label-text.label-radio {
  color: #000;
  margin-bottom: 0;
  line-height: 22px;
  position: relative;
  top: auto;
  left: auto;
}

.field-label-text.label-radio.error {
  color: #b00020;
  transform: none;
}

.field-label-text.label-radio.valid {
  color: #018786;
  top: 0;
  left: auto;
  transform: none;
}

.field-label-text.valid {
  transform-origin: 0 0;
  color: #018786;
  font-weight: 400;
  transition: transform .15s;
  inset: 20px auto auto 16px;
  transform: translate(0, -14px)scale(.75);
}

.form {
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  width: 100%;
  max-width: 768px;
  margin: -100px auto 0;
  padding: 40px 100px;
  display: block;
  box-shadow: 0 11px 40px #1118271f;
}

.link {
  color: #32ac97;
}

.btn-prev {
  float: left;
  clear: both;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #e46868;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 27%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 40px;
  font-weight: 700;
  transition: text-indent .2s cubic-bezier(.6, -.28, .735, .045);
  display: flex;
}

.btn-prev:hover {
  text-indent: 0;
  background-color: #5307ffdb;
  border-radius: 4px;
}

.btn-prev.js-multipage_prev {
  color: #777;
  background-color: #8f8f8f00;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  width: 34%;
  margin-left: 0;
  margin-right: 20px;
  padding: 10px;
  display: none;
}

.btn-prev.js-multipage_prev:hover {
  color: #fff;
  background-color: #8f8f8f;
}

.btn-prev.js-multipage_prev.last {
  flex-wrap: nowrap;
  margin-bottom: 10px;
  display: none;
}

.text-block-3 {
  margin-right: 0;
}

.multipage_progress {
  margin-bottom: 8px;
  display: block;
}

.btn-next {
  float: right;
  clear: none;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #018786;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 40px;
  font-weight: 700;
  transition: text-indent .2s;
  display: flex;
  position: relative;
}

.btn-next:hover {
  text-indent: 0;
  background-color: #005a59;
  border-radius: 4px;
}

.btn-next.js-multipage_next {
  background-color: #df6339;
  border-radius: 50px;
  align-self: center;
  width: 100%;
  height: 60px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.btn-next.js-multipage_next:hover, .btn-next.js-multipage_next:active, .btn-next.js-multipage_next:focus {
  background-color: #00899c;
}

.btn-next.js-multipage_next.first {
  background-color: #e21c70;
  flex: 1;
  width: 100%;
  margin-bottom: 0;
}

.btn-next.js-multipage_next.first:hover, .btn-next.js-multipage_next.first:active {
  background-color: #d11a68;
}

.checkbox-label {
  color: #000;
  border-radius: 4px;
  font-size: 12px;
  line-height: 19px;
}

.checkbox {
  border-width: 3px;
  border-color: var(--vert-btob);
  color: #32ac97;
  cursor: pointer;
  border-radius: 4px;
  flex: none;
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
  padding-right: 0;
}

.checkbox.w--redirected-checked {
  border-color: var(--blue);
  background-color: var(--vert-btob);
  color: var(--blue);
  background-size: contain;
  position: relative;
}

.checkbox.w--redirected-focus {
  box-shadow: none;
  color: #e21c70;
}

.div-block-19 {
  justify-content: center;
  display: flex;
}

.multipage_section {
  transition: all .25s;
  position: relative;
  transform: translate(0);
}

.multipage_section.inactive {
  opacity: 0;
  object-fit: fill;
  height: 0;
  padding-top: 0;
  transition-duration: .25s;
  transition-timing-function: linear;
  display: block;
  top: auto;
  right: auto;
  overflow: hidden;
}

.multipage_section.active {
  opacity: 1;
  height: auto;
  padding-top: 0;
  transition: all .25s linear;
  inset: auto;
  overflow: visible;
}

.text-block-5 {
  margin-left: 0;
}

.multipage_nav {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.submit-button {
  color: #fff;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  background-color: #00a19a;
  border-radius: 6px;
  width: auto;
  margin: 30px auto 10px;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  display: block;
}

.submit-button:hover, .submit-button:focus {
  background-color: #02706b;
}

.demo-layout {
  background-color: #0000;
  margin-bottom: 40px;
  display: flex;
}

.demo-50 {
  flex: 0 auto;
  width: 40%;
  padding: 20px 10px;
}

.demo-50.w40 {
  width: 30%;
}

.container-demo {
  max-width: 95%;
  display: block;
}

.demo-100 {
  width: 100%;
  padding: 20px;
}

.rich-text-block {
  color: #4d4d4d;
  text-align: left;
}

.section-demo {
  padding-top: 60px;
}

.demo-row {
  flex-flow: wrap;
  place-content: stretch center;
  align-items: stretch;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.styleguide-caption {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
}

.styleguide-caption.small-divider {
  color: #000;
  text-transform: none;
  margin-top: -15px;
  font-size: 12px;
}

.color-block {
  background-color: #096ad033;
  border-radius: 3px;
  width: 100px;
  height: 100px;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 0 10px 1px #00000014;
}

.color-block:hover {
  box-shadow: 0 0 3px 1px #00000014;
}

.color-block.color-bg1 {
  border: 1px solid var(--border-input-focus);
  background-color: var(--color-bg-input);
  box-shadow: none;
}

.color-block.color3 {
  background-color: var(--color-bg-input);
  box-shadow: none;
}

.color-block.color4 {
  border: 1px solid var(--border-input);
  background-color: var(--color-bg-input);
  box-shadow: none;
}

.color-block.color1 {
  background-color: var(--color-valid);
  box-shadow: none;
}

.color-block.color2 {
  background-color: var(--color-error);
  box-shadow: none;
}

.styleguide-small-divider {
  opacity: 1;
  width: 100%;
  margin-top: 0;
}

.horizontal-line {
  background-color: #fff;
  width: 100%;
  height: 1px;
  margin-bottom: 40px;
}

.horizontal-line.light {
  color: #096ad0;
  background-color: #297fcacc;
  margin-top: 10px;
  margin-bottom: 20px;
}

.demo-col {
  flex-flow: column;
  flex: 0 auto;
  align-items: flex-start;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.form-2 {
  border: 1px solid var(--white);
}

.max-w {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  background-color: #0000;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  font-family: poppins, sans-serif;
  display: flex;
}

.max-w.img-et-form {
  height: 100%;
  display: flex;
  position: relative;
}

.max-w.img-et-form.box5050 {
  justify-content: space-between;
}

.max-w.header {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.max-w.first-block {
  background-color: #0000;
  margin-top: 20px;
  padding-bottom: 40px;
}

.max-w.first-block.titre {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  margin-top: 4px;
  padding-bottom: 0;
}

.max-w._50-50 {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 26px;
}

.max-w._4blocks {
  padding-bottom: 32px;
}

.max-w.hero {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #263329;
  border-radius: 0;
  justify-content: flex-end;
  padding-top: 0;
}

.max-w._30-30-30 {
  background-color: #eef9f9;
}

.max-w.blue {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  justify-content: flex-start;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}

.max-w.confirmation {
  flex-flow: row;
}

.max-w.black {
  grid-column-gap: 121px;
  grid-row-gap: 121px;
  color: #231b18;
  background-color: #231b18;
  border-radius: 0;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
}

.max-w.footer {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.div-block-20 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 2000px;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.header {
  z-index: 100;
  background-color: #263329;
  border-bottom: 1px #eceae7;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  display: none;
  position: sticky;
  top: 0;
  overflow: visible;
}

.div-block-22 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  color: #fff;
  background-color: #111827;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 15px;
  display: flex;
}

.link-2 {
  color: #fff;
  font-family: Proxima nova, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.socket {
  background-color: #fff;
}

.footer {
  color: #fff;
  background-color: #263329;
  margin-top: 0;
  padding-top: 0;
}

.div-block-23 {
  border-top: 1px solid #e6e7f4;
  border-bottom: 1px solid #e6e7f4;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.image-footer {
  margin-left: 40px;
  margin-right: 40px;
}

.reasssurance-footer {
  padding-top: 40px;
}

.text-block-6 {
  color: var(--blue);
  margin-bottom: 10px;
  padding-left: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

.text-block-7 {
  color: var(--gray-ir);
  padding-bottom: 20px;
  padding-left: 10px;
  font-size: 14px;
  line-height: 18px;
}

.reassu-texte-footer {
  color: #000;
  text-align: right;
  max-width: 574px;
  margin-bottom: 20px;
  margin-left: auto;
  padding-top: 10px;
  font-size: 12px;
  line-height: 14px;
}

.encart-gris {
  background-color: #ebeff6;
  align-items: stretch;
  padding: 20px 30px;
  display: flex;
}

.comm {
  padding-bottom: 22px;
  font-family: Proxima nova, sans-serif;
}

.nom {
  padding-top: 10px;
  padding-bottom: 8px;
  font-family: Proxima nova, sans-serif;
  font-weight: 700;
}

.etoile {
  width: 108px;
  max-width: none;
}

.date {
  opacity: .5;
  font-family: Proxima nova, sans-serif;
  font-size: 12px;
  line-height: 28px;
}

.encart-comm {
  color: #000;
  border-right: 1px solid #ccc;
  width: 100%;
  margin-right: 20px;
  padding-right: 20px;
  font-family: Fontsfree net proxima nova reg webfont;
  font-size: 14px;
  line-height: 18px;
}

.encart-comm.last {
  border-right-width: 0;
  margin-right: 0;
}

.div-block-24 {
  display: flex;
}

.div-block-25 {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-right: 20px;
  display: flex;
}

.insec {
  white-space: pre;
}

._3points {
  background-color: #f2f5fd;
}

.max-w-3points {
  max-width: 1068px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 40px 70px;
}

.encart-3point {
  background-color: #fff;
  border: 1px solid #eee;
  margin-bottom: 60px;
  padding: 60px 100px;
  position: relative;
  box-shadow: 0 0 15px #0000000d;
}

.encart-3point.last {
  margin-bottom: 40px;
}

.num {
  color: var(--white);
  background-color: #18347a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 0;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  font-size: 27px;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: -30px auto auto 50%;
  transform: translate(-50%);
}

.titre-encart-3ponts {
  color: var(--blue);
  padding-bottom: 20px;
  font-size: 30px;
  font-weight: 900;
  line-height: 39px;
}

.text-encart-3-point {
  color: #444;
  font-size: 18px;
  line-height: 27px;
}

.mega-titre-3points {
  color: #114591;
  text-align: center;
  padding-bottom: 75px;
  font-size: 34px;
  font-weight: 700;
  line-height: 55px;
}

.text-span {
  text-decoration: underline;
}

.button {
  color: var(--white);
  -webkit-text-fill-color: inherit;
  background-color: #009688;
  background-clip: border-box;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: static;
}

.btn-3points {
  background-color: var(--vert-ir);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  width: 385px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 500;
  display: block;
}

.btn-3points:hover {
  background-color: #01685e;
}

.form-container {
  background-color: #0000;
  border-radius: 20px;
  justify-content: space-between;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  overflow: visible;
}

.heading {
  color: #fff;
  max-width: 881px;
  margin: 0 auto;
  padding-bottom: 7px;
  font-family: Proxima nova, sans-serif;
  font-size: 41px;
  line-height: 49.2px;
}

.heading-2 {
  color: var(--vert-btob);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 18px;
  padding-left: 10px;
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
}

.heading-2.argumenttitle1 {
  padding-top: 15px;
  line-height: 28.8px;
}

.text-block-8 {
  color: #fff;
  text-align: center;
  max-width: 569px;
  margin-top: 10px;
  font-family: Fontsfree net proxima nova;
  font-size: 18px;
  line-height: 24px;
}

.form-wrapper {
  background-color: var(--white);
  border: 0 solid #ffcc7a;
  border-radius: 0 20px 20px 0;
  flex-flow: column;
  width: auto;
  max-width: 490px;
  margin-left: 0;
  display: flex;
  box-shadow: 10px 10px 17px -6px #0003;
}

.text-block-9 {
  background-color: var(--rouge);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: none;
  border-bottom: 0 solid #d9d9d9;
  padding: 0;
  font-size: 21px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.rea-form {
  border-top: 0 solid #d9d9d9;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 40px;
  display: flex;
}

.image {
  width: 20px;
  height: auto;
  margin-right: 10px;
}

.rea-footer-item {
  flex: 0 auto;
  align-items: center;
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.text-rea-item {
  color: #232323;
  width: auto;
  font-size: 14px;
  line-height: 18px;
}

.container-form-inner {
  border-bottom: 0 solid #d9d9d9;
  border-top-right-radius: 0;
  border-bottom-right-radius: 20px;
  padding: 24px 32px 32px;
}

.titre-container {
  width: 130%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 11px;
}

.etoile-sous-form {
  text-align: center;
  margin-top: 20px;
}

.etoile-form {
  margin-left: 7px;
  margin-right: 7px;
  padding-left: 0;
}

.div-block-27 {
  text-align: center;
}

.text-block-10 {
  color: #000;
  margin-top: 10px;
  font-weight: 700;
  line-height: 19px;
}

.div-block-28 {
  text-align: center;
  padding-bottom: 20px;
  position: absolute;
  inset: auto 0% 0%;
}

.image-2 {
  margin-bottom: 0;
}

.link-3 {
  color: #000;
}

.blocgauche {
  justify-content: center;
  width: 160px;
  display: flex;
}

.blocdroit {
  justify-content: center;
  display: flex;
}

.flechegauche {
  margin-right: 24px;
}

.radio-button-label-8 {
  z-index: 50;
  color: #304b96;
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
  position: relative;
}

.radio {
  z-index: 2;
  border-radius: 0%;
  width: 160px;
  height: 140px;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.radio:hover {
  border-width: 2px;
  border-color: #304b96;
}

.radio.w--redirected-checked {
  border-color: #304b96;
}

.radio.w--redirected-focus {
  box-shadow: none;
}

.flechedroite {
  width: 160px;
}

.radio-button-2 {
  color: #000;
  cursor: pointer;
  background-color: #fff;
  background-image: url('../images/locataire.png');
  background-position: 50%;
  background-repeat: repeat-y;
  background-size: contain;
  border-width: 1px;
  border-color: #f5f5f5;
  border-radius: 5px;
  width: 160px;
  height: 140px;
  margin-left: 0;
  padding-left: 0;
  position: relative;
  top: -2px;
  left: 5px;
}

.radio-button-2.w--redirected-checked {
  background-color: #ff6d3a;
  background-image: url('../images/custom-checkbox-checkmark.589d534424.svg');
  background-position: 0 2px;
  background-repeat: repeat-x;
  background-size: auto;
  border-width: 2px;
  border-color: #fff;
}

.radio-button-2.w--redirected-focus {
  box-shadow: none;
}

.radio-button-2.appartement {
  background-image: url('../images/appartement2x.png');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: auto 68px;
  flex-direction: column;
  justify-content: flex-end;
  width: 160px;
  height: 140px;
  margin-bottom: 0;
  display: flex;
  top: 0;
  left: 0;
}

.radio-button-2.maison {
  background-image: url('../images/maison2x.png');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: auto 68px;
  flex-direction: column;
  justify-content: flex-end;
  width: 160px;
  height: 140px;
  margin-bottom: 0;
  display: flex;
  top: 0;
  left: 0;
}

.text-block-34 {
  color: #4b5563;
  text-align: center;
  white-space: normal;
  padding-bottom: 20px;
  font-family: Outfit, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

.form-item-2 {
  border: 0 solid #000;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
  display: block;
  position: relative;
}

.form-item-2.form-item-radio {
  display: flex;
}

.multipage_section-2 {
  transition: all .25s;
  position: relative;
  transform: translate(0);
}

.multipage_section-2.active {
  opacity: 1;
  flex-direction: column;
  justify-content: space-around;
  height: auto;
  padding-top: 0;
  transition: all .25s linear;
  display: block;
  inset: auto;
  overflow: visible;
}

.radio-button-label-7 {
  z-index: 50;
  color: #304b96;
  text-align: center;
  padding-bottom: 20px;
  display: block;
  position: relative;
  overflow: visible;
}

.flechesvertesinner {
  justify-content: center;
  margin-bottom: 15px;
  display: flex;
}

.radio-button-field {
  color: #000;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  background-color: #00899c;
  border: 1px solid #e6e6e6;
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 46px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  display: flex;
  position: relative;
}

.radio-button-field:hover {
  color: #000;
  background-color: #00272f;
}

.radio-button-field:focus {
  background-color: #00272f;
}

.radio-button-3, .radio-button-4 {
  display: none;
}

.radio-label-btn {
  color: #fff;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.bold-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
}

.div-block-29 {
  align-items: center;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.illus {
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  width: 70%;
  max-width: none;
  padding-top: 20px;
  padding-left: 11px;
  display: flex;
}

.image-3 {
  width: 120px;
  margin-bottom: 19px;
  margin-left: 12px;
  padding-left: 0;
}

.image-4 {
  max-width: 100%;
}

.div-block-30 {
  text-align: center;
  background-color: #10284b;
}

.div-block-30.max-w {
  padding-top: 25px;
  padding-bottom: 25px;
}

.section {
  color: var(--white);
  background-color: #10284b;
  position: relative;
}

.section-2 {
  background-color: #eef9f9;
}

.section-2.black {
  color: #231b18;
}

.section-2.white {
  color: #fff;
}

.heading-3 {
  color: var(--blue);
  font-size: 24px;
  line-height: 29px;
}

.div-block-31 {
  flex-direction: column;
  display: block;
}

.arguments {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #0000;
  flex-flow: column;
  width: 33%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.div-block-32 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
}

.bold-text-2, .bold-text-3, .bold-text-4 {
  font-size: 18px;
}

.text-radio {
  color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 17px;
  line-height: 16px;
  display: block;
}

.bold-text-5, .bold-text-6 {
  font-size: 18px;
  line-height: 16px;
}

.checkimg {
  width: 18px;
  height: 20px;
  margin-top: 6px;
  padding-top: 0;
}

.div-block-33 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.image-5 {
  position: absolute;
  inset: 8px 10px 10px auto;
}

.text-block-35 {
  color: #222;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
  margin-top: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
}

.text-block-35.description {
  font-weight: 400;
}

.beforeafter.twentytwenty.twentytwenty-container {
  object-fit: fill;
  height: 100%;
  max-height: none;
  position: relative;
}

.image-6, .image-7 {
  object-fit: cover;
  width: 100%;
  max-width: 685px;
  height: 100%;
  max-height: 451px;
}

.text-block-36 {
  font-size: 16px;
}

.header-2 {
  border-bottom: 0 solid #e8e8e8;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 23px;
  display: flex;
}

.container {
  text-align: center;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  display: block;
}

.container.flex {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.section-white {
  background-color: #effafa;
  padding: 40px 40px 0;
}

.section-white.white {
  background-color: #fff;
}

.div-block-16 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.confirmation-title {
  color: #004655;
  text-align: center;
  margin-top: 10px;
  font-size: 50px;
  line-height: 75px;
}

.bold-text-copy {
  font-family: Proxima nova, sans-serif;
  font-size: 60px;
}

.text-block-25 {
  color: #004655;
  text-align: center;
  margin-bottom: 30px;
}

.bold-text-7 {
  font-family: Proxima nova, sans-serif;
  font-size: 24px;
  line-height: 31px;
}

.image-8 {
  z-index: 5;
  position: absolute;
  inset: 83px 10% 0% auto;
}

.div-block-34 {
  background-color: #004655;
  border-top-right-radius: 20px;
  padding: 4px 0;
}

.section-3 {
  background-color: #f0e9e7;
  padding-top: 56px;
  padding-bottom: 56px;
}

.heading-4 {
  color: var(--vert-btob);
  margin-top: 30px;
  margin-bottom: 19px;
  font-family: Rajdhani, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.section-10 {
  background-color: #fff;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

.text-block-37 {
  color: #666;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.div-block-41 {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.div-block-41.container {
  border: 0 solid #e6e7f4;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: 20px;
}

.image-10 {
  padding-bottom: 15px;
}

.max-w-2 {
  text-align: center;
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.div-block-85 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--white);
  text-align: left;
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 35px 40px;
  display: flex;
}

.div-block-86 {
  max-width: 750px;
}

.text-block-45 {
  color: #004655;
  max-width: none;
  font-family: Outfit, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
}

.text-block-46 {
  max-width: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.div-block-87 {
  position: static;
}

.btn {
  text-align: left;
  background-color: #df6339;
  background-image: url('../images/left-arrow.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  border-radius: 7px;
  width: 204px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 16px 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  position: static;
}

.btn:hover {
  background-color: #ed5d1a;
  background-position: 86%;
}

.btn:focus {
  background-color: #ed5d1a;
}

.btn.profite {
  width: 181px;
}

.btn.profite:hover, .btn.profite:focus, .btn.profite:focus-visible, .btn.profite[data-wf-focus-visible] {
  background-color: #ed5d1a;
}

.btn.profite.blue {
  background-color: #004655;
  background-position: 82%;
  width: 167px;
}

.btn.profite.blue:hover {
  background-color: #00272f;
}

.div-block-26 {
  background-color: var(--white);
  text-align: center;
  max-width: 516px;
  margin-left: 0;
  padding: 20px;
}

.swiper-wrapper {
  display: flex;
}

.text-block-38 {
  color: #444;
  padding-right: 0;
  font-family: Proxima nova, sans-serif;
}

.swiper-slide {
  background-color: var(--white);
}

.swiper-slide.full {
  border-radius: 12px;
  height: auto;
  overflow: hidden;
}

.bold-text-8 {
  font-family: Rajdhani, sans-serif;
  line-height: 24px;
}

.box-swiper {
  background-color: var(--white);
  max-width: 100%;
}

.bold-text-9 {
  color: var(--vert-btob);
  line-height: 24px;
}

.heading-5 {
  color: #114591;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 5px;
  font-family: Rajdhani, sans-serif;
  font-size: 20px;
  line-height: 7px;
}

.bold-text-13 {
  color: var(--vert-btob);
  line-height: 25px;
}

.slider_3cols.js-slider_3cols.swiper-container {
  position: relative;
}

.div-block-44 {
  text-align: center;
  padding-bottom: 0;
}

.heading-6 {
  color: #004655;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Outfit, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
}

.text-block-28 {
  color: #333;
  text-align: center;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  font-family: Proxima nova, sans-serif;
  font-size: 15px;
  line-height: 22.5px;
}

.div-block-88 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-12 {
  object-fit: cover;
  width: 100%;
  max-width: 685px;
  height: 100%;
  max-height: 451px;
}

.heading-7 {
  color: #114591;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 60px 20px 0;
  font-family: Rajdhani, sans-serif;
  font-size: 34px;
  line-height: 37.4px;
}

.text-block-47 {
  text-align: left;
  padding-bottom: 1.4em;
  font-size: 18px;
  line-height: 25px;
}

.div-block-89 {
  z-index: 100;
  background-image: url('../images/pastille2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 180px;
  height: 180px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.div-block-75 {
  background-color: #f5f5f5;
  margin-top: 0;
  padding: 40px 97px;
}

.text-block-43 {
  text-align: left;
  font-size: 18px;
  line-height: 25px;
}

.section-11 {
  background-color: #fff;
  padding-bottom: 0;
  overflow: hidden;
}

.text-block-48, .text-block-49 {
  text-align: center;
  margin-top: 16px;
  font-size: 18px;
  line-height: 22.5px;
}

.text-block-50 {
  text-align: center;
  font-size: 15px;
  line-height: 22.5px;
}

.section-12 {
  background-color: #effafa;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.div-block-90 {
  background-color: var(--vert-btob);
}

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

.heading-8 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Rajdhani, sans-serif;
  font-size: 30px;
}

.heading-9 {
  color: #fff;
  text-align: center;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.div-block-91 {
  padding-right: 0;
}

.section-13 {
  background-color: #fff;
  margin-bottom: 0;
}

.div-block-92 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-93 {
  background-color: #fef7ef;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 40px 50px;
}

.div-block-93.right {
  border-radius: 0 20px 20px 0;
}

.div-block-93.blue {
  background-color: #effafa;
}

.heading-10 {
  color: #004655;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Outfit, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
}

.text-block-52 {
  text-align: left;
  font-size: 18px;
  line-height: 27px;
}

.bold-text-14 {
  color: var(--vert-btob);
}

.text-block-53 {
  color: #004655;
  text-align: center;
  text-transform: uppercase;
  font-family: Outfit, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

.text-block-54 {
  color: #999;
  text-align: center;
  font-size: 12px;
}

.text-span-2 {
  text-transform: uppercase;
  font-size: 21px;
  line-height: 25.2px;
}

.image-13 {
  margin-left: auto;
  margin-right: 0;
}

.section-14 {
  background-color: var(--color-bg-input);
  padding-bottom: 40px;
}

.div-block-94 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-11 {
  color: var(--vert-btob);
  text-align: center;
  margin-top: 0;
  margin-bottom: 19.5px;
  font-family: Rajdhani, sans-serif;
  font-size: 30px;
  line-height: 36px;
}

.div-block-95 {
  background-color: var(--white);
  padding: 35px 100px;
}

.link-block {
  background-image: url('../images/video-jeanne2x.jpg');
  background-position: 0 0;
  background-size: auto;
  width: 10px;
  min-width: 100%;
  max-width: 100%;
  height: 100px;
}

.video.video__small {
  background-image: url('../images/video-jeanne2x.jpg');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
}

.video.video__small.js-modal_video_open {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 273px;
}

.video.video__small.js-modal_video_open.videoroger {
  background-image: url('../images/video-roger2x.jpg');
  height: 273px;
}

.div-block-96 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.text-block-55 {
  text-transform: uppercase;
  max-width: 211px;
  padding-left: 0;
  line-height: 19.2px;
}

.div-block-98 {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.image-14 {
  width: 122px;
  max-width: 100%;
  margin-top: 5px;
  margin-left: 5px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.div-block-99 {
  align-items: center;
  display: flex;
}

.bold-text-15 {
  max-width: none;
}

.text-block-56 {
  font-size: 16px;
  line-height: 19.2px;
}

.text-block-57 {
  display: none;
}

.image-15 {
  margin-right: 15px;
  padding-right: 0;
}

.image-16 {
  width: 200px;
}

.text-block-58 {
  color: #004b59;
  padding-bottom: 0;
  font-family: Rajdhani, sans-serif;
  font-size: 38px;
  font-weight: 700;
}

.image-33 {
  width: 120px;
  margin-bottom: 14px;
  margin-left: 10px;
  margin-right: 9px;
}

.image-32 {
  width: 134px;
  margin-left: 10px;
}

.image-30 {
  height: 49px;
  margin-bottom: 5px;
}

.div-block-100 {
  justify-content: center;
  align-items: center;
  padding-bottom: 34px;
  display: flex;
}

.div-block-101 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 846px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.argument {
  text-align: center;
}

.text-block-59 {
  text-transform: uppercase;
  max-width: none;
  padding-bottom: 5px;
  font-size: 24px;
  line-height: 28.8px;
}

.section-15 {
  background-color: var(--color-bg-input);
  padding-top: 0;
  padding-bottom: 24px;
}

.div-block-102 {
  background-color: var(--white);
  padding-top: 28px;
  padding-bottom: 28px;
}

.div-block-103 {
  background-color: #fff;
  margin-top: 21px;
  margin-bottom: 21px;
  padding: 42px 122px 35px;
}

.text-block-60 {
  color: #004b59;
  text-align: center;
  max-width: 945px;
  margin-left: auto;
  margin-right: auto;
  font-family: Rajdhani, sans-serif;
  font-size: 36px;
  line-height: 36px;
}

.text-span-4 {
  font-weight: 700;
}

.div-block-104 {
  text-align: left;
  margin-top: 24px;
}

.div-block-104.center {
  text-align: center;
}

.div-block-104.center.no-margin {
  margin-top: 0;
}

.div-block-105 {
  flex-direction: row;
  align-items: center;
  display: flex;
}

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

.div-block-106 {
  position: relative;
}

.image-36 {
  max-width: 149px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.text-block-61 {
  color: #555;
  text-align: center;
  margin-bottom: 8px;
  padding-top: 10px;
  font-size: 14px;
  line-height: 13.2px;
}

.link-4 {
  color: #666;
}

.checkbox-2 {
  color: #32ac97;
  cursor: pointer;
  border-width: 1px;
  border-color: #555;
  border-radius: 3px;
  flex: none;
  align-self: flex-start;
  width: 14px;
  height: 18px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
  padding: 10px;
  position: static;
}

.checkbox-2.w--redirected-checked {
  color: #00a19a;
  -webkit-text-stroke-color: #00899c;
  background-color: #00a19a;
  background-size: contain;
  border-color: #004655;
  position: relative;
}

.checkbox-2.w--redirected-focus {
  box-shadow: none;
  color: #e21c70;
  -webkit-text-stroke-color: #00899c;
}

.checkbox-label-2 {
  color: #000;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
}

.bold-text-16 {
  font-weight: 400;
}

.paragraph {
  color: #00899c;
  text-align: right;
  text-transform: uppercase;
  width: 340px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.image-37 {
  width: 116px;
  height: 116px;
  min-height: auto;
  max-height: none;
}

.heading-12 {
  color: #004655;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  text-decoration: none;
}

.text-span-6 {
  color: #df6339;
}

.heading-13 {
  color: #00899c;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}

.image-38 {
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  height: 100%;
}

.image-39 {
  width: 250px;
  display: block;
  position: absolute;
  top: 28px;
  right: 0;
}

.text-block-62 {
  color: #df6339;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 12px;
  padding-top: 4px;
  padding-bottom: 12px;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.text-block-63 {
  color: #4b5563;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  line-height: 20px;
}

.section-16 {
  background-color: #fff;
}

.image-40 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  position: relative;
}

.text-span-7 {
  background-color: #cceceb;
  padding-left: 5px;
  padding-right: 5px;
}

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

.image-41 {
  object-fit: cover;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 100%;
  overflow: hidden;
}

.image-42 {
  position: absolute;
  inset: auto 24px 32px auto;
}

.image-43, .image-44 {
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  height: 100%;
}

.heading-14 {
  color: #004655;
}

.heading-15 {
  color: #004655;
  margin-top: 20px;
  font-family: Outfit, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.flex-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.flex-block-3 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-start;
  align-items: center;
}

.flex-block-4 {
  flex-flow: row;
}

.div-block-107 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #effafa;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 25%;
  padding: 32px;
  display: flex;
}

.text-block-64 {
  color: #004655;
  text-align: left;
  font-family: Outfit, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}

.text-block-65 {
  text-align: left;
  font-size: 18px;
  line-height: 27px;
}

.div-block-108 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.bold-text-17 {
  color: #004b59;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  line-height: 24px;
}

.div-block-109 {
  text-align: left;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  max-width: 516px;
  height: auto;
  margin-left: 0;
  padding: 20px;
}

.bold-text-18 {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  line-height: 25px;
}

.section-17 {
  background-color: #effafa;
  padding: 10px 0 40px;
  overflow: hidden;
}

.text-block-66 {
  color: #444;
  padding-right: 0;
  font-family: Proxima nova, sans-serif;
}

.div-block-110 {
  text-align: center;
  background-color: #0000;
  padding-bottom: 30px;
}

.div-block-110.max-w {
  padding-top: 0;
}

.slider_4cols.js-slider_4cols.swiper-container {
  position: relative;
}

.heading-16 {
  color: #004b59;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 5px;
  font-family: Rajdhani, sans-serif;
  font-size: 20px;
  line-height: 7px;
}

.bold-text-19 {
  color: #004b59;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  line-height: 24px;
}

.bold-text-20 {
  font-family: Outfit, sans-serif;
  font-weight: 600;
}

.swiper-slide-2.swiper-slide {
  object-fit: fill;
  background-color: #0000;
  border-radius: 12px;
  height: auto;
  display: block;
  overflow: visible;
}

.bold-text-12 {
  color: #004b59;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  line-height: 24px;
}

.box-swiper-2 {
  background-color: #fff;
  border-radius: 12px;
  flex-flow: column;
  max-width: 100%;
  height: auto;
  display: block;
}

.box-swiper-2.box-swiper {
  height: 100%;
}

.heading-17 {
  color: #004b59;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 60px 20px 0;
  font-family: Rajdhani, sans-serif;
  font-size: 34px;
  line-height: 37.4px;
}

.heading-17.heading2small {
  font-size: 30px;
}

.text-block-67 {
  color: #202020;
  text-align: center;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  font-family: Proxima nova, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.image-45 {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.heading-18 {
  color: #004655;
  font-size: 40px;
  line-height: 48px;
}

.div-block-111 {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-111.menu {
  justify-content: center;
  align-items: center;
  width: auto;
}

.section-8 {
  background-color: #fff;
  border-top: 0 solid #eee;
  padding: 25px 15px 50px;
}

.div-block-112 {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.div-block-112.container {
  border: 0 solid #e6e7f4;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 10px;
}

.div-block-113 {
  flex-direction: column;
  align-items: center;
  width: 18%;
  display: flex;
}

.text-block-68 {
  color: #666;
  text-align: center;
  padding-top: 13px;
  font-family: Proxima nova, sans-serif;
}

.text-block-69 {
  color: #004655;
  text-transform: uppercase;
  font-family: Outfit, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}

.text-block-70 {
  color: #4b5563;
  font-size: 14px;
  line-height: 21px;
}

.section-18 {
  background-color: #fff;
  padding: 10px;
}

.div-block-114 {
  background-color: #e5e7eb;
  height: 1px;
}

.text-block-71 {
  font-size: 18px;
  line-height: 23px;
}

.grid {
  display: flex;
}

.text-block-72 {
  color: #fff;
  text-transform: uppercase;
  background-color: #df6339;
  font-weight: 700;
  text-decoration: none;
}

.text-block-72.btn-next.js-multipage_next {
  text-align: center;
  text-indent: 0;
  text-transform: none;
  background-color: #e5114d;
  background-image: url('../images/Frame.svg');
  background-position: 67%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 4px;
  height: auto;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 20px;
  line-height: 24px;
}

.text-block-72.btn-next.js-multipage_next:hover, .text-block-72.btn-next.js-multipage_next:focus {
  background-color: #af0e3c;
}

.text-block-72.btn-next.js-multipage_next.last {
  background-image: none;
}

.text-block-72.btn-next.js-multipage_next.arrow {
  background-position: 67%;
}

.link-block-2 {
  width: 100%;
  margin-bottom: 20px;
  text-decoration: none;
}

.text-span-9 {
  color: #00899c;
}

.text-block-73 {
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.text-span-10 {
  color: #00899c;
}

.text-span-11 {
  text-decoration: underline;
}

.text-block-74 {
  color: #fff;
  text-transform: uppercase;
  background-color: #00899c;
  width: 254px;
  margin-left: auto;
  margin-right: auto;
  padding: 4px 2px 2px;
  font-family: Outfit, sans-serif;
  font-size: 22px;
  font-weight: 600;
  display: block;
}

.div-block-115 {
  border-bottom: 1px solid #d1d5db;
}

.image-51 {
  height: 64px;
}

.image-52 {
  position: absolute;
  inset: auto auto 24px 24px;
}

.text-block-75 {
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 8px;
  font-family: Proxima nova, sans-serif;
  font-weight: 400;
  line-height: 19px;
}

.text-block-76 {
  color: #004655;
  text-align: left;
  margin-bottom: 12px;
  font-family: Outfit, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.button-2 {
  cursor: pointer;
  background-color: #ff254b;
  background-image: url('../images/ArrowRight-2.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 17px 55px 12px 30px;
  font-family: poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
}

.button-2:hover {
  background-color: #d61537;
  background-position: 90%;
}

.button-2:focus {
  background-color: #d61537;
}

.link-5 {
  color: #fff;
  font-family: poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
}

.hero {
  background-color: #eef9f9;
}

.text-block-77 {
  color: #222;
  text-align: left;
  font-family: paralucent, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 55.2px;
}

.text-block-77.encart {
  color: #222;
  text-align: center;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: auto;
  font-weight: 600;
}

.div-block-116 {
  display: flex;
}

.div-block-117 {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.div-block-118 {
  width: 100%;
}

.text-block-78 {
  color: #00a19a;
  text-align: left;
  margin-bottom: 40px;
  font-family: amsi, sans-serif;
  font-size: 24px;
  line-height: 31.2px;
}

.image-53 {
  max-width: 585px;
}

.div-block-119 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.text-span-12 {
  color: #a92321;
}

.text-block-79 {
  color: #00a19a;
  margin-bottom: 20px;
  font-family: amsi, sans-serif;
  font-size: 32px;
  line-height: 32px;
}

.div-block-120 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-121 {
  width: 100%;
  display: block;
}

.div-block-122 {
  width: 100%;
  display: flex;
}

.text-block-80 {
  color: #1d1d1b;
  text-align: left;
  font-size: 18px;
  line-height: 27px;
}

.image-54 {
  object-fit: cover;
  border-radius: 8px;
}

.dropdown-toggle {
  z-index: 99;
  pointer-events: auto;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
}

.dropdown-toggle.second {
  margin-top: 0;
}

.dropdown {
  background-color: #eef9f9;
  border-radius: 12px 12px 0 0;
  width: 100%;
  overflow: hidden;
}

.text-block-81 {
  color: #000;
  font-family: poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.dropdown-list {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: #fff;
  border-bottom: 1px solid #f3f3f3;
  border-left: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 40px;
  display: flex;
  position: static;
}

.dropdown-list.flex {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  border-radius: 0;
  padding: 8px 0 0;
  display: flex;
}

.icon-dropdown {
  z-index: 99;
  background-color: #0000;
  border-radius: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.icon-rotate {
  display: block;
}

.dropdown-link {
  background-image: url('../images/bullet.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  padding: 0 0 0 20px;
}

.text-block-82 {
  background-image: url('../images/bullet.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  padding-left: 20px;
}

.text-block-82.text {
  color: #222;
  background-image: none;
  padding-left: 0;
  font-family: poppins, sans-serif;
  font-size: 15px;
  line-height: 23px;
}

.text-block-82.text.big {
  background-position: 0 8px;
}

.heading-19 {
  color: #00a19a;
  text-align: left;
  margin: 0 auto 0 0;
  font-size: 48px;
  line-height: 55px;
}

.image-55 {
  margin-left: auto;
  margin-right: 0;
  position: absolute;
  inset: auto 0 auto auto;
}

.image-56 {
  position: absolute;
  right: 0;
}

.text-block-83 {
  color: #00a19a;
  font-family: amsi, sans-serif;
  font-size: 48px;
  line-height: 55.2px;
}

.button-3 {
  text-align: left;
  cursor: pointer;
  background-color: #00a19a;
  background-image: url('../images/Frame-613.svg');
  background-position: 131px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 6px;
  width: 171px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 20px;
  padding-left: 24px;
  font-family: amsi, sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.button-3:hover, .button-3:focus {
  background-color: #006e69;
}

.button-3.confirmation {
  background-image: none;
  width: 305px;
}

.text-block-84 {
  color: #1d1d1b;
  font-family: amsi, sans-serif;
  font-size: 18px;
  line-height: 20.7px;
}

.flex-block-5 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  overflow: visible;
}

.flex-block-5.legals {
  display: none;
}

.flex-block-6, .flex-block-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.flex-block-8 {
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  padding-bottom: 24px;
}

.link-block-3 {
  color: #555;
  line-height: 24px;
  text-decoration: none;
}

.heading-20 {
  color: #00a19a;
  text-align: left;
}

.image-57 {
  width: 50%;
  margin-top: auto;
}

.flex-block-9 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
}

.text-block-86 {
  color: #555;
  text-align: left;
  margin-bottom: 32px;
  font-family: amsi, sans-serif;
  font-size: 24px;
  line-height: 31.2px;
}

.div-block-123 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-block-87 {
  color: #555;
  text-align: center;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 40px;
  font-size: 14px;
}

.link-6 {
  color: #333;
  text-decoration: none;
}

.rich-text-block-2 {
  text-align: left;
  padding-bottom: 40px;
  font-family: Proxima nova, sans-serif;
  font-size: 18px;
  line-height: 27px;
}

.heading-21 {
  text-align: center;
  width: 100%;
  padding-bottom: 20px;
  font-family: amsi, sans-serif;
}

.heading-22, .heading-23, .heading-24 {
  font-family: amsi, sans-serif;
  font-weight: 400;
}

.heading-25 {
  text-align: left;
  font-family: amsi, sans-serif;
  font-weight: 400;
}

.paragraph-2 {
  text-align: left;
}

.rich-text-block-3 {
  font-family: Proxima nova, sans-serif;
  font-size: 18px;
  line-height: 23.4px;
}

.paragraph-3, .paragraph-4 {
  text-align: left;
}

.text-block-88 {
  text-align: left;
  font-family: Proxima nova, sans-serif;
  font-size: 18px;
  line-height: 23.4px;
}

.text-block-88.end {
  margin-bottom: 60px;
  padding-bottom: 0;
}

.link-7 {
  color: #333;
}

.code-embed {
  text-align: left;
}

.div-block-124 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  display: flex;
}

.link-block-4 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.text-block-89 {
  color: #fff;
  font-family: poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
}

.text-span-14 {
  background-image: url('../images/underline.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-bottom: 22px;
  display: inline-block;
}

.grid-2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, 50%) repeat(auto-fit, minmax(200px, 50%));
}

.grid-2.original {
  display: none;
}

.grid-2.trois {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, 50%) minmax(200px, 50%);
  grid-auto-columns: 1fr;
  display: grid;
}

.text-block-90 {
  text-transform: uppercase;
  font-family: poppins, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}

.flex-block-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  background-color: #ff254b;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 44px;
}

.text-block-91 {
  color: #ff0;
  padding-top: 5px;
  font-family: poppins, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 110%;
}

.div-block-125 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-radius: 16px;
  flex-flow: column;
  padding: 20px;
  display: flex;
}

.div-block-125.bloc-produit.cinq, .div-block-125.bloc-produit.six {
  width: 100%;
}

.flex-block-11 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #ff0;
  border: 0 solid #000;
  padding: 4px 4px 2px;
}

.text-block-92 {
  color: #ff254b;
  margin-bottom: -7px;
  font-family: poppins, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
}

.text-block-93 {
  color: #ff254b;
  font-family: poppins, sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.flex-block-12 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 12px;
}

.text-block-94 {
  color: #222;
  font-family: poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.text-block-95 {
  color: #7e7e7e;
  text-align: left;
  margin-top: 4px;
  font-family: poppins, sans-serif;
  font-size: 14px;
}

.image-59 {
  padding-left: 0;
  padding-right: 0;
}

.text-block-96 {
  font-family: poppins, sans-serif;
  font-size: 15px;
}

.text-block-97 {
  color: #222;
  font-family: poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.text-block-98 {
  color: #222;
  margin-bottom: -7px;
  font-family: poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.div-block-126 {
  border: 1px solid #d6d6d6;
  border-radius: 50px;
  margin-top: 10px;
  margin-bottom: 8px;
  padding: 8px 12px;
}

.div-block-127 {
  background-color: #d6d6d6;
  border-top: 1px #000;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
}

.div-block-127.second {
  margin-top: 18px;
}

.div-block-127.quatre {
  margin-top: 18px;
  margin-bottom: 8px;
}

.text-block-99 {
  color: #222;
}

.flex-block-13 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
}

.text-block-100 {
  text-align: left;
  margin-bottom: -4px;
  padding-top: 3px;
  font-family: poppins, sans-serif;
  font-size: 15px;
}

.text-block-100.large {
  display: none;
}

.flex-block-14 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.button-4 {
  color: #000;
  background-color: #ddde3a;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 8px;
  padding: 15px 30px 12px;
  font-family: poppins, sans-serif;
  font-weight: 600;
  display: flex;
}

.button-4:hover, .button-4:focus {
  background-color: #c9ca25;
}

.button-4.black-section {
  background-image: url('../images/ArrowRight-3.svg');
  background-position: 92%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 60px;
}

.button-4.black-section:hover, .button-4.black-section:focus {
  background-position: 94%;
}

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

.button-4.full.img {
  background-image: url('../images/Storefront.svg');
  background-position: 10%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  width: auto;
  padding-left: 60px;
}

.button-4.full.rose {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  background-color: #ff254b;
  padding-bottom: 15px;
  text-decoration: none;
}

.flex-block-15 {
  width: 100%;
}

.div-block-128 {
  position: relative;
}

.div-block-129 {
  background-color: #000;
  width: 65px;
  height: 2px;
  position: absolute;
  top: 8px;
  left: -5px;
  transform: rotate(-23deg);
}

.div-block-130 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: url('../images/BLOC-WEB-TO-STORE-1.jpg');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 48px 20px;
  display: flex;
  overflow: hidden;
}

.div-block-130.produit-image {
  background-position: 50%;
  background-size: cover;
  height: 100%;
  display: none;
}

.div-block-130.produit-image.solo {
  background-image: url('../images/IMAGE-export.png');
  justify-content: center;
  align-items: flex-start;
  height: 262px;
  padding-left: 100px;
  display: flex;
}

.paragraph-5 {
  color: #7e7e7e;
  text-align: left;
  margin-top: 24px;
}

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

.text-block-101 {
  color: #fff;
  text-align: left;
  font-family: paralucent, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
}

.image-60 {
  border-radius: 12px;
  width: 484px;
  max-width: none;
}

.flex-block-17 {
  box-sizing: border-box;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  aspect-ratio: auto;
  object-fit: fill;
  width: 100%;
  display: flex;
}

.text-block-102 {
  color: #fff;
  text-align: left;
  font-size: 18px;
  line-height: 25.2px;
}

.flex-block-18 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  width: auto;
}

.image-61 {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  max-width: none;
  height: 765px;
  overflow: hidden;
}

.flex-block-19 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: auto;
}

.image-62 {
  width: 116px;
  height: 116px;
}

.link-8 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

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

.flex-block-21 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
}

.flex-block-22 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-start;
  align-items: center;
}

.text-block-103 {
  text-align: left;
  width: 160px;
  font-size: 14px;
}

.image-63 {
  margin-top: 140px;
}

.image-64, .image-65 {
  display: none;
}

.text-block-104 {
  color: #fff;
  text-align: left;
  align-self: flex-start;
  width: 490px;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

.text-span-15 {
  color: #ddde3a;
}

.div-block-141 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.text-block-105 {
  color: #161514;
  font-weight: 600;
  text-decoration: none;
}

.link-block-5 {
  font-size: 18px;
  text-decoration: none;
}

.text-block-39 {
  padding-right: 40px;
  font-size: 15px;
}

.desktop {
  padding-right: 40px;
}

.desktop.w--current {
  margin-right: 64px;
}

.div-block-131 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.link-9 {
  color: #161514;
  padding-right: 0;
  font-size: 14px;
  text-decoration: none;
}

.link-9.link-2-cookie-button {
  padding-right: 0;
}

.div-block-135 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-66 {
  width: 116px;
  height: 116px;
  min-height: auto;
  max-height: none;
  margin-left: 0;
  margin-right: 0;
}

.navbar-2 {
  display: none;
}

.text-block-106 {
  color: #fff;
  text-decoration: none;
}

.div-block-132 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.link-block-6 {
  background-color: #dd8d51;
  border-radius: 8px;
  padding: 16px 20px;
  font-weight: 300;
  text-decoration: none;
}

.link-block-6:hover {
  background-color: #ce7d41;
}

.header-3 {
  z-index: 100;
  background-color: #2a2928;
  border-bottom: 1px #d8d8d8;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 12px 12px 12px 32px;
  display: flex;
  position: relative;
  box-shadow: 0 2px 5px #0003;
}

.header-3.container {
  box-shadow: none;
  background-color: #263329;
  border-radius: 0;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  height: auto;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  position: fixed;
  top: 0;
}

.flex-block-23 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.superscript {
  margin-top: -20px;
  font-size: 28px;
  display: inline;
}

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

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, 100%);
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .body {
    background-color: #fff;
  }

  .form {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .max-w {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .max-w.img-et-form.box5050 {
    flex-direction: row;
    justify-content: space-between;
  }

  .max-w.hero {
    margin-top: 0;
  }

  .div-block-20 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .header {
    position: sticky;
  }

  .form-container {
    justify-content: space-around;
  }

  .heading {
    max-width: none;
    font-size: 50px;
    line-height: 60px;
  }

  .heading-2 {
    font-family: Outfit, sans-serif;
    font-weight: 600;
  }

  .form-wrapper {
    width: auto;
    max-width: 490px;
    margin-left: 0;
  }

  .text-block-9 {
    padding: 0;
  }

  .div-block-30.max-w {
    position: relative;
  }

  .section-2.black {
    color: #231b18;
    background-color: #231b18;
  }

  .section-2.white {
    background-color: #fff;
  }

  .beforeafter.twentytwenty.twentytwenty-container {
    width: auto;
    max-width: 685px;
    margin-right: 0;
    padding-right: 0;
  }

  .image-6, .image-7 {
    max-width: 685px;
    max-height: none;
  }

  .image-8 {
    right: 10%;
  }

  .heading-4 {
    font-size: 50px;
    line-height: 60px;
  }

  .btn {
    border-radius: 3px;
  }

  .text-block-38 {
    text-align: center;
  }

  .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
  }

  .swiper-slide.full {
    height: auto;
  }

  .box-swiper {
    overflow: visible;
  }

  .heading-5 {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 5px;
    line-height: 7px;
  }

  .image-12 {
    max-width: 685px;
    max-height: none;
  }

  .heading-7 {
    padding-right: 115px;
    font-size: 36px;
  }

  .div-block-91 {
    width: 100%;
  }

  .heading-10 {
    margin-bottom: 20px;
  }

  .image-33 {
    margin-left: 10px;
  }

  .text-span-5 {
    text-transform: uppercase;
  }

  .checkbox-label-2 {
    line-height: 18px;
  }

  .image-38 {
    width: 100%;
  }

  .text-block-64 {
    font-size: 20px;
  }

  .heading-16 {
    margin-bottom: 10px;
    padding-bottom: 5px;
    line-height: 7px;
  }

  .bold-text-19 {
    font-family: Outfit, sans-serif;
    font-weight: 600;
  }

  .heading-17 {
    padding-right: 115px;
    font-size: 36px;
  }

  .text-span-8, .text-span-9 {
    color: #00899c;
  }

  .text-block-73 {
    font-size: 18px;
  }

  .hero {
    background-color: #263329;
  }

  .text-block-77, .text-block-77.encart {
    font-family: paralucent, sans-serif;
    font-weight: 600;
  }

  .text-block-79 {
    color: #00a19a;
  }

  .text-block-87 {
    padding-top: 0;
  }

  .grid-2 {
    grid-template-rows: auto;
    grid-template-columns: minmax(200px, 50%) minmax(200px, 50%);
    width: 100%;
  }

  .grid-2.original {
    display: none;
  }

  .grid-2.trois {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-rows: auto;
    grid-template-columns: minmax(200px, 33%) minmax(200px, 33%) minmax(200px, 33%);
    grid-auto-columns: 1fr;
    display: grid;
  }

  .flex-block-10 {
    background-color: #ff254b;
    justify-content: center;
    align-items: center;
  }

  .text-block-91 {
    color: #ff0;
  }

  .div-block-125.bloc-produit.cinq, .div-block-125.bloc-produit.six {
    width: 100%;
  }

  .div-block-127.quatre {
    margin-bottom: 8px;
  }

  .text-block-100 {
    overflow: visible;
  }

  .text-block-100.mobile {
    display: none;
  }

  .text-block-100.large {
    display: block;
  }

  .button-4.full.rose {
    color: #fff;
    background-color: #ff254b;
  }

  .div-block-130.produit-image {
    width: 100%;
    height: 731px;
    display: flex;
  }

  .text-block-104.col {
    text-align: center;
    width: auto;
  }

  .grid-4 {
    grid-template-rows: auto;
    grid-template-columns: minmax(200px, 100%);
    width: 100%;
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .checkbox-label {
    font-size: 12px;
    line-height: 15.6px;
  }

  .submit-button {
    white-space: normal;
    font-size: 16px;
  }

  .demo-row {
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .demo-col {
    width: 50%;
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .max-w {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .max-w.header {
    padding-left: 0;
    padding-right: 0;
  }

  .max-w.blue {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .max-w.confirmation {
    flex-flow: column;
  }

  .max-w.black {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    background-color: #231b18;
    flex-flow: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .max-w.footer {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .div-block-20 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .header {
    height: auto;
  }

  .div-block-22 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .link-2 {
    text-align: center;
  }

  .encart-3point {
    padding-left: 60px;
    padding-right: 60px;
  }

  .form-container {
    background-image: none;
    flex-direction: column-reverse;
    min-height: 0;
    padding-bottom: 0;
  }

  .heading {
    font-size: 34px;
    line-height: 40.8px;
  }

  .heading-2 {
    padding-bottom: 15px;
    font-size: 24px;
    line-height: 28.8px;
  }

  .heading-2.argumenttitle1 {
    max-width: none;
  }

  .text-block-8 {
    max-width: 440px;
    font-size: 18px;
    line-height: 22px;
  }

  .form-wrapper {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    max-width: 483px;
    margin-left: auto;
    margin-right: auto;
  }

  .text-block-9 {
    font-size: 18px;
    line-height: 21.6px;
  }

  .rea-form {
    display: flex;
  }

  .rea-footer-item {
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-rea-item {
    text-align: center;
  }

  .container-form-inner {
    border-radius: 0;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .titre-container {
    width: 135%;
    padding-top: 0;
  }

  .div-block-28 {
    margin-bottom: 0;
    padding-bottom: 20px;
    display: none;
    bottom: 0%;
  }

  .image-2 {
    overflow: visible;
  }

  .radio-button-2.appartement {
    justify-content: flex-end;
    align-items: center;
  }

  .radio-button-2.maison {
    align-items: center;
    margin-right: 24px;
  }

  .text-block-34 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 22px;
    line-height: 26.4px;
  }

  .form-item-2.form-item-radio {
    justify-content: center;
  }

  .div-block-29 {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .illus {
    width: 65%;
    padding-top: 0;
  }

  .image-3 {
    width: 100px;
  }

  .image-4 {
    max-width: 100%;
  }

  .arguments {
    width: 100%;
  }

  .div-block-32 {
    grid-row-gap: 31px;
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: stretch;
  }

  .header-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-white.white {
    padding-left: 0;
    padding-right: 0;
  }

  .image-8 {
    display: none;
  }

  .div-block-34 {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-3 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .heading-4 {
    text-align: center;
    font-size: 30px;
    line-height: 36px;
  }

  .section-10 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-block-37 {
    line-height: 15.4px;
  }

  .div-block-41.container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .div-block-85 {
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .text-block-45 {
    font-size: 18px;
  }

  .text-block-46 {
    padding-bottom: 22px;
    font-size: 16px;
  }

  .div-block-87 {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .btn {
    background-position: 92%;
    border-radius: 3px;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 51px;
  }

  .div-block-26 {
    text-align: left;
    margin-left: 0;
    padding-right: 20px;
  }

  .text-block-38 {
    padding-bottom: 0;
  }

  .swiper-slide {
    max-width: 100%;
  }

  .swiper-slide.full {
    height: auto;
  }

  .image-11 {
    width: 100%;
  }

  .heading-5 {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 24px;
    display: flex;
    position: static;
  }

  .div-block-88 {
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .heading-7 {
    padding-bottom: 15px;
    padding-right: 0;
    font-size: 23px;
    line-height: 25.3px;
  }

  .text-block-47 {
    font-size: 16px;
  }

  .div-block-89 {
    width: 150px;
    height: 150px;
  }

  .div-block-75 {
    padding: 30px;
  }

  .text-block-43 {
    font-size: 16px;
  }

  .heading-8 {
    font-size: 22px;
    line-height: 26.4px;
  }

  .div-block-91 {
    max-width: 483px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    display: block;
  }

  .div-block-92 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block-93 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-93.right, .div-block-93.right.blue {
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
  }

  .div-block-93.blue {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
  }

  .heading-10 {
    font-size: 24px;
    line-height: 28.8px;
  }

  .bold-text-14 {
    font-size: 26px;
    line-height: 31.2px;
  }

  .image-13 {
    margin-top: 0;
    padding-top: 0;
  }

  .div-block-94 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .heading-11 {
    font-size: 30px;
    line-height: 36px;
  }

  .div-block-95 {
    padding: 25px 40px;
  }

  .video.video__small.js-modal_video_open, .video.video__small.js-modal_video_open.videoroger {
    height: 200px;
  }

  .div-block-96 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-96.max-w {
    width: 100%;
  }

  .text-block-55 {
    max-width: none;
  }

  .div-block-98 {
    border-top-left-radius: 0;
    border-bottom-right-radius: 20px;
  }

  .text-block-56 {
    display: none;
  }

  .text-block-57 {
    display: block;
  }

  .image-16 {
    margin-top: 5px;
  }

  .text-block-58 {
    font-size: 30px;
    line-height: 36px;
  }

  .image-33 {
    margin-left: 10px;
  }

  .div-block-101 {
    max-width: none;
  }

  .text-block-59 {
    font-size: 18px;
    line-height: 21.6px;
  }

  .div-block-102 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-103 {
    padding: 20px 40px;
  }

  .text-block-60 {
    font-size: 30px;
  }

  .image-35 {
    object-fit: fill;
    height: auto;
  }

  .image-36 {
    max-width: 171px;
    top: 10px;
    left: 10px;
  }

  .checkbox-label-2 {
    font-size: 18px;
    line-height: 15.6px;
  }

  .bold-text-16 {
    font-size: 18px;
    line-height: 18px;
  }

  .paragraph {
    text-align: center;
    width: auto;
    font-size: 22px;
  }

  .image-37 {
    width: 64px;
    height: 64px;
  }

  .heading-12 {
    margin-top: 0;
  }

  .heading-13 {
    margin-top: 10px;
  }

  .image-38 {
    display: block;
    overflow: hidden;
  }

  .image-39 {
    width: 200px;
    display: block;
  }

  .image-41 {
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    width: 100%;
    overflow: hidden;
  }

  .image-43 {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    width: 100%;
  }

  .image-44 {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    width: 100%;
  }

  .div-block-107 {
    flex-flow: row;
    width: 100%;
  }

  .div-block-109 {
    margin-left: 0;
    padding-right: 20px;
  }

  .section-17 {
    margin-top: 0;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-66 {
    padding-bottom: 0;
  }

  .heading-16 {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 24px;
    display: flex;
    position: static;
  }

  .heading-17 {
    padding-bottom: 15px;
    padding-right: 0;
    font-size: 23px;
    line-height: 25.3px;
  }

  .text-block-67 {
    font-size: 16px;
  }

  .image-45 {
    width: 100%;
  }

  .div-block-111, .div-block-111.menu {
    display: none;
  }

  .div-block-111.tel {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .section-8 {
    padding-bottom: 50px;
  }

  .div-block-112.container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .text-block-71 {
    text-align: center;
  }

  .grid {
    flex-flow: column;
  }

  .image-52 {
    width: 150px;
  }

  .text-block-77 {
    text-align: center;
    margin-top: 24px;
    font-size: 40px;
  }

  .text-block-77.encart {
    text-align: center;
    margin-top: 0;
    font-size: 40px;
  }

  .div-block-116 {
    flex-flow: column;
  }

  .text-block-78 {
    text-align: center;
    margin-bottom: 20px;
  }

  .image-53 {
    width: 100%;
    max-width: 550px;
  }

  .div-block-119 {
    align-items: center;
  }

  .button-3 {
    padding-bottom: 16px;
    padding-right: 24px;
  }

  .button-3.confirmation {
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .image-57 {
    width: auto;
    margin-left: auto;
  }

  .flex-block-9 {
    flex-flow: column;
  }

  .text-span-14 {
    text-align: center;
  }

  .grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: minmax(200px, 50%) minmax(200px, 50%);
  }

  .grid-2.trois {
    flex-flow: wrap;
    grid-template-columns: minmax(200px, 50%) minmax(200px, 50%);
  }

  .div-block-125.bloc-produit.quatre {
    display: none;
  }

  .div-block-125.bloc-produit.quatre.produit-id-4 {
    display: block;
  }

  .div-block-125.bloc-produit.cinq, .div-block-125.bloc-produit.six {
    width: 100%;
    display: block;
  }

  .div-block-127.quatre {
    margin-bottom: 8px;
  }

  .div-block-130 {
    background-position: 50%;
    height: 600px;
  }

  .div-block-130.produit-image {
    background-position: 50% 100%;
    height: 100%;
  }

  .div-block-130.produit-image.solo {
    background-image: url('../images/IMAGE-export2.png');
    background-position: 0%;
    padding-left: 20px;
  }

  .text-block-101 {
    font-size: 40px;
  }

  .flex-block-19 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .flex-block-20 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .flex-block-22 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .text-block-103 {
    width: 100%;
  }

  .image-63 {
    display: none;
    overflow: clip;
  }

  .image-64 {
    margin-top: 80px;
    display: block;
  }

  .text-block-104 {
    width: 400px;
  }

  .nav-menu-2 {
    grid-column-gap: 46px;
    grid-row-gap: 46px;
    background-color: #263329;
    border-radius: 0;
    flex-flow: column;
    align-items: flex-start;
    padding-bottom: 32px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  .link-block-5 {
    text-align: left;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .link-block-5:hover, .link-block-5:focus {
    padding-left: 3px;
  }

  .div-block-172 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    color: #fff;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    display: flex;
  }

  .div-block-171 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-top: 20px;
    display: flex;
  }

  .div-block-170 {
    justify-content: space-between;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  .text-block-39 {
    padding-right: 20px;
  }

  .desktop {
    display: none;
  }

  .div-block-131 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .link-9 {
    padding-right: 20px;
  }

  .link-9.menu {
    color: #fff;
  }

  .div-block-135 {
    display: none;
  }

  .image-66, .image-66.mobile {
    display: block;
  }

  .navbar-2 {
    background-color: #0000;
    width: 100%;
    display: block;
  }

  .div-block-132 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-button-2 {
    background-color: #0000;
    justify-content: center;
    align-items: center;
    padding-top: 18px;
    display: block;
  }

  .header-3 {
    height: auto;
    position: relative;
  }

  .header-3.container {
    box-shadow: none;
    background-color: #263329;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .flex-block-23 {
    display: none;
  }

  .superscript {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .field-label-text {
    word-break: normal;
  }

  .form {
    text-align: left;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .multipage.js-multipage.multipage__initialized {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .multipage_sections {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .submit-button {
    background-color: var(--vert-btob);
  }

  .submit-button:hover, .submit-button:focus {
    background-color: #004b59d9;
  }

  .demo-row {
    flex-wrap: wrap;
  }

  .max-w {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .max-w.img-et-form.box5050 {
    flex-direction: column;
  }

  .max-w.pleinelargeur {
    padding-left: 0;
    padding-right: 0;
  }

  .max-w._50-50 {
    padding-bottom: 16px;
  }

  .max-w.hero {
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-20 {
    flex-direction: column;
  }

  .header {
    height: auto;
    position: fixed;
  }

  .div-block-22 {
    flex-flow: column;
  }

  .encart-gris {
    padding-left: 20px;
    padding-right: 20px;
  }

  .etoile {
    max-width: 100%;
  }

  .div-block-24 {
    flex-direction: column;
  }

  .max-w-3points {
    padding: 40px 15px;
  }

  .encart-3point {
    padding: 40px 20px 20px;
  }

  .encart-3point.last {
    padding-left: 20px;
    padding-right: 20px;
  }

  .titre-encart-3ponts {
    font-size: 25px;
    line-height: 33.25px;
  }

  .text-encart-3-point {
    font-size: 16px;
    line-height: 24px;
  }

  .mega-titre-3points {
    padding-bottom: 40px;
    font-size: 30px;
    line-height: 48px;
  }

  .form-container {
    background-image: linear-gradient(#0000, #0000);
    flex-direction: column-reverse;
    padding-bottom: 0;
  }

  .heading {
    text-align: center;
    width: 100%;
    max-width: none;
    font-size: 25px;
    line-height: 30px;
  }

  .heading-2 {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 0;
    line-height: 27.6px;
  }

  .heading-2.argumenttitle1 {
    max-width: 196px;
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 27.6px;
  }

  .text-block-8 {
    text-align: center;
    max-width: 500px;
    padding-bottom: 20px;
  }

  .form-wrapper {
    max-width: 100%;
  }

  .text-block-9 {
    font-size: 18px;
  }

  .rea-form {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image {
    margin-bottom: 5px;
  }

  .rea-footer-item {
    flex-direction: column;
  }

  .container-form-inner {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .titre-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    padding-right: 0;
    display: flex;
  }

  .div-block-28 {
    bottom: -3%;
  }

  .link-3 {
    color: #000;
  }

  .blocgauche {
    width: 160px;
  }

  .flechegauche {
    text-align: center;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 160px;
    margin-right: 22px;
    display: flex;
  }

  .radio {
    text-align: left;
  }

  .flechedroite {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 160px;
    display: flex;
  }

  .radio-button-2.maison {
    margin-right: 24px;
  }

  .text-block-34 {
    padding-bottom: 20px;
    font-size: 22px;
    line-height: 26.4px;
  }

  .form-item-2.form-item-radio {
    justify-content: center;
  }

  .multipage_section-2 {
    padding-bottom: 0;
  }

  .flechesvertesinner {
    text-align: left;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding-bottom: 15px;
    display: flex;
  }

  .div-block-29 {
    flex-direction: column;
    padding-bottom: 25px;
  }

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

  .image-3 {
    text-align: center;
    width: 100px;
    padding-bottom: 0;
  }

  .arguments {
    width: auto;
  }

  .div-block-32 {
    flex-flow: column;
  }

  .text-block-35 {
    padding-bottom: 10px;
  }

  .beforeafter.twentytwenty.twentytwenty-container {
    height: auto;
    margin-bottom: 20px;
    padding-bottom: 0;
    display: block;
    overflow: hidden;
  }

  .image-6 {
    object-fit: fill;
    height: auto;
  }

  .image-7 {
    object-fit: fill;
    width: 100%;
    height: auto;
  }

  .section-white {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .heading-4 {
    text-align: center;
    font-size: 25px;
    line-height: 30px;
  }

  .div-block-41.container {
    flex-direction: column;
    display: flex;
  }

  .image-9 {
    padding-bottom: 15px;
  }

  .image-10 {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .max-w-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-85 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-block-45 {
    line-height: 21.6px;
  }

  .btn {
    border-radius: 3px;
  }

  .bold-text-8, .bold-text-9 {
    line-height: 21.6px;
  }

  .heading-5 {
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 8px;
    font-size: 18px;
    line-height: 18px;
  }

  .bold-text-13 {
    line-height: 21.6px;
  }

  .slider_3cols.js-slider_3cols.swiper-container {
    display: block;
  }

  .heading-6 {
    font-size: 24px;
    line-height: 28.8px;
  }

  .div-block-88 {
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    grid-auto-flow: row dense;
    justify-content: flex-start;
    place-items: stretch stretch;
    display: flex;
  }

  .image-12 {
    height: auto;
  }

  .heading-7 {
    line-height: 25px;
  }

  .text-block-47 {
    padding-bottom: 10px;
    font-size: 16px;
  }

  .div-block-89 {
    width: 150px;
    height: 150px;
  }

  .div-block-75 {
    padding: 30px;
  }

  .text-block-43 {
    font-size: 16px;
  }

  .heading-8 {
    font-size: 22px;
    line-height: 26.4px;
  }

  .div-block-91 {
    max-width: 100%;
  }

  .heading-10 {
    font-size: 24px;
    line-height: 28.8px;
  }

  .bold-text-14 {
    font-size: 26px;
    line-height: 31.2px;
  }

  .div-block-94 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .heading-11 {
    font-size: 24px;
    line-height: 28.8px;
  }

  .div-block-95 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .video.video__small.js-modal_video_open, .video.video__small.js-modal_video_open.videoroger {
    height: 270px;
  }

  .div-block-96 {
    flex-flow: row;
  }

  .text-block-55, .div-block-97 {
    text-align: center;
  }

  .div-block-98 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: auto;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .text-block-56 {
    display: none;
  }

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

  .div-block-100 {
    flex-direction: column;
  }

  .div-block-101 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .text-block-59 {
    font-size: 20px;
    line-height: 24px;
  }

  .div-block-103 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-block-60 {
    font-size: 25px;
    line-height: 30px;
  }

  .image-34 {
    width: 100%;
  }

  .div-block-105 {
    align-items: center;
    display: flex;
  }

  .paragraph {
    text-align: center;
    font-size: 22px;
  }

  .heading-12 {
    font-size: 32px;
    line-height: 110%;
  }

  .image-38 {
    max-width: 460px;
  }

  .bold-text-17, .bold-text-18 {
    line-height: 21.6px;
  }

  .section-17 {
    padding: 20px 30px;
  }

  .slider_4cols.js-slider_4cols.swiper-container {
    display: block;
  }

  .heading-16 {
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 8px;
    font-size: 18px;
    line-height: 18px;
  }

  .bold-text-19, .bold-text-12 {
    line-height: 21.6px;
  }

  .heading-17 {
    line-height: 25px;
  }

  .heading-17.heading2small {
    font-size: 22px;
  }

  .text-block-67 {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
  }

  .div-block-112.container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .div-block-113 {
    width: 100%;
    display: flex;
  }

  .image-46 {
    padding-bottom: 15px;
  }

  .text-block-68 {
    padding-top: 0;
    padding-bottom: 5px;
  }

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

  .text-block-77 {
    font-size: 40px;
    line-height: 110%;
  }

  .text-block-77.encart {
    margin-bottom: 8px;
    line-height: 44px;
  }

  .text-block-78 {
    font-size: 18px;
    line-height: 23.4px;
  }

  .image-53 {
    width: 100%;
  }

  .div-block-119 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .text-span-13 {
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .text-block-79 {
    text-align: center;
  }

  .div-block-120 {
    flex-flow: column-reverse;
  }

  .image-54 {
    min-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .text-block-81 {
    box-sizing: border-box;
    clear: none;
    aspect-ratio: auto;
    white-space: normal;
    overflow-wrap: normal;
    object-fit: contain;
    flex-flow: column wrap;
    flex: 0 auto;
    width: auto;
    max-width: 250px;
    font-size: 18px;
    display: block;
    position: static;
    overflow: visible;
  }

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

  .flex-block-8 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
  }

  .text-block-85 {
    text-align: center;
  }

  .heading-20 {
    font-size: 34px;
  }

  .text-block-86 {
    font-size: 22px;
  }

  .image-58 {
    margin-right: -50px;
  }

  .heading-26 {
    text-align: left;
  }

  .text-span-14 {
    background-size: 200px;
    padding-bottom: 12px;
  }

  .grid-2, .grid-2.trois {
    grid-template-columns: minmax(200px, 1fr);
  }

  .div-block-125.bloc-produit.cinq, .div-block-125.bloc-produit.six {
    width: 100%;
  }

  .div-block-130 {
    background-position: 50%;
  }

  .div-block-130.produit-image {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    background-position: 50%;
    height: 470px;
    display: none;
  }

  .div-block-130.produit-image.solo {
    background-image: url('../images/IMAGE-EXPORT-mob.png');
    background-position: 50%;
    justify-content: flex-start;
    align-items: center;
    height: 435px;
    padding-top: 30px;
  }

  .paragraph-5 {
    font-size: 14px;
  }

  .image-60 {
    width: auto;
    max-width: 100%;
  }

  .text-block-102 {
    font-size: 16px;
  }

  .image-64 {
    width: 100%;
    display: none;
  }

  .image-65 {
    width: 100%;
    margin-top: 70px;
    display: block;
  }

  .text-block-104 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-menu-2 {
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-170 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-39 {
    padding-right: 0;
  }

  .div-block-131 {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .link-9 {
    padding-right: 0;
  }

  .div-block-132 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 479px) {
  .text-field.big {
    height: 74px;
  }

  .form-item.radio-spe {
    flex-direction: column;
  }

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

  .multipage_sections {
    width: 100%;
    max-width: 100%;
  }

  .submit-button {
    background-color: var(--vert-btob);
    white-space: pre-wrap;
    width: 100%;
  }

  .submit-button:hover {
    background-color: #004b59d9;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .demo-col {
    margin-bottom: 0;
  }

  .max-w {
    padding-left: 15px;
    padding-right: 15px;
  }

  .max-w.hero {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-20 {
    flex-direction: column;
    margin: 0;
  }

  .header {
    position: static;
  }

  .div-block-22, .div-block-23 {
    flex-direction: column;
  }

  .image-footer {
    margin-bottom: 20px;
  }

  .reassu-texte-footer {
    text-align: center;
    font-size: 11px;
    line-height: 13.2px;
  }

  .encart-gris {
    flex-direction: column;
  }

  .comm {
    padding-bottom: 15px;
    font-family: Proxima nova, sans-serif;
  }

  .nom {
    font-family: Proxima nova, sans-serif;
    font-weight: 700;
  }

  .date {
    font-family: Proxima nova, sans-serif;
  }

  .encart-comm {
    border-bottom: 1px solid #ccc;
    border-right-width: 0;
    margin-bottom: 20px;
  }

  .encart-comm.last {
    border-bottom-width: 0;
    margin-bottom: 0;
  }

  .encart-3point {
    padding-left: 15px;
    padding-right: 15px;
  }

  .encart-3point.last {
    margin-bottom: 30px;
  }

  .titre-encart-3ponts {
    font-size: 20px;
    line-height: 24px;
  }

  .btn-3points {
    width: auto;
  }

  .heading {
    max-width: 100%;
    font-size: 19px;
    line-height: 22.8px;
  }

  .heading-2 {
    font-size: 20px;
    line-height: 24px;
  }

  .heading-2.argumenttitle1 {
    max-width: none;
    font-size: 20px;
  }

  .form-wrapper {
    width: 100%;
  }

  .text-block-9 {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .rea-form {
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .image {
    flex: 0 auto;
    margin-bottom: 5px;
    margin-right: 0;
  }

  .rea-footer-item {
    justify-content: flex-start;
    align-items: center;
    max-width: 250px;
    margin-bottom: 15px;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .rea-footer-item.last {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .container-form-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .titre-container {
    padding-right: 0;
  }

  .blocgauche, .flechegauche, .radio, .flechedroite {
    width: 100%;
  }

  .radio-button-2.appartement {
    width: 48%;
  }

  .radio-button-2.maison {
    width: 48%;
    margin-right: 10px;
  }

  .text-block-34 {
    padding-bottom: 15px;
    font-size: 20px;
    line-height: 24px;
  }

  .form-item-2 {
    flex-direction: column;
  }

  .form-item-2.form-item-radio {
    flex-direction: row;
    padding-left: 15px;
    padding-right: 15px;
  }

  .multipage_section-2, .multipage_section-2.active {
    padding-left: 0;
    padding-right: 0;
  }

  .radio-button-field {
    margin-bottom: 10px;
    padding-bottom: 0;
  }

  .div-block-30.max-w {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .arguments {
    width: 100%;
  }

  .div-block-32 {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .text-block-36 {
    font-size: 16px;
    line-height: 20.8px;
  }

  .container.flex {
    text-align: center;
    display: block;
  }

  .section-white {
    padding-left: 15px;
    padding-right: 15px;
  }

  .confirmation-title {
    margin-top: 0;
  }

  .bold-text-copy {
    font-size: 50px;
    line-height: 22px;
  }

  .text-block-25 {
    margin-bottom: 20px;
  }

  .bold-text-7 {
    font-size: 18px;
    line-height: 22px;
  }

  .div-block-34 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-41.container {
    padding-top: 30px;
  }

  .image-9 {
    margin-top: -3px;
    padding-top: 0;
  }

  .div-block-85 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-6 {
    font-size: 22px;
    line-height: 27.6px;
  }

  .div-block-88 {
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    align-items: stretch;
    display: flex;
  }

  .heading-7 {
    font-size: 20px;
    line-height: 22px;
  }

  .div-block-89 {
    width: 120px;
    height: 120px;
  }

  .div-block-75 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-8 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-93 {
    padding: 30px 20px;
  }

  .heading-10, .bold-text-14 {
    font-size: 24px;
    line-height: 28.8px;
  }

  .image-13 {
    margin-top: 0;
  }

  .video.video__small.js-modal_video_open, .video.video__small.js-modal_video_open.videoroger {
    height: 135px;
  }

  .div-block-96 {
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .text-block-55 {
    text-align: center;
  }

  .text-block-58 {
    text-align: center;
    font-size: 25px;
    line-height: 30px;
  }

  .image-33 {
    width: 100%;
    max-width: 129px;
  }

  .image-32 {
    width: 100%;
    max-width: 110px;
  }

  .div-block-103 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-60 {
    font-size: 20px;
    line-height: 24px;
  }

  .div-block-105 {
    flex-direction: column;
  }

  .image-36 {
    max-width: 86px;
  }

  .checkbox-label-2, .bold-text-16 {
    font-size: 16px;
  }

  .paragraph {
    text-align: center;
    font-size: 20px;
  }

  .image-37 {
    width: 64px;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .heading-12 {
    font-size: 32px;
  }

  .image-39 {
    top: 0;
  }

  .image-42 {
    max-width: 100px;
  }

  .div-block-107 {
    flex-flow: column;
  }

  .section-17 {
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .bold-text-20 {
    font-size: 35px;
    line-height: 29.26px;
  }

  .heading-17 {
    font-size: 20px;
    line-height: 22px;
  }

  .heading-17.heading2small {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-67 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-111, .div-block-111.menu {
    display: flex;
  }

  .section-8 {
    padding-top: 20px;
  }

  .div-block-112.container {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .text-block-68 {
    padding-top: 0;
  }

  .image-47 {
    margin-left: auto;
    margin-right: auto;
  }

  .image-48 {
    margin-left: 0;
    margin-right: 0;
  }

  .image-49, .image-50 {
    margin-left: auto;
    margin-right: auto;
  }

  .image-52 {
    bottom: 0;
    left: 0;
  }

  .text-block-77 {
    font-size: 32px;
  }

  .text-block-77.encart {
    font-size: 32px;
    line-height: 36px;
  }

  .image-53 {
    width: 100%;
  }

  .dropdown-toggle {
    padding-left: 0;
  }

  .text-block-81 {
    clear: none;
    overflow-wrap: normal;
    flex-flow: row;
    width: 180px;
    line-height: 24px;
    display: block;
    position: static;
  }

  .image-55, .image-56 {
    right: 0;
  }

  .button-3.confirmation {
    width: auto;
    font-size: 16px;
  }

  .heading-20 {
    font-size: 26px;
    line-height: 32px;
  }

  .text-block-86 {
    font-size: 18px;
  }

  .heading-26 {
    font-size: 25px;
    line-height: 32.5px;
  }

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

  .flex-block-10 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-125.bloc-produit {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-block-96 {
    text-align: left;
  }

  .button-4.full.img {
    font-size: 15px;
  }

  .div-block-130.produit-image {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-position: 50%;
    height: 500px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-130.produit-image.solo {
    background-position: 30%;
    padding-left: 10px;
  }

  .text-block-101 {
    font-size: 32px;
  }

  .image-65 {
    margin-top: 80px;
  }

  .text-block-104 {
    width: 100%;
    font-size: 16px;
  }

  .div-block-131 {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .image-66 {
    width: auto;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
  }

  .navbar-2 {
    display: flex;
  }

  .header-3.container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .flex-block-23 {
    display: none;
  }

  .superscript {
    font-size: 20px;
  }
}

#w-node-b9dd4e4b-d924-5874-70cb-cd040fd490f3-df26237b {
  order: 0;
  place-self: auto;
}

#w-node-b9dd4e4b-d924-5874-70cb-cd040fd490fb-df26237b, #w-node-b9dd4e4b-d924-5874-70cb-cd040fd49103-df26237b, #w-node-b9dd4e4b-d924-5874-70cb-cd040fd49109-df26237b {
  order: 0;
}


@font-face {
  font-family: 'Icomoon';
  src: url('../fonts/icomoon.eot') format('embedded-opentype'), url('../fonts/icomoon.woff') format('woff'), url('../fonts/icomoon.ttf') format('truetype'), url('../fonts/icomoon.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'amsi';
  src: url('../fonts/183dc8ce4b9423cabfd7b3a56b7c37ab.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima nova';
  src: url('../fonts/FontsFree-Net-proxima_nova_reg-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima nova';
  src: url('../fonts/FONTSFREE-NET-PROXIMA-NOVA-BOLD.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima nova';
  src: url('../fonts/FontsFree-Net-Proxima-Nova-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}