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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.separator.long {
  max-width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.max-w.header {
  background-color: #0000;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

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

.max-w.black {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  color: #f3f2f0;
  -webkit-text-stroke-color: #f3f2f0;
  background-color: #f3f2f0;
  border-radius: 0;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 56px;
  padding-bottom: 56px;
}

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

.max-w.header-texts {
  justify-content: center;
  align-items: center;
  max-width: 988px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 48px;
  padding-bottom: 32px;
}

.max-w.container_sign {
  margin-bottom: 56px;
}

.max-w.info_offre {
  background-color: #fff;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-37 {
  width: 116px;
  height: 116px;
  min-height: auto;
  max-height: none;
}

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

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

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

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

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

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

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

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

.nos-magasin-cta {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

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

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

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

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

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

.image-59 {
  width: 100%;
  max-width: 336px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

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

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

.text-block-100 {
  text-align: left;
  margin-bottom: 0;
  padding-top: 0;
  font-family: poppins, sans-serif;
  font-size: 14px;
  line-height: 100%;
}

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

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

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

.btnmagasin.full {
  width: 100%;
}

.btnmagasin.full.rose {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  background-color: #523628;
  margin-top: 12px;
  padding-bottom: 15px;
  text-decoration: none;
}

.btnmagasin.full.rose:hover, .btnmagasin.full.rose:focus {
  background-color: #331c11;
}

.btnmagasin.full.rose.content_fit {
  width: fit-content;
}

.btnmagasin.full.rose.stuck_down {
  display: none;
}

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

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

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

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

.text-block-102 {
  color: #24231f;
  text-align: left;
  font-family: filson-pro, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

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

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

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

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

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

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

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

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

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

.desktop {
  padding-right: 40px;
}

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

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

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

.navbar-2 {
  display: none;
}

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

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

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

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

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

.button-5 {
  color: #231b18;
  border: 1px solid #231b18;
  border-radius: 60px;
  width: 100%;
  margin-top: auto;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .1s;
}

.button-5:hover, .button-5:focus {
  color: #fff;
  background-color: #231b18;
}

.div-block-175 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  padding-bottom: 0;
  display: flex;
  overflow: visible;
}

.image-74 {
  aspect-ratio: 116 / 89;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  width: 100%;
}

.modal-bg {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #0000007d;
  position: absolute;
  inset: 0%;
}

.div-block-176 {
  text-align: center;
  height: 100%;
  margin-bottom: 0;
  padding-bottom: 64px;
  padding-left: 80px;
  padding-right: 80px;
  display: block;
  overflow: auto;
}

.popup {
  z-index: 999;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup.popup_claudia {
  display: none;
}

.popup.popup_adriana {
  display: flex;
}

.popup.popup_naomi {
  display: none;
}

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

.div-block-173 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #fff;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  height: 80%;
  min-height: 300px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 64px;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: relative;
  overflow: clip;
}

.div-block-179 {
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  border-radius: 12px;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 30%;
  display: flex;
  position: sticky;
  top: 0;
}

.close {
  padding: 10px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.text-block-111 {
  font-weight: 700;
}

.flex-block-28 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  height: 100%;
}

.div-block-182 {
  text-align: left;
  flex-flow: column;
  margin-bottom: 0;
  display: flex;
}

.paragraph-6 {
  color: #222;
  margin-bottom: 0;
  font-family: poppins, sans-serif;
  font-size: 12px;
}

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

.paragraph-8 {
  color: #7e7e7e;
  margin-bottom: 0;
  font-family: poppins, sans-serif;
  font-size: 12px;
}

.text-span-26 {
  color: #222;
  font-family: poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-span-27 {
  color: #222;
  font-family: poppins, sans-serif;
  font-size: 12px;
}

.otitle {
  color: #793c15;
  text-transform: uppercase;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.div-block-183 {
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  display: flex;
}

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

.div-block-184 {
  box-sizing: border-box;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #dfd3cd;
  border-radius: 16px;
  flex: 0 auto;
  order: 0;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 32px 80px;
  display: flex;
}

.div-block-185 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  display: flex;
}

.paragraph-10 {
  color: #24231f;
  text-align: left;
  font-family: filson-pro, sans-serif;
  font-size: 28px;
  line-height: 120%;
}

.text-span-28, .text-span-29 {
  font-family: EB Garamond, sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
}

.text-span-30, .text-span-31 {
  font-weight: 600;
}

.image-78 {
  width: auto;
  max-width: 100%;
  margin-right: 0;
}

.image-79 {
  width: auto;
  max-width: 100%;
}

.text-block-130 {
  color: #383732;
  text-align: left;
}

.div-block-186 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  display: flex;
}

.paragraph-11 {
  color: #222;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 27px;
}

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

.text-span-32 {
  color: #793c15;
  font-weight: 600;
}

.paragraph-12 {
  text-align: left;
  font-family: filson-pro, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
}

.image-80 {
  width: 100%;
  margin-top: 0;
}

.title_card {
  font-family: filson-pro, sans-serif;
  font-size: 28px;
  line-height: 120%;
}

.title_card.mobile {
  display: none;
}

.title_card.popup_tc {
  font-family: poppins, sans-serif;
  font-size: 20px;
}

.text-span-33 {
  font-family: EB Garamond, sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
}

.div-block-188, .image-81 {
  display: none;
}

.text-span-34 {
  font-family: EB Garamond, sans-serif;
  font-size: 46px;
  font-style: italic;
  font-weight: 500;
}

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

.flex-block-29 {
  width: 50%;
}

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

.image-82 {
  display: block;
}

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

.popup_h2 {
  color: #2f2d2b;
  margin-bottom: 12px;
  font-family: filson-pro, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.popup_h2.no_marges {
  margin-bottom: 0;
}

.popup_h3 {
  color: #222;
  margin-bottom: 4px;
  font-family: poppins, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.popup_h3.no_marges {
  margin-bottom: 0;
}

.avis_expert {
  background-color: #f3f2f0;
  border-radius: 20px;
  margin-top: 24px;
  padding: 32px;
}

.text_pastille {
  color: #222;
  margin-bottom: 0;
  font-family: poppins, sans-serif;
  font-size: 15px;
  line-height: 100%;
}

.popup_text {
  color: #222;
  margin-bottom: 0;
  font-family: poppins, sans-serif;
  font-size: 15px;
}

.popup_text.marges {
  margin-bottom: 12px;
}

.popup_text.avis_marges {
  margin-top: 16px;
  margin-bottom: 12px;
}

.text-span-35 {
  font-family: EB Garamond, sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 120%;
}

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

.paragraph-18 {
  color: #7e7e7e;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
}

.popup-geoloc {
  z-index: 100;
  background-color: #000c;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

.geoloc-search {
  z-index: 102;
  background-color: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 508px;
  padding: 48px 40px;
  position: relative;
}

.popup-geoloc-closing-x {
  cursor: pointer;
  position: static;
  inset: 16px 16px auto auto;
}

.nos_magasins {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-19 {
  color: #fff;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
}

.text-field-2 {
  border-radius: 99px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.div-block-195 {
  cursor: pointer;
  background-color: #d0db53;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 12px;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

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

.geoloc-back {
  z-index: 101;
  width: 100%;
  height: 100%;
  position: absolute;
}

.popup-geoloc-closing-area {
  position: absolute;
  inset: 16px 16px auto auto;
}

.btn--hc {
  text-decoration: none;
}

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

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

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

  .max-w.header, .max-w.footer {
    background-color: #0000;
  }

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

  .header {
    position: sticky;
  }

  .footer {
    background-color: #523628;
  }

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

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

  .text-block-77 {
    font-family: filson-pro, sans-serif;
    font-weight: 500;
  }

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

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

  .div-block-125.bloc-produit {
    height: 100%;
  }

  .image-59 {
    max-width: 339px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .btnmagasin.full.rose {
    color: #fff;
    background-color: #523628;
  }

  .image-66 {
    max-width: none;
  }

  .header-3.container {
    background-color: #523628;
  }

  .popup {
    max-width: none;
    display: none;
  }

  .popup.popup_claudia {
    display: none;
  }

  .div-block-173 {
    max-width: 1280px;
  }

  .div-block-197 {
    background-color: #fff;
  }
}

@media screen and (max-width: 991px) {
  .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: 16px;
    grid-row-gap: 16px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

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

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

  .max-w.black {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    background-color: #f3f2f0;
    flex-flow: column-reverse;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

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

  .header {
    background-color: #523628;
    height: auto;
    display: none;
  }

  .arguments {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

  .flex-block-14 {
    margin-bottom: 4px;
    padding-bottom: 20px;
  }

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

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

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

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

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

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

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

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

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

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

  .desktop {
    display: none;
  }

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

  .image-66 {
    display: block;
  }

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

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

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

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

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

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

  .modal-bg {
    display: flex;
  }

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

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

  .popup.popup_claudia, .popup.popup_naomi {
    display: none;
  }

  .div-block-173 {
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .text-span-26 {
    font-family: poppins, sans-serif;
  }

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

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

  .div-block-190 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    margin-bottom: 16px;
    display: flex;
  }

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

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

  .geoloc-search {
    max-width: 508px;
  }
}

@media screen and (max-width: 767px) {
  .separator.long {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .field-label-text {
    word-break: normal;
  }

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

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

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

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

  .max-w.header-texts {
    justify-content: center;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .max-w.container_sign {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 32px;
  }

  .max-w.info_offre {
    padding-top: 24px;
  }

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

  .header {
    background-color: #523628;
    height: auto;
    position: fixed;
  }

  .arguments {
    width: auto;
  }

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

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

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

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

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

  .text-block-77 {
    font-size: 40px;
    line-height: 110%;
  }

  .grid-2 {
    grid-template-columns: minmax(200px, 1fr);
  }

  .grid-2.trois {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: minmax(200px, 1fr);
  }

  .text-block-100 {
    font-size: 12px;
  }

  .flex-block-14 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .btnmagasin.full.rose {
    margin-top: 0;
  }

  .btnmagasin.full.rose.content_fit {
    width: 100%;
  }

  .btnmagasin.full.rose.stuck_down {
    border-radius: 0;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
  }

  .btnmagasin.full.rose.in_popup, .flex-block-15 {
    display: none;
  }

  .flex-block-15.fb15popup {
    display: flex;
  }

  .image-60 {
    width: 50%;
    max-width: 50%;
  }

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

  .nav-menu-2 {
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .div-block-131 {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-132 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #523628;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .button-5 {
    margin-top: 0;
  }

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

  .image-74 {
    margin-left: auto;
    margin-right: auto;
  }

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

  .popup, .popup.popup_naomi {
    display: none;
  }

  .div-block-179 {
    width: 100%;
    position: static;
  }

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

  .paragraph-8 {
    font-size: 11px;
  }

  .text-span-26 {
    font-size: 16px;
  }

  .paragraph-9 {
    font-size: 15px;
  }

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

  .paragraph-10 {
    margin-bottom: 16px;
    font-size: 24px;
  }

  .text-span-28, .text-span-29 {
    font-size: 29px;
  }

  .text-block-130, .paragraph-11 {
    font-size: 15px;
  }

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

  .paragraph-12 {
    margin-bottom: 0;
    font-size: 28px;
  }

  .image-80 {
    margin-top: 84px;
    display: none;
  }

  .title_card.mobile {
    text-align: left;
    font-size: 18px;
    display: block;
  }

  .title_card.popup_tc {
    margin-bottom: 0;
    font-size: 18px;
  }

  .text-span-33 {
    font-size: 24px;
  }

  .div-block-188 {
    background-color: #cfb2a2;
    margin-top: 67px;
    padding-top: 8px;
    padding-bottom: 8px;
    display: block;
  }

  .paragraph-14 {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    font-family: filson-pro, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 100%;
  }

  .paragraph-15 {
    color: #793c15;
    text-align: center;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 100%;
  }

  .image-81 {
    display: block;
  }

  .text-span-34 {
    font-size: 37px;
  }

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

  .popup_h2 {
    font-size: 20px;
  }

  .avis_expert {
    margin-bottom: 64px;
  }

  .text-span-35 {
    font-size: 28px;
  }

  .paragraph-17 {
    margin-bottom: 8px;
    font-size: 15px;
  }

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

  .popup-geoloc {
    justify-content: center;
    align-items: flex-end;
    display: none;
  }

  .geoloc-search {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .popup-geoloc-closing-x {
    width: 26px;
  }

  .popup-geoloc-closing-area {
    justify-content: center;
    align-items: center;
    width: 32px;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  .form {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

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

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

  .header {
    position: static;
  }

  .arguments {
    width: 100%;
  }

  .div-block-32 {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .div-block-96 {
    justify-content: center;
    align-items: center;
    padding: 0;
  }

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

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

  .text-block-77 {
    font-size: 32px;
  }

  .grid-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .div-block-125.bloc-produit {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-menu-2 {
    background-color: #523628;
  }

  .div-block-131 {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .image-66 {
    width: auto;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
  }

  .navbar-2 {
    display: flex;
  }

  .header-3.container {
    height: fit-content;
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

  .popup, .popup.popup_claudia, .popup.popup_naomi {
    display: none;
  }

  .div-block-173 {
    margin: 10px;
    padding: 0;
  }

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

  .paragraph-9 {
    text-align: center;
    margin-bottom: 0;
  }

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

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

  .image-80 {
    margin-top: 0;
    display: none;
  }

  .div-block-188 {
    background-color: #cfb2a2;
    margin-top: 0;
  }

  .paragraph-14 {
    color: #fff;
    margin-bottom: 0;
    font-family: filson-pro, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 100%;
  }

  .paragraph-15 {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    font-family: filson-pro, sans-serif;
    font-weight: 700;
    line-height: 100%;
  }

  .image-81 {
    width: 100%;
  }

  .div-block-190 {
    width: 40%;
  }

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

  .popup-geoloc {
    display: none;
  }
}

#w-node-b9dd4e4b-d924-5874-70cb-cd040fd490f3-22cc6da8 {
  order: 0;
  place-self: auto;
}

#w-node-b9dd4e4b-d924-5874-70cb-cd040fd490fb-22cc6da8, #w-node-b9dd4e4b-d924-5874-70cb-cd040fd49103-22cc6da8, #w-node-b9dd4e4b-d924-5874-70cb-cd040fd49109-22cc6da8 {
  order: 0;
}


@font-face {
  font-family: 'Icomoon';
  src: url('../fonts/icomoon.eot') format('embedded-opentype'), url('../fonts/icomoon.woff') format('woff'), url('../fonts/icomoon.ttf') format('truetype'), url('../fonts/icomoon.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'amsi';
  src: url('../fonts/183dc8ce4b9423cabfd7b3a56b7c37ab.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima nova';
  src: url('../fonts/FontsFree-Net-proxima_nova_reg-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima nova';
  src: url('../fonts/FONTSFREE-NET-PROXIMA-NOVA-BOLD.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima nova';
  src: url('../fonts/FontsFree-Net-Proxima-Nova-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}