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

.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 {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

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

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

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

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

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

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

.body {
  color: #333;
  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 {
  width: 20px;
  height: 20px;
  border-width: 2px;
  border-color: var(--border-input);
  color: #000;
  cursor: pointer;
  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 {
  min-height: 100px;
  border: 1px solid var(--border-input);
  background-color: var(--color-bg-input);
  color: #000;
  border-radius: 4px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-left: 16px;
  font-size: 16px;
}

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

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

.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 {
  height: 56px;
  border: 1px solid var(--border-input);
  color: #444;
  background-color: #f7f7f7;
  border-radius: 4px;
  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::-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}

.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 {
  height: 56px;
  border: 1px solid var(--border-input);
  background-color: var(--color-bg-input);
  color: #000;
  border-radius: 4px;
  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 {
  width: 100%;
  border: 0 solid #000;
  margin-bottom: 20px;
  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;
}

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

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

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

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

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

.icon-input.icon-cross {
  color: #b00020;
  padding: 0;
  font-size: 16px;
}

.inner {
  width: 30px;
  height: 100%;
  background-color: var(--red-everstyl);
  position: absolute;
  top: 0;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.field-label-text {
  transform-origin: 0 0;
  color: #777;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  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;
  top: 18px;
  bottom: auto;
  left: 17px;
  right: 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: 20px;
  left: 16px;
  transform: translate(0, -14px)scale(.75);
}

.field-label-text.error {
  transform-origin: 0 0;
  color: var(--color-error);
  background-color: rgba(0, 0, 0, 0);
  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;
  top: 20px;
  bottom: auto;
  left: 16px;
  right: auto;
  transform: translate(0, -14px)scale(.75);
}

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

.link {
  color: #32ac97;
}

.btn-prev {
  width: 27%;
  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;
  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: rgba(83, 7, 255, .86);
  border-radius: 4px;
}

.btn-prev.js-multipage_prev {
  width: 34%;
  color: #777;
  background-color: rgba(143, 143, 143, 0);
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  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;
}

.btn-prev.js-multipage_prev {
  width: auto;
  color: #777;
  background-color: rgba(143, 143, 143, 0);
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: center;
  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: rgba(0, 0, 0, 0);
  margin-right: 0;
  padding: 0 20px 0 0;
  font-weight: 400;
  text-decoration: underline;
}

.text-block-3 {
  margin-right: 0;
  font-size: 18px;
}

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

.btn-next {
  width: 70%;
  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;
  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 {
  width: 100%;
  height: 60px;
  background-color: var(--red-everstyl);
  border-radius: 5px;
  align-self: center;
  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: rgba(227, 6, 19, .8);
}

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

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

.btn-next.js-multipage_next {
  width: 100%;
  height: 60px;
  background-color: var(--red-everstyl);
  border-radius: 5px;
  align-self: center;
  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;
}

.btn-next.js-multipage_next.first {
  width: 100%;
  background-color: var(--red-everstyl);
  flex: 1;
  margin-bottom: 0;
  text-decoration: none;
}

.btn-next.js-multipage_next.first:hover, .btn-next.js-multipage_next.first:active, .btn-next.js-multipage_next.first:focus {
  background-color: rgba(227, 6, 19, .8);
}

.btn-next.js-multipage_next.first:focus-visible {
  background-color: rgba(227, 6, 19, .8);
}

.btn-next.js-multipage_next.first[data-wf-focus-visible], .btn-next.js-multipage_next.first:visited {
  background-color: rgba(227, 6, 19, .8);
}

.btn-next.js-multipage_next.red {
  background-color: var(--red-everstyl);
  text-decoration: none;
}

.btn-next.js-multipage_next.red:hover, .btn-next.js-multipage_next.red:active, .btn-next.js-multipage_next.red:focus {
  background-color: rgba(227, 6, 19, .8);
}

.btn-next.js-multipage_next {
  width: 100%;
  height: 60px;
  background-color: #114591;
  border-radius: 5px;
  align-self: center;
  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;
}

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

.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 {
  width: 30px;
  height: 30px;
  color: #32ac97;
  cursor: pointer;
  background-color: #f7f7f7;
  border-width: 1px;
  border-color: #d1d5db;
  border-radius: 4px;
  flex: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
  padding-right: 0;
}

.checkbox.w--redirected-checked {
  border-style: none;
  border-color: var(--red-everstyl);
  background-color: var(--red-everstyl);
  color: var(--red-everstyl);
  -webkit-text-stroke-color: var(--red-everstyl);
  background-size: contain;
  border-radius: 4px;
  position: relative;
}

.checkbox.w--redirected-focus {
  border-style: solid;
  border-color: var(--red-everstyl);
  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 {
  height: 0;
  opacity: 0;
  object-fit: fill;
  padding-top: 0;
  transition-duration: .25s;
  transition-timing-function: linear;
  display: block;
  top: auto;
  right: auto;
  overflow: hidden;
}

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

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

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

.submit-button {
  width: 100%;
  background-color: var(--red-everstyl);
  color: #fff;
  text-align: center;
  text-transform: none;
  border-radius: 4px;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.submit-button:hover {
  background-color: rgba(227, 6, 19, .8);
  border-radius: 4px;
}

.submit-button:focus {
  background-color: rgba(227, 6, 19, .8);
}

.demo-layout {
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 40px;
  display: flex;
}

.demo-50 {
  width: 40%;
  flex: 0 auto;
  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;
  align-content: stretch;
  justify-content: 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 {
  width: 100px;
  height: 100px;
  background-color: rgba(9, 106, 208, .2);
  border-radius: 3px;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, .08);
}

.color-block:hover {
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, .08);
}

.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 {
  width: 100%;
  opacity: 1;
  margin-top: 0;
}

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

.horizontal-line.light {
  color: #096ad0;
  background-color: rgba(41, 127, 202, .8);
  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 {
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

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

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

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

.header {
  border-bottom: 1px solid #eceae7;
  padding-top: 5px;
  padding-bottom: 5px;
}

.div-block-22 {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 15px;
  display: flex;
}

.link-2 {
  color: #333;
  margin-left: 10px;
  margin-right: 10px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.footer {
  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 {
  max-width: 574px;
  color: #000;
  text-align: right;
  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 {
  width: 100%;
  color: #000;
  border-right: 1px solid #ccc;
  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 rgba(0, 0, 0, .05);
}

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

.num {
  width: 60px;
  height: 60px;
  min-width: 0;
  color: var(--white);
  background-color: #18347a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 27px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: -30px;
  bottom: auto;
  left: 50%;
  right: auto;
  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 {
  width: 385px;
  background-color: var(--vert-ir);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  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 {
  min-height: 0;
  background-color: #f3f3f3;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.heading {
  max-width: 881px;
  color: #fff;
  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: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  font-family: Rajdhani;
  font-size: 24px;
  line-height: 28.8px;
}

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

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

.form-wrapper {
  width: auto;
  max-width: 382px;
  background-color: var(--white);
  border: 0 solid #ffcc7a;
  border-radius: 0 0 8px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.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 {
  width: auto;
  flex: 0 auto;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

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

.container-form-inner {
  border-bottom: 0 solid #d9d9d9;
  border-bottom-right-radius: 8px;
  padding: 16px 24px 30px;
}

.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;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.link-3 {
  color: #000;
}

.blocgauche {
  width: 160px;
  justify-content: center;
  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;
  width: 160px;
  height: 140px;
  border-radius: 0%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 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 {
  width: 160px;
  height: 140px;
  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;
  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 {
  width: 160px;
  height: 140px;
  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;
  margin-bottom: 0;
  display: flex;
  top: 0;
  left: 0;
}

.radio-button-2.maison {
  width: 160px;
  height: 140px;
  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;
  margin-bottom: 0;
  display: flex;
  top: 0;
  left: 0;
}

.text-block-34 {
  color: var(--vert-btob);
  text-align: center;
  white-space: normal;
  padding-bottom: 25px;
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
}

.form-item-2 {
  width: 100%;
  border: 0 solid #000;
  justify-content: space-between;
  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 {
  height: auto;
  opacity: 1;
  flex-direction: column;
  justify-content: space-around;
  padding-top: 0;
  transition: all .25s linear;
  display: block;
  top: auto;
  bottom: auto;
  left: auto;
  right: 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 {
  width: 100%;
  height: 70px;
  background-color: var(--white);
  color: #000;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  background-image: url('../images/Groupe-6406_1Groupe 6406.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  display: flex;
  position: relative;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, .1);
}

.radio-button-field:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Groupe-6406_1Groupe 6406.png');
  background-position: 100%;
  background-size: auto;
}

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

.radio-label-btn {
  margin-bottom: 0;
  font-size: 17px;
}

.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 {
  width: 70%;
  max-width: none;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  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: rgba(0, 0, 0, 0);
  padding-top: 40px;
  padding-bottom: 45px;
}

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

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

.arguments {
  background-color: var(--color-bg-input);
  padding: 25px 20px 20px;
}

.div-block-32 {
  grid-column-gap: 22px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 20px;
  display: grid;
}

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

.text-radio {
  color: #333;
  font-size: 17px;
  line-height: 16px;
}

.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;
  top: 8px;
  bottom: 10px;
  left: auto;
  right: 10px;
}

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

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

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

.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 {
  width: 100%;
  max-width: 1190px;
  text-align: center;
  justify-content: space-between;
  align-items: flex-start;
  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: #f5f5f5;
  padding: 200px 15px;
}

.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 {
  font-family: Proxima nova, sans-serif;
  font-size: 60px;
}

.text-block-25 {
  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;
  top: 83px;
  bottom: 0%;
  left: auto;
  right: 10%;
}

.div-block-34 {
  background-color: var(--red-everstyl);
  border-top-right-radius: 8px;
  padding: 12px 0;
}

.section-3 {
  background-color: #f7f7f7;
  padding-bottom: 1px;
}

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

.section-10 {
  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;
  border-bottom-width: 1px;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: 20px;
}

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

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

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

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

.text-block-45 {
  max-width: none;
  color: var(--blue);
  padding-bottom: 20px;
  font-family: Rajdhani;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
}

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

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

.btn {
  width: 280px;
  background-color: var(--vert-btob);
  text-align: left;
  background-image: url('../images/left-arrow.svg');
  background-position: 93%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  border-radius: 3px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 11.7px 18px;
  font-size: 18px;
  font-weight: 700;
  position: static;
}

.btn:hover {
  background-color: rgba(0, 75, 89, .85);
  background-position: 94%;
}

.btn:focus {
  background-color: rgba(0, 75, 89, .85);
}

.div-block-26 {
  max-width: 516px;
  background-color: var(--white);
  text-align: center;
  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);
}

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

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

.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;
  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: 30px;
}

.heading-6 {
  color: var(--vert-btob);
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Rajdhani;
  font-size: 30px;
  line-height: 35px;
}

.text-block-28 {
  max-width: 768px;
  color: #333;
  text-align: center;
  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 {
  width: 100%;
  height: 100%;
  max-height: 451px;
  max-width: 685px;
  object-fit: cover;
}

.heading-7 {
  color: #114591;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 60px 20px 0;
  font-family: Rajdhani;
  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;
  width: 180px;
  height: 180px;
  background-image: url('../images/pastille2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.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: var(--color-bg-input);
  padding-bottom: 40px;
  overflow: hidden;
}

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

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

.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;
  font-size: 30px;
}

.heading-9 {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

.div-block-91 {
  z-index: 0;
  width: 100%;
  max-width: none;
  background-image: url('../images/Group-1.png');
  background-position: 100%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-right: 0;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.section-13 {
  background-color: var(--color-bg-input);
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.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: var(--white);
  padding: 40px 50px;
}

.heading-10 {
  color: var(--vert-btob);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Rajdhani;
  font-size: 30px;
  line-height: 36px;
}

.text-block-52 {
  font-size: 17px;
}

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

.text-block-53 {
  color: var(--red-everstyl);
  text-align: center;
  padding-bottom: 16px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: block;
}

.text-block-54 {
  color: #555;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
}

.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;
  font-size: 30px;
  line-height: 36px;
}

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

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

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

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

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

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

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

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

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

.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 {
  width: auto;
  height: 40px;
  margin-right: 0;
  padding-right: 0;
}

.image-16 {
  width: auto;
  height: auto;
  max-width: 253px;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
}

.text-block-58 {
  color: #004b59;
  padding-bottom: 0;
  font-family: Rajdhani;
  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 {
  max-width: 846px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.argument {
  text-align: center;
}

.text-block-59 {
  max-width: none;
  text-transform: uppercase;
  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 {
  max-width: 945px;
  color: #004b59;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: Rajdhani;
  font-size: 36px;
  line-height: 36px;
}

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

.div-block-104 {
  text-align: center;
  padding-top: 30px;
}

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

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

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

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

.heading-12 {
  font-size: 36px;
}

.heading-13 {
  color: var(--red-everstyl);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 25px;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  line-height: 45px;
}

.heading-14 {
  font-size: 24px;
}

.heading-15 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 29px;
}

.div-block-107 {
  padding-top: 20px;
}

.image-37 {
  margin-top: -5px;
  padding-left: 10px;
}

.image-38 {
  height: 100%;
  max-height: 100%;
  max-width: none;
}

.field-label, .field-label-2, .field-label-3, .field-label-4 {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.field-label-5, .field-label-6, .field-label-7 {
  font-weight: 500;
}

.text-block-61 {
  max-width: 584px;
  color: #555;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 27px;
}

.div-block-82 {
  text-align: left;
  border: 1px #004655;
  border-left-color: #45838b;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 18px;
  padding-left: 0;
  display: flex;
}

.heading-16 {
  color: #004655;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 60px 20px 0;
  font-size: 36px;
  line-height: 40px;
}

.heading-16.heading2small {
  max-width: 786px;
  color: #000;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8px;
  padding-right: 0;
  font-size: 30px;
  line-height: 36px;
}

.bold-text-16 {
  color: #333;
  font-family: Poppins, sans-serif;
  line-height: 37px;
}

.text-block-44 {
  color: #555;
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}

.heading-17 {
  color: #114591;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 5px;
  font-size: 20px;
  line-height: 7px;
}

.bold-text-17 {
  color: #333;
  font-family: Roboto, sans-serif;
}

.div-block-81 {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-83 {
  background-color: #fff;
  border-radius: 8px;
  margin-top: 2em;
  padding: 40px 101px;
}

.image-20 {
  margin-top: 2px;
  padding-top: 0;
}

.div-block-80 {
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  padding: 35px 0;
}

.bold-text-18, .bold-text-19 {
  color: #333;
  font-family: Roboto, sans-serif;
}

.avantages {
  grid-column-gap: 43px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-39 {
  max-height: 40px;
}

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

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

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

.paragraph-8 {
  margin-top: -5px;
  margin-bottom: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 11px;
  font-style: italic;
}

.div-block-113 {
  width: 100%;
  max-width: none;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: row-reverse;
  justify-content: space-around;
  margin-top: 40px;
  padding: 40px 24px;
  display: flex;
}

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

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

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

.bold-text-20, .bold-text-21, .bold-text-22, .bold-text-23 {
  font-weight: 400;
}

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

.text-block-40 {
  color: #747474;
  text-align: left;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 21px;
}

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

.nom-2 {
  color: #333;
  padding-top: 10px;
  padding-bottom: 8px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.comm-2 {
  color: #555;
  padding-bottom: 22px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 27px;
}

.date-2 {
  opacity: 1;
  color: #636363;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

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

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

.div-block-61 {
  height: auto;
  min-height: auto;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: auto;
  padding-right: 60px;
  display: flex;
}

.link-6 {
  color: #000;
}

.encart-comm-2 {
  width: 100%;
  color: #000;
  border-right: 1px solid #ccc;
  margin-right: 20px;
  padding-right: 20px;
  font-size: 14px;
  line-height: 18px;
}

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

.section-16 {
  padding-top: 0;
  padding-bottom: 0;
}

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

.text-block-39 {
  color: #114591;
  margin-bottom: 10px;
  padding-left: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

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

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

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

.image-44 {
  width: auto;
  height: 48px;
  max-width: none;
  margin-bottom: 40px;
}

.container-2 {
  margin-left: 0;
}

.image-45 {
  margin-bottom: 16px;
}

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

.paragraph-10 {
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 14px;
}

.text-block-63 {
  text-transform: capitalize;
  margin-right: 0;
  font-size: 18px;
}

.text-block-63.link-nodec {
  text-decoration: none;
}

.fleche {
  margin-top: -5px;
  padding-left: .8em;
}

.text-field-2 {
  height: 45px;
  color: #444;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 5px 5px 0 0;
  margin-bottom: 0;
  padding: 16px 35px 7px 16px;
  font-size: 16px;
  line-height: 20px;
  display: block;
}

.text-field-2:focus {
  border-width: 1px;
  border-color: #23408f;
  border-radius: 0;
}

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

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

.bold-text-11 {
  color: #4d4d4d;
}

.field-label-text-2 {
  transform-origin: 0 0;
  color: #555;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: 0 solid #ddd;
  border-radius: 5px;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  transition: transform .15s;
  position: absolute;
  top: 13px;
  bottom: auto;
  left: 17px;
  right: auto;
}

.text-block-64 {
  color: #888;
  text-align: center;
  font-size: 11px;
  line-height: 13.2px;
}

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

.text-block-65 {
  margin-right: 0;
  text-decoration: none;
}

.multipage_section-3 {
  flex: none;
  order: 1;
  padding-top: 0;
  text-decoration: none;
  transition: all .25s;
  position: relative;
  transform: translate(0);
}

.text-block-31 {
  color: #444;
  text-align: center;
  text-transform: uppercase;
  padding-top: .7em;
  font-size: 16px;
}

.text-block-66 {
  color: #444;
  text-align: left;
  text-transform: none;
  margin-left: 0;
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
}

.multipage_nav-2 {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-top: 10px;
  display: flex;
}

.div-block-118 {
  padding-top: 30px;
}

.text-block-67 {
  color: #23408f;
  text-transform: uppercase;
  white-space: normal;
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
  overflow: visible;
}

.div-block-119 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-120 {
  text-align: left;
}

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

  .multipage_progress_bar {
    background-color: #ebebeb;
  }

  .inner {
    background-color: var(--red-everstyl);
  }

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

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

  .multipage_progress {
    display: block;
  }

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

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

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

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

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

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

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

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

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

  .image-8 {
    right: 10%;
  }

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

  .btn {
    border-radius: 3px;
  }

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

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

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

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

  .div-block-91 {
    width: 100%;
    max-width: 100%;
    background-image: url('../images/Group-1.png');
    background-position: 100%;
    background-size: cover;
  }

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

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

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

  .heading-13 {
    font-size: 36px;
    line-height: 45px;
  }

  .heading-15 {
    line-height: 29px;
  }

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

  .heading-16.heading2small {
    line-height: 36px;
  }

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

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

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

  .text-field-2 {
    background-color: #fff;
  }

  .bold-text-11 {
    color: #4d4d4d;
    font-size: 16px;
  }

  .text-block-31 {
    text-align: center;
    font-family: Proxima nova, sans-serif;
    font-size: 16px;
  }

  .text-block-66 {
    border-bottom: 1px solid #444;
    line-height: 20px;
    text-decoration: none;
  }

  .text-block-66:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 991px) {
  .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;
  }

  .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 {
    padding-left: 32px;
    padding-right: 32px;
  }

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

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

  .form-container {
    min-height: 0;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    flex-direction: column;
    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 {
    max-width: 483px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    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-bottom-left-radius: 8px;
    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%;
  }

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

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

  .image-8 {
    display: none;
  }

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

  .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-85 {
    flex-direction: column;
    align-items: flex-start;
    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 {
    width: auto;
    background-position: 92%;
    border-radius: 3px;
    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%;
  }

  .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 {
    width: 100%;
    height: 250px;
    max-width: 483px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    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;
  }

  .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 {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .image-16 {
    margin-top: 10px;
    padding-bottom: 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 {
    height: auto;
    object-fit: fill;
  }

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

  .heading-13 {
    font-size: 36px;
    line-height: 45px;
  }

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

  .div-block-82 {
    justify-content: flex-start;
    align-items: stretch;
  }

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

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

  .bold-text-16 {
    line-height: 37px;
  }

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

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

  .bold-text-17 {
    font-size: 20px;
    line-height: 24px;
  }

  .div-block-81.avantage_last {
    align-items: flex-start;
  }

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

  .div-block-80 {
    padding: 25px 0;
  }

  .bold-text-18 {
    font-size: 20px;
    line-height: 24px;
    position: static;
  }

  .bold-text-19 {
    font-size: 20px;
  }

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

  .div-block-112 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .div-block-113 {
    flex-direction: row-reverse;
    padding-left: 24px;
  }

  .div-block-111 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

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

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

  .div-block-68.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;
  }

  .image-44 {
    height: 32px;
  }

  .text-block-67 {
    color: #23408f;
    text-transform: uppercase;
    font-size: 31px;
    font-weight: 700;
    line-height: 37.2px;
  }
}

@media screen and (max-width: 767px) {
  .inner {
    background-color: var(--red-everstyl);
  }

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

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

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

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

  .submit-button {
    background-color: var(--red-everstyl);
  }

  .submit-button:hover, .submit-button:focus {
    background-color: rgba(227, 6, 19, .8);
  }

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

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

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

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

  .div-block-20 {
    flex-direction: 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(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    flex-direction: column;
    padding-bottom: 0;
  }

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

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

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

  .text-block-8 {
    max-width: 500px;
    text-align: center;
    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 {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-right: 0;
    display: flex;
  }

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

  .link-3 {
    color: #000;
  }

  .blocgauche {
    width: 160px;
  }

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

  .radio {
    text-align: left;
  }

  .flechedroite {
    width: 160px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    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 {
    width: 100%;
    text-align: left;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    padding-bottom: 15px;
    display: flex;
  }

  .div-block-29 {
    flex-direction: column;
    padding-bottom: 25px;
  }

  .illus {
    justify-content: center;
    padding-left: 0;
  }

  .image-3 {
    width: 100px;
    text-align: center;
    padding-bottom: 0;
  }

  .text-block-35 {
    padding-bottom: 10px;
  }

  .beforeafter.twentytwenty.twentytwenty-container {
    height: auto;
    height: auto;
    margin-bottom: 20px;
    padding-bottom: 0;
    display: block;
    overflow: hidden;
  }

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

  .image-7 {
    width: 100%;
    height: auto;
    object-fit: fill;
  }

  .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;
    align-items: stretch;
    justify-items: 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: 460px;
  }

  .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-direction: column;
  }

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

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

  .text-block-61 {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
  }

  .div-block-82 {
    border-left-width: 0;
    margin-left: 0;
    padding-left: 0;
  }

  .heading-16 {
    line-height: 25px;
  }

  .heading-16.heading2small {
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 26.4px;
  }

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

  .text-block-44 {
    text-align: center;
    font-size: 16px;
    line-height: 23px;
  }

  .heading-17 {
    height: auto;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 8px;
    font-size: 18px;
    line-height: 18px;
  }

  .bold-text-17 {
    line-height: 10px;
  }

  .div-block-81 {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    flex-direction: column;
    align-items: center;
    padding: 11px 30px;
  }

  .div-block-81.avantage_last {
    border-bottom-width: 0;
  }

  .div-block-83 {
    padding: 4px 0;
  }

  .image-20 {
    display: none;
  }

  .div-block-80 {
    padding-left: 0;
    padding-right: 0;
  }

  .bold-text-19 {
    line-height: 10px;
  }

  .avantages {
    grid-template-columns: 1fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-39 {
    max-width: 40px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }

  .div-block-112 {
    display: block;
  }

  .div-block-113 {
    flex-direction: row-reverse;
  }

  .div-block-111 {
    display: block;
  }

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

  .text-block-62 {
    padding-top: 0;
    padding-bottom: 5px;
  }

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

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

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

  .div-block-61 {
    align-items: center;
    padding-right: 0;
  }

  .link-6 {
    color: #000;
  }

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

  .div-block-68.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;
  }

  .image-44 {
    margin-bottom: 25px;
  }

  .container-2 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    display: flex;
  }

  .paragraph-10 {
    margin-bottom: 0;
  }

  .button-2 {
    background-color: var(--red-everstyl);
    border-radius: 5px;
  }

  .text-span-6 {
    font-size: 18px;
  }

  .text-block-67 {
    font-size: 34px;
    line-height: 38px;
  }
}

@media screen and (max-width: 479px) {
  .form-item.radio-spe {
    flex-direction: column;
  }

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

  .multipage_sections {
    width: 100%;
    max-width: 100%;
  }

  .submit-button {
    width: 100%;
    background-color: var(--red-everstyl);
    white-space: pre-wrap;
  }

  .submit-button:hover, .submit-button:focus {
    background-color: rgba(227, 6, 19, .8);
  }

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

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

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

  .div-block-20, .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 {
    max-width: 320px;
    flex-direction: column;
    align-items: center;
    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 {
    max-width: 250px;
    justify-content: flex-start;
    align-items: center;
    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;
  }

  .div-block-32 {
    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;
  }

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

  .heading-13 {
    font-size: 28px;
    line-height: 35px;
  }

  .heading-15 {
    font-size: 20px;
  }

  .text-block-61 {
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
  }

  .heading-16 {
    font-size: 20px;
    line-height: 22px;
  }

  .heading-16.heading2small {
    padding-left: 0;
    padding-right: 0;
  }

  .bold-text-16 {
    font-size: 24px;
  }

  .bold-text-17 {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
  }

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

  .div-block-83 {
    padding: 20px 0;
  }

  .bold-text-18, .bold-text-19 {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
  }

  .avantages {
    padding-left: 16px;
    padding-right: 16px;
  }

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

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

  .div-block-113 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column-reverse;
    align-items: center;
    padding: 32px;
  }

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

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

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

  .comm-2 {
    padding-bottom: 15px;
  }

  .encart-gris-2 {
    flex-direction: column;
  }

  .div-block-61 {
    justify-content: space-around;
    align-items: center;
    padding-right: 0;
  }

  .encart-comm-2 {
    border-bottom: 1px solid #ccc;
    border-right-width: 0;
    margin-bottom: 20px;
  }

  .encart-comm-2.last {
    border-bottom-width: 0;
  }

  .div-block-68.container {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

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

  .container-2 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    display: flex;
  }

  .paragraph-10 {
    margin-bottom: 0;
  }

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

  .text-block-31 {
    padding-top: .5em;
    font-size: 17px;
  }

  .text-block-67 {
    color: #23408f;
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 700;
    line-height: 27.6px;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a55a936d-6fbb-90b9-5f49-cf4d1b97ed29-a365a112, #w-node-a55a936d-6fbb-90b9-5f49-cf4d1b97ed44-a365a112 {
    align-self: auto;
    justify-self: center;
  }
}


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