:root {
  --blue: #293b5f;
  --border-input: #999;
  --border-input-focus: #1d1d1b;
  --color-valid: #32ac97;
  --color-bg-input: whitesmoke;
  --color-error: #b00020;
  --red-granny: #ed6c76;
  --white: white;
  --bg-dark: #f4ecdd;
  --gray: #333;
  --rouge: #ed6c76;
  --noir: #1d1d1b;
  --blue-hover: #174b6e;
}

h1 {
  color: var(--blue);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 44px;
  font-weight: 600;
  line-height: 44px;
}

h2 {
  color: var(--blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

a {
  color: var(--blue);
  text-decoration: underline;
}

.body {
  color: #333;
  background-color: #f9f3e9;
  padding-top: 0;
  font-family: Poppins, 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 {
  border: 1px solid var(--border-input);
  color: #444;
  background-color: #f7f7f7;
  border-radius: 4px;
  height: 56px;
  margin-bottom: 0;
  padding-top: 14px;
  padding-bottom: 14px;
  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;
  font-weight: 400;
  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;
}

.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: 12px;
  display: block;
  position: relative;
}

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

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

.multipage_progress_bar {
  background-color: #ebebeb;
  height: 8px;
  position: relative;
}

.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: #b00020;
  padding: 0;
  font-size: 16px;
}

.icon-input.icon-checkmark {
  color: #32ac97;
}

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

.field-label-text {
  transform-origin: 0 0;
  color: #777;
  cursor: pointer;
  background-color: #0000;
  border: 0 solid #ddd;
  border-radius: 5px;
  padding-left: 0;
  padding-right: 0;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  transition: transform .15s;
  position: absolute;
  inset: 18px auto auto 17px;
}

.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: 20px;
  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 {
  flex-direction: column;
  margin-bottom: 0;
  display: block;
}

.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;
  justify-content: flex-start;
  align-self: center;
  width: auto;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0 20px 0 0;
  display: flex;
}

.btn-prev.js-multipage_prev:hover {
  color: #444;
  text-align: left;
  text-transform: none;
  background-color: #0000;
  margin-right: 0;
  padding: 0 20px 0 0;
  font-weight: 400;
  text-decoration: underline;
}

.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;
}

.multipage_progress {
  margin-top: -5px;
  display: block;
  overflow: visible;
}

.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:hover, .btn-next.js-multipage_next:active, .btn-next.js-multipage_next:focus {
  background-color: #e30613cc;
}

.btn-next.js-multipage_next:active, .btn-next.js-multipage_next:focus {
  background-color: #01685e;
}

.btn-next.js-multipage_next {
  background-color: #114591;
  border-radius: 5px;
  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 {
  background-color: #10284b;
}

.btn-next.js-multipage_next:active, .btn-next.js-multipage_next:focus {
  background-color: #01685e;
}

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

.checkbox {
  color: #32ac97;
  cursor: pointer;
  background-color: #f7f7f7;
  border-width: 1px;
  border-color: #d1d5db;
  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-style: none;
  border-color: var(--red-granny);
  background-color: var(--red-granny);
  color: var(--red-granny);
  -webkit-text-stroke-color: var(--red-granny);
  background-size: contain;
  border-radius: 4px;
  position: relative;
}

.checkbox.w--redirected-focus {
  border-style: solid;
  border-color: var(--red-granny);
  box-shadow: none;
  color: #e21c70;
}

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

.multipage_section.inactive {
  display: none;
}

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

.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: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.div-block-20 {
  justify-content: space-between;
  align-items: center;
  display: block;
}

.header {
  z-index: 50;
  background-color: #fff;
  border-bottom: 1px solid #eceae7;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  inset: 0% 0% auto;
}

.reasssurance-footer {
  background-color: #fff;
}

.form-container {
  background-color: #f3f3f3;
  justify-content: space-between;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section {
  background-color: var(--white);
  color: var(--white);
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
}

.section.padding-top {
  background-color: var(--bg-dark);
  padding-top: 40px;
}

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

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

.bold-text-copy {
  color: var(--blue);
  font-size: 60px;
}

.text-block-25 {
  color: var(--blue);
  text-align: center;
  margin-bottom: 30px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  line-height: 150%;
}

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

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

.section-3.top-section {
  background-color: #f9f3e9;
  padding-top: 0;
}

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

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

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

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

.image-15 {
  width: auto;
  height: auto;
  margin-right: 0;
  padding-right: 0;
}

.paragraph-3 {
  color: #555;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.div-block-108 {
  text-align: center;
  width: 50%;
}

.div-block-112 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-around;
  width: 50%;
  display: flex;
}

.div-block-114 {
  text-align: center;
  width: 50%;
}

.div-block-111 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-around;
  width: 50%;
  display: flex;
}

.div-block-115, .div-block-116 {
  text-align: center;
  width: 50%;
}

.bold-text-20 {
  color: var(--gray);
  font-weight: 700;
}

.bold-text-21, .bold-text-22 {
  color: var(--gray);
  font-weight: 700;
  line-height: 19px;
}

.bold-text-23 {
  color: var(--gray);
  font-weight: 700;
}

.image-40 {
  max-width: 65px;
  padding-bottom: 16px;
}

.image-41, .image-42, .image-43 {
  padding-bottom: 16px;
}

.max-w-3 {
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.max-w-3.flex {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-between;
  display: flex;
}

.text-block-40 {
  color: var(--blue);
  text-align: center;
  padding-bottom: 32px;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
}

.text-block-40.margin-bottom {
  margin-bottom: 8px;
}

.image-44 {
  width: auto;
  max-width: none;
  height: 88px;
}

.div-block-119 {
  background-color: var(--red-granny);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.div-block-119:hover {
  background-color: var(--rouge);
}

.text-block-68 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.div-block-121 {
  flex-flow: column;
  margin-top: 40px;
  display: block;
}

.text-block-100 {
  color: var(--red-granny);
  text-transform: none;
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}

.titre-container-2 {
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 20px;
}

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

.heading-18 {
  color: #004655;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
  position: static;
}

.div-block-123 {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  border-top: 1px #d1d5db;
  flex-flow: column;
  margin-top: 0;
  padding-top: 0;
  display: flex;
}

.illus-2 {
  z-index: 2;
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: cover;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 608px;
  height: 534px;
  padding-top: 0;
  padding-left: 0;
  display: flex;
  position: static;
  top: 0;
  left: auto;
  right: 0;
  overflow: visible;
}

.text-span-17 {
  color: #293b5f;
  font-family: Poppins, sans-serif;
  text-decoration: none;
}

.section-container {
  margin-top: -80px;
  padding-top: 0;
  display: block;
}

.section-container.bg-image {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  background-color: #0000;
  justify-content: space-between;
  max-width: 1310px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.section-container.form-container {
  background-color: #0000;
  margin-top: -18px;
}

.text-block-102 {
  color: var(--blue);
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.image-64 {
  object-fit: contain;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
  display: block;
}

.div-block-141 {
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.text-block-69 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.text-block-69.list-title {
  color: var(--noir);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.text-span-18, .text-span-19 {
  color: var(--red-granny);
}

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

.form-item-4.js-checkbox {
  margin-bottom: 10px;
}

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

.max-w-5 {
  background-color: #0000;
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  overflow: visible;
}

.max-w-5.blue {
  background-color: #effafa;
}

.max-w-5.blue.form {
  background-color: #0000;
  max-width: 786px;
  padding-left: 0;
  padding-right: 0;
}

.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 {
  background-color: var(--blue);
  text-transform: capitalize;
  background-image: url('../images/arrow.svg');
  background-position: 56%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: 8px;
  margin-bottom: 0;
  padding-right: 25px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
}

.text-block-72.btn-next.js-multipage_next:hover, .text-block-72.btn-next.js-multipage_next:focus {
  background-color: var(--blue-hover);
}

.text-block-72.btn-next.js-multipage_next.last {
  background-color: var(--blue);
  background-image: url('../images/arrow.svg');
  background-position: 56%;
  background-repeat: no-repeat;
  background-size: auto;
}

.text-block-72.btn-next.js-multipage_next.last:hover, .text-block-72.btn-next.js-multipage_next.last:focus {
  background-color: var(--blue-hover);
}

.text-block-103 {
  color: #666;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 8px;
  font-size: 11px;
  line-height: 13.2px;
}

.text-field-3 {
  border: 1px solid var(--border-input);
  background-color: var(--white);
  color: #444;
  border-radius: 4px;
  height: 56px;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 7px;
  padding-left: 16px;
  font-size: 16px;
  line-height: 20px;
  display: block;
}

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

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

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

.form-wrapper-2 {
  float: none;
  clear: none;
  z-index: 20;
  background-color: #fff;
  border-radius: 8px;
  max-width: 988px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  position: relative;
  box-shadow: 0 11px 40px #63524c1f;
}

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

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

.field-label-text-3 {
  transform-origin: 0 0;
  color: #555;
  cursor: pointer;
  background-color: #0000;
  border: 0 solid #ddd;
  border-radius: 5px;
  padding-left: 0;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  transition: transform .15s;
  position: absolute;
  inset: 18px auto auto 17px;
}

.text-block-104 {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid #d1d5db;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  position: relative;
}

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

.submit-button-2 {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  text-transform: none;
  background-image: url('../images/arrow.svg');
  background-position: 68%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 4px;
  width: 100%;
  margin: 20px auto 10px;
  padding: 15px 20px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: block;
}

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

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

.form-3 {
  flex-direction: column;
  margin-bottom: 0;
  display: block;
}

.text-span-20 {
  text-transform: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

.question {
  color: var(--blue);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.radio-button-6 {
  display: none;
  overflow: visible;
}

.radio-button-label-10 {
  color: var(--blue);
  text-align: center;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  position: absolute;
  inset: auto 0% 0%;
}

.radio-button-field-2 {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  width: 100%;
  height: 140px;
  position: relative;
}

.radio-button-field-2:hover {
  box-shadow: 0 2px 5px #0003;
}

.radio-button-field-2.radio-icon {
  border-color: var(--border-input);
  cursor: pointer;
  background-image: url('../images/User_1User.png');
  background-position: 0 0;
  background-size: auto;
}

.radio-button-field-2.radio-icon:hover {
  border-color: var(--border-input-focus);
  pointer-events: auto;
  display: block;
}

.radio-button-field-2.radio-icon:focus {
  border-color: var(--border-input-focus);
}

.radio-button-field-2.radio-icon.maison {
  background-image: url('../images/maison.svg');
}

.radio-button-field-2.radio-icon.immediat {
  background-image: url('../images/icone-immediatement.svg');
}

.radio-button-field-2.radio-icon.user {
  border-color: var(--blue);
  background-image: url('../images/User_1User.png');
  height: 110px;
  padding: 20px;
}

.radio-button-field-2.radio-icon {
  border-color: var(--border-input);
  cursor: pointer;
  background-image: url('../images/appartement.svg');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: auto;
}

.radio-button-field-2.radio-icon:hover, .radio-button-field-2.radio-icon:focus {
  border-color: var(--border-input-focus);
}

.radio-button-field-2.radio-icon.moins3mois {
  background-image: url('../images/Frame-725.svg');
}

.radio-button-field-2.radio-icon.plus3mois {
  background-image: url('../images/Frame-724.svg');
}

.radio-button-field-2.radio-icon.users {
  border-color: var(--blue);
  background-image: url('../images/Users_1Users.png');
  height: 110px;
  padding: 20px;
}

.form-item-5 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 0 solid #000;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
  margin-left: 0;
  display: flex;
  position: relative;
}

.image-65 {
  margin-top: 40px;
}

.link-block-3 {
  text-decoration: none;
}

.titre-section {
  color: var(--blue);
  text-align: center;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
}

.list-icone {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.text-block-105 {
  font-weight: 500;
  text-decoration: none;
}

.button-3 {
  background-color: var(--red-granny);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 100px;
  flex: 0 auto;
  align-self: center;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.button-3:hover {
  background-color: var(--rouge);
}

.button-3.blue {
  background-color: var(--blue);
  font-weight: 500;
}

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

.button-3.arrow {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-3.arrow.full {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-span-21 {
  color: var(--red-granny);
}

.text-block-106 {
  color: #444;
  margin-top: 8px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
}

.text-span-22 {
  color: var(--red-granny);
}

.div-block-142 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

.div-block-143 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  width: 50%;
  padding-right: 60px;
  display: flex;
}

.image-66 {
  object-fit: cover;
  border-radius: 20px;
  width: 50%;
  height: 535px;
}

.div-block-144 {
  font-family: Roboto, sans-serif;
}

.text-block-107 {
  font-size: 18px;
  line-height: 27px;
}

.div-block-145 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 0;
  margin-bottom: 40px;
  display: flex;
}

.avis {
  background-color: var(--bg-dark);
  border: 1px solid #ddd6ca;
  border-radius: 8px;
  width: 33%;
  padding: 32px;
}

.text-block-108 {
  margin-top: 8px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 24px;
}

.text-block-110 {
  line-height: 24px;
}

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

.text-block-111 {
  margin-left: 6px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.link-12 {
  color: var(--noir);
  font-size: 18px;
  line-height: 23.4px;
  text-decoration: underline;
}

.div-block-148 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  align-items: center;
  display: flex;
}

.div-block-149 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #c4d9e7;
  border-radius: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 40px 80px;
  display: flex;
}

.text-block-112 {
  color: var(--noir);
  margin-bottom: 16px;
  font-size: 35px;
  font-weight: 600;
  line-height: 44px;
}

.text-block-113 {
  color: var(--gray);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.div-block-150 {
  width: 100%;
  margin-left: 60px;
}

.heading-19 {
  font-weight: 600;
  display: none;
}

.image-67, .image-68 {
  display: none;
}

.body-2 {
  background-color: #fbf5f0;
  flex-flow: column;
  justify-content: space-between;
  font-family: Poppins, sans-serif;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.body-3 {
  background-color: #fbf5f0;
  font-family: Poppins, sans-serif;
}

.heading-20 {
  border-bottom: 2px solid var(--bg-dark);
  color: var(--noir);
  text-align: center;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5px;
}

.heading-20.top-h1 {
  margin-top: 20px;
}

.text-block-114 {
  font-size: 16px;
  line-height: 24px;
}

.link-14 {
  color: var(--gray);
}

.text-block-115 {
  font-weight: 500;
}

.div-block-151 {
  flex-flow: column;
  display: flex;
}

.text-block-116 {
  color: var(--blue);
  line-height: 24px;
}

.text-span-23 {
  text-transform: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.image-69 {
  position: absolute;
  inset: 0% auto auto 0%;
}

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

.div-block-152.second {
  align-items: center;
  margin-top: 0;
  margin-bottom: 40px;
}

.text-block-117 {
  color: var(--blue);
  text-align: center;
  max-width: 982px;
  margin: auto auto 40px;
}

.text-block-117.sec {
  margin-bottom: 24px;
  padding-top: 40px;
}

.div-block-153 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

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

.div-block-155 {
  background-color: #faefde;
  border-radius: 8px;
  flex-flow: column;
  align-items: flex-start;
  height: 100%;
  padding: 32px;
  display: flex;
}

.div-block-155.granny {
  background-color: #f3d3d5;
}

.image-70 {
  margin-bottom: 10px;
  display: block;
}

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

.text-block-118 {
  color: var(--blue);
  padding-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}

.div-block-157 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: flex-start;
  padding-bottom: 12px;
  display: flex;
}

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

.text-block-120 {
  color: var(--blue);
  text-align: center;
  margin: auto;
  padding-bottom: 40px;
}

.chffre {
  color: #ed6c76;
  font-size: 39px;
  font-weight: 600;
  line-height: 50px;
}

.image-71 {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-block-121 {
  color: #293b5f;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

.div-block-158 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  display: flex;
}

.div-block-159 {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  margin-bottom: 40px;
  display: flex;
}

.div-block-160 {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 40px;
}

.div-block-161 {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  text-align: center;
  flex-flow: wrap;
  place-content: flex-start center;
  align-items: center;
  display: flex;
}

.image-72 {
  width: 100%;
}

.text-block-123 {
  line-height: 22px;
}

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

.div-block-162 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  margin-top: 8px;
  display: flex;
}

.text-block-125 {
  color: var(--blue);
  font-weight: 600;
}

.heading-21, .link-15 {
  color: var(--blue);
}

.rich-text-block-2 {
  color: var(--blue);
  font-size: 18px;
  line-height: 150%;
}

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

@media screen and (min-width: 1280px) {
  .text-field {
    padding-right: 35px;
  }

  .multipage_progress_bar {
    background-color: #ebebeb;
  }

  .inner {
    background-color: #b6bbc5;
  }

  .btn-prev.js-multipage_prev {
    margin-bottom: 0;
  }

  .btn-prev.js-multipage_prev:hover {
    text-decoration: none;
  }

  .multipage_progress {
    display: block;
  }

  .multipage_nav {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .max-w {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .header {
    padding-top: 5px;
    padding-bottom: 5px;
  }

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

  .section.padding-top {
    background-color: var(--bg-dark);
  }

  .section-3.no-padding {
    background-color: #fff;
  }

  .text-block-40 {
    color: var(--blue);
    text-align: center;
    padding-bottom: 32px;
    font-family: Poppins, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
  }

  .image-44 {
    height: auto;
  }

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

  .titre-container-2 {
    padding-right: 60px;
  }

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

  .illus-2 {
    height: auto;
    top: 0;
    left: auto;
    right: -100px;
  }

  .text-span-17 {
    font-size: 40px;
    line-height: 44px;
  }

  .section-container.form-container {
    margin-top: -40px;
  }

  .radio-button-field-2.radio-icon {
    background-image: url('../images/User_1User.png');
  }

  .radio-button-field-2.radio-icon.users {
    background-image: url('../images/Users_1Users.png');
  }

  .titre-section {
    color: var(--blue);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 32px;
  }

  .button-3 {
    border-radius: 4px;
  }

  .button-3.arrow {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

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

  .button-3.arrow.full {
    justify-content: center;
    width: 100%;
  }

  .div-block-145 {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .avis {
    background-color: var(--bg-dark);
    border: 1px solid #ddd6ca;
  }

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

  .text-block-110 {
    color: var(--blue);
    font-family: Poppins, sans-serif;
  }

  .div-block-148 {
    font-size: 16px;
  }

  .div-block-152 {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    display: flex;
  }

  .div-block-152.second {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .text-block-117 {
    color: var(--blue);
    text-align: center;
    max-width: 982px;
    margin: auto auto 40px;
  }

  .text-block-117.sec {
    margin-bottom: 24px;
    padding-top: 40px;
    font-size: 20px;
    line-height: 29px;
  }

  .div-block-153 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    display: flex;
  }

  .div-block-154 {
    width: 100%;
    height: auto;
  }

  .div-block-155 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: #faefde;
    border-radius: 8px;
    flex-flow: column;
    align-items: flex-start;
    height: 100%;
    padding: 32px;
    display: flex;
  }

  .div-block-155.granny {
    background-color: #f3d3d5;
  }

  .image-70 {
    flex: 0 auto;
    width: auto;
    display: block;
  }

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

  .text-block-118 {
    color: var(--blue);
    padding-bottom: 12px;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
  }

  .div-block-157 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    align-items: flex-start;
    padding-bottom: 12px;
    display: flex;
  }

  .div-block-157.last {
    padding-bottom: 0;
  }

  .text-block-119 {
    color: var(--blue);
    line-height: 23px;
  }

  .text-block-120 {
    color: var(--blue);
    text-align: center;
    max-width: 982px;
    margin: auto;
    padding-bottom: 40px;
  }

  .chffre {
    color: #ed6c76;
    font-size: 39px;
    font-weight: 600;
    line-height: 50px;
  }

  .image-71 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .text-block-121 {
    color: #293b5f;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
  }

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

  .text-block-122 {
    color: var(--blue);
    line-height: 24px;
  }

  .div-block-159 {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    margin-bottom: 40px;
    display: flex;
  }

  .div-block-160 {
    background-color: #fff;
    width: 100%;
    padding: 40px;
  }

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

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

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

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

  .text-field {
    border-radius: 4px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .text-field.error {
    border-radius: 4px;
  }

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

  .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: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
    padding-left: 32px;
    padding-right: 32px;
  }

  .div-block-20 {
    flex-direction: row;
    width: 100%;
    display: flex;
  }

  .header {
    position: static;
  }

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

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

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

  .paragraph-3 {
    color: #555;
    font-size: 18px;
  }

  .div-block-112, .div-block-111 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    width: 100%;
  }

  .bold-text-23 {
    font-size: 18px;
  }

  .max-w-3 {
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .image-44 {
    flex: 0 auto;
    align-self: center;
  }

  .div-block-121 {
    margin-top: 0;
  }

  .text-block-100 {
    margin-bottom: 0;
  }

  .titre-container-2 {
    width: 100%;
    margin-top: 40px;
    padding-top: 0;
    padding-right: 0;
  }

  .heading-18 {
    font-size: 31px;
    line-height: 47px;
    display: none;
  }

  .div-block-123 {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    background-image: none;
  }

  .illus-2 {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding-top: 0;
    position: static;
    top: 0;
  }

  .section-container {
    padding-top: 0;
  }

  .section-container.bg-image {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column-reverse;
    display: flex;
  }

  .section-container.form-container {
    margin-top: 0;
  }

  .text-block-102 {
    font-size: 22px;
    line-height: 24px;
  }

  .image-64 {
    display: none;
  }

  .div-block-141 {
    align-items: flex-end;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .text-block-72.btn-next.js-multipage_next, .text-block-72.btn-next.js-multipage_next.last {
    background-position: 57%;
  }

  .form-wrapper-2 {
    margin-top: 0;
  }

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

  .submit-button-2 {
    white-space: normal;
    background-image: url('../images/arrow.svg');
    background-position: 69%;
    background-repeat: no-repeat;
    background-size: auto;
    font-size: 20px;
  }

  .image-65 {
    display: none;
  }

  .list-icone {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .div-block-142 {
    flex-flow: column-reverse;
  }

  .div-block-143 {
    width: 100%;
    padding-right: 0;
  }

  .image-66 {
    object-position: 50% 50%;
    width: 100%;
    height: 394px;
  }

  .div-block-145 {
    flex-flow: column;
    margin-top: 24px;
  }

  .avis {
    width: 100%;
  }

  .div-block-148 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    text-align: center;
    flex-flow: column;
  }

  .div-block-149 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    text-align: center;
    flex-flow: column;
    padding: 32px 64px;
  }

  .div-block-150 {
    margin: 0;
    padding-left: 32px;
    padding-right: 32px;
  }

  .heading-19 {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 35px;
    display: block;
  }

  .image-67 {
    width: auto;
    margin: auto;
    display: block;
  }

  .image-68 {
    display: none;
  }

  .div-block-152 {
    margin-top: 40px;
  }

  .div-block-152.second {
    margin-bottom: 0;
  }

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

  .div-block-159 {
    flex-flow: column;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .inner {
    background-color: #b6bbc5;
  }

  .form {
    text-align: left;
    width: auto;
  }

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

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

  .checkbox.w--redirected-checked {
    background-color: var(--red-granny);
    color: var(--red-granny);
    -webkit-text-stroke-color: var(--red-granny);
    border-style: none;
    border-color: #000;
  }

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

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

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

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

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

  .bold-text-copy {
    color: var(--blue);
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .bold-text-7 {
    color: var(--blue);
    font-family: Poppins, sans-serif;
    font-weight: 400;
  }

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

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

  .div-block-96 {
    flex-flow: row;
  }

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

  .image-15 {
    height: 60px;
  }

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

  .div-block-112 {
    flex-flow: column;
    display: flex;
  }

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

  .div-block-111 {
    flex-flow: column;
    display: flex;
  }

  .div-block-115, .div-block-116 {
    width: 100%;
  }

  .max-w-3 {
    padding-left: 24px;
    padding-right: 24px;
  }

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

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

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

  .heading-18 {
    text-align: left;
    width: auto;
    max-width: 500px;
    font-size: 45px;
    line-height: 45px;
  }

  .div-block-123 {
    background-position: 60% 100%;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .illus-2 {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: block;
    position: relative;
    top: auto;
    right: auto;
  }

  .section-container.form-container {
    width: 100%;
  }

  .text-block-102 {
    text-align: left;
    max-width: 500px;
    font-size: 16px;
    line-height: 150%;
  }

  .div-block-141 {
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
    padding-bottom: 25px;
  }

  .max-w-5 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .max-w-5.blue.form {
    width: 100%;
    max-width: 100%;
  }

  .text-block-72.btn-next.js-multipage_next, .text-block-72.btn-next.js-multipage_next.last {
    background-position: 60%;
  }

  .form-wrapper-2 {
    margin-top: 0;
    padding: 0;
  }

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

  .text-block-104 {
    border-bottom-width: 0;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .submit-button-2 {
    background-image: none;
  }

  .form-3 {
    text-align: left;
    width: auto;
  }

  .radio-button-label-10 {
    text-align: center;
  }

  .form-item-5 {
    flex-flow: column;
  }

  .titre-section {
    font-size: 32px;
    line-height: 38px;
  }

  .button-3 {
    font-weight: 500;
  }

  .text-span-21 {
    font-size: 32px;
    line-height: 38px;
  }

  .image-66 {
    object-position: 50% 50%;
    height: 239px;
  }

  .div-block-145 {
    margin-top: 20px;
  }

  .avis {
    padding: 20px;
  }

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

  .div-block-149 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .text-block-112 {
    margin-bottom: 8px;
    font-size: 30px;
    line-height: 33px;
  }

  .div-block-150 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .heading-19 {
    font-size: 32px;
    line-height: 35px;
  }

  .image-68, .image-69 {
    display: none;
  }

  .div-block-152 {
    align-items: center;
    margin-top: 20px;
  }

  .text-block-117 {
    margin-bottom: 20px;
  }

  .div-block-153 {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-flow: column;
  }

  .div-block-155 {
    padding: 20px;
  }

  .text-block-118 {
    font-size: 22px;
    line-height: 26px;
  }

  .div-block-158 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .div-block-160 {
    padding: 20px;
  }

  .image-73, .image-74 {
    flex: none;
  }

  .text-block-124 {
    background-color: var(--blue);
    color: #f0c1c5;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 20px;
    font-weight: 600;
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .multipage_sections {
    width: 100%;
    max-width: 100%;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .demo-col {
    margin-bottom: 0;
  }

  .max-w {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .confirmation-title {
    margin-top: 0;
  }

  .bold-text-copy {
    font-size: 50px;
    line-height: 22px;
  }

  .text-block-25 {
    margin-bottom: 20px;
    font-size: 18px;
  }

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

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

  .image-15 {
    height: 50px;
    margin-top: 0;
  }

  .paragraph-3 {
    color: #555;
    font-size: 18px;
  }

  .div-block-112, .div-block-111 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    width: auto;
    display: flex;
  }

  .max-w-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .max-w-3.flex {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .image-44 {
    width: auto;
    height: 88px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .div-block-121 {
    text-align: center;
    display: block;
  }

  .text-block-100 {
    text-align: left;
    font-size: 20px;
    line-height: 20px;
  }

  .titre-container-2 {
    margin-top: 16px;
    padding-right: 0;
  }

  .heading-18 {
    text-align: left;
    width: auto;
    max-width: 100%;
    font-size: 30px;
    line-height: 30px;
  }

  .div-block-123 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
  }

  .illus-2 {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .text-span-17 {
    text-align: left;
    font-size: 24px;
    line-height: 120%;
  }

  .text-block-102 {
    text-align: left;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 150%;
  }

  .text-block-69 {
    font-size: 16px;
    line-height: 24px;
  }

  .text-block-69.list-title {
    line-height: 26px;
  }

  .text-block-72.btn-next.js-multipage_next, .text-block-72.btn-next.js-multipage_next.last {
    background-position: 70%;
  }

  .form-wrapper-2 {
    margin-top: 0;
  }

  .container-form-inner-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-block-104 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    line-height: 21px;
  }

  .submit-button-2 {
    white-space: pre-wrap;
    width: 100%;
  }

  .text-span-20 {
    font-size: 16px;
    line-height: 19px;
  }

  .form-item-5 {
    flex-flow: column;
  }

  .titre-section {
    font-size: 28px;
    line-height: 33px;
  }

  .list-icone {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .text-block-105 {
    font-weight: 500;
  }

  .button-3.arrow.full.submit {
    white-space: normal;
  }

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

  .image-66 {
    height: 157px;
  }

  .text-block-110 {
    font-family: Poppins, sans-serif;
  }

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

  .div-block-149 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-block-112 {
    margin-bottom: 16px;
    font-size: 26px;
    line-height: 28px;
  }

  .div-block-150 {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-19 {
    text-align: left;
    font-size: 28px;
    line-height: 30px;
  }

  .image-67 {
    display: none;
  }

  .image-68 {
    width: 100%;
    display: block;
  }

  .text-block-114 {
    text-align: left;
  }

  .div-block-152 {
    flex-flow: column;
    margin-top: 20px;
  }

  .div-block-152.second {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .text-block-123 {
    text-align: center;
    padding-bottom: 24px;
  }
}


@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: '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;
}