:root {
  --body: #333;
  --title: black;
  --bleu: #015289;
  --blanc: white;
  --desktop: 150px;
  --tablet: 100px;
  --landscape-mobile: 80px;
  --potrait-mobile: 60px;
  --bg: black;
  --bg2: #f8f7f6;
}

/*Début form*/
/* Overlay */
.form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(59, 121, 195, 0.85); /* Votre bleu #3b79c3 avec 85% d'opacité */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px); /* Effet de flou subtil pour le fond */
}

.form-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Container */
.form-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  border: 1px solid rgba(59, 121, 195, 0.2); /* Bordure bleue subtile */
}

.form-overlay.visible .form-container {
  transform: translateY(0);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #777;
  transition: all 0.2s;
  background: none;
  border: none;
  padding: 5px;
}

.close-btn:hover {
  color: #333;
  transform: scale(1.1);
}

/* Form steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.form-step h2 {
  color: #3b79c3;
  margin-bottom: 20px;
  font-size: 1.5rem;
  border-bottom: 2px solid rgba(59, 121, 195, 0.1);
  padding-bottom: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form elements */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b79c3;
  box-shadow: 0 0 0 3px rgba(59, 121, 195, 0.15);
}

.form-help {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #666;
}

/* Navigation buttons */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #3b79c3 0%, #2f5f9e 100%); /* Dégradé de votre bleu */
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(59, 121, 195, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2f5f9e 0%, #3b79c3 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(59, 121, 195, 0.4);
}

.btn-secondary {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background-color: #e0e0e0;
}

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-navigation {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
/*Fin form*/

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

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

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

.w-commerce-commercecartwrapper {
  display: inline-block;
  position: relative;
}

.w-commerce-commercecartopenlink {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartopenlinkcount {
  color: #3898ec;
  text-align: center;
  background-color: #fff;
  border-radius: 9px;
  min-width: 18px;
  height: 18px;
  margin-left: 8px;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
}

.w-commerce-commercecartcontainerwrapper {
  z-index: 1001;
  background-color: #000c;
  position: fixed;
  inset: 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-modal {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftSidebar {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightSidebar {
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftDropdown {
  background-color: #0000;
  position: absolute;
  inset: 100% auto auto 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
  background-color: #0000;
  position: absolute;
  inset: 100% 0 auto auto;
}

.w-commerce-commercecartcontainer {
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  overflow: auto;
  box-shadow: 0 5px 25px #00000040;
}

.w-commerce-commercecartheader {
  border-bottom: 1px solid #e6e6e6;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  display: flex;
  position: relative;
}

.w-commerce-commercecartheading {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.w-commerce-commercecartcloselink {
  width: 16px;
  height: 16px;
}

.w-commerce-commercecartformwrapper {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.w-commerce-commercecartform {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecartlist {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 12px 24px;
  overflow: auto;
}

.w-commerce-commercecartitem {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.w-commerce-commercecartitemimage {
  width: 60px;
  height: 0%;
}

.w-commerce-commercecartiteminfo {
  flex-direction: column;
  flex: 1;
  margin-left: 16px;
  margin-right: 16px;
  display: flex;
}

.w-commerce-commercecartproductname {
  font-weight: 700;
}

.w-commerce-commercecartoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercecartquantity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecartquantity::placeholder {
  color: #999;
}

.w-commerce-commercecartquantity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecartfooter {
  border-top: 1px solid #e6e6e6;
  flex-direction: column;
  flex: none;
  padding: 16px 24px 24px;
  display: flex;
}

.w-commerce-commercecartlineitem {
  flex: none;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  display: flex;
}

.w-commerce-commercecartordervalue {
  font-weight: 700;
}

.w-commerce-commercecartapplepaybutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  height: 38px;
  min-height: 30px;
  margin-bottom: 8px;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartapplepayicon {
  width: 100%;
  height: 50%;
  min-height: 20px;
}

.w-commerce-commercecartquickcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  height: 38px;
  margin-bottom: 8px;
  padding: 0 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercequickcheckoutgoogleicon, .w-commerce-commercequickcheckoutmicrosofticon {
  margin-right: 8px;
  display: block;
}

.w-commerce-commercecartcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercecartemptystate {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.w-commerce-commercecarterrorstate {
  background-color: #ffdede;
  flex: none;
  margin: 0 24px 24px;
  padding: 10px;
}

.w-commerce-commerceaddtocartform {
  margin: 0 0 15px;
}

.w-commerce-commerceaddtocartoptionpillgroup {
  margin-bottom: 10px;
  display: flex;
}

.w-commerce-commerceaddtocartoptionpill {
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #000;
  margin-right: 10px;
  padding: 8px 15px;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-selected {
  color: #fff;
  background-color: #000;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartquantityinput {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commerceaddtocartquantityinput::placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commerceaddtocartbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commerceaddtocartbutton.w--ecommerce-add-to-cart-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartoutofstock {
  background-color: #ddd;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commerceaddtocarterror {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commercecheckoutformcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercelayoutcontainer {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.w-commerce-commercelayoutmain {
  flex: 0 800px;
  margin-right: 20px;
}

.w-commerce-commercecheckoutcustomerinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutblockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 20px;
}

.w-commerce-commercecheckoutlabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutemailinput {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutemailinput::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingaddresswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingfullname {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddress {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutrow {
  margin-left: -8px;
  margin-right: -8px;
  display: flex;
}

.w-commerce-commercecheckoutcolumn {
  flex: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.w-commerce-commercecheckoutshippingcity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstateprovince {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingzippostalcode {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingcountryselector {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingmethodswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingmethodslist {
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}

.w-commerce-commercecheckoutshippingmethoditem {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 0;
  padding: 16px;
  font-weight: 400;
  display: flex;
}

.w-commerce-commercecheckoutshippingmethoddescriptionblock {
  flex-direction: column;
  flex-grow: 1;
  margin-left: 12px;
  margin-right: 12px;
  display: flex;
}

.w-commerce-commerceboldtextblock {
  font-weight: 700;
}

.w-commerce-commercecheckoutshippingmethodsemptystate {
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 64px 16px;
}

.w-commerce-commercecheckoutpaymentinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutcardnumber {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardnumber::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber:focus, .w-commerce-commercecheckoutcardnumber.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardexpirationdate {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardexpirationdate::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate:focus, .w-commerce-commercecheckoutcardexpirationdate.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardsecuritycode {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardsecuritycode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode:focus, .w-commerce-commercecheckoutcardsecuritycode.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingaddresstogglewrapper {
  flex-direction: row;
  display: flex;
}

.w-commerce-commercecheckoutbillingaddresstogglecheckbox {
  margin-top: 4px;
}

.w-commerce-commercecheckoutbillingaddresstogglelabel {
  margin-left: 8px;
  font-weight: 400;
}

.w-commerce-commercecheckoutbillingaddresswrapper {
  margin-top: 16px;
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutbillingfullname {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddress {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstateprovince {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingzippostalcode {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcountryselector {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutorderitemswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutorderitemslist {
  margin-bottom: -20px;
}

.w-commerce-commercecheckoutorderitem {
  margin-bottom: 20px;
  display: flex;
}

.w-commerce-commercecheckoutorderitemdescriptionwrapper {
  flex-grow: 1;
  margin-left: 16px;
  margin-right: 16px;
}

.w-commerce-commercecheckoutorderitemquantitywrapper {
  white-space: pre-wrap;
  display: flex;
}

.w-commerce-commercecheckoutorderitemoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercelayoutsidebar {
  flex: 0 0 320px;
  position: sticky;
  top: 20px;
}

.w-commerce-commercecheckoutordersummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummarylineitem, .w-commerce-commercecheckoutordersummaryextraitemslistitem {
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
  display: flex;
}

.w-commerce-commercecheckoutsummarytotal {
  font-weight: 700;
}

.w-commerce-commercecheckoutplaceorderbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 3px;
  align-items: center;
  margin-bottom: 20px;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercecheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

.w-commerce-commercepaypalcheckoutformcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercecheckoutcustomerinfosummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryitem, .w-commerce-commercecheckoutsummarylabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutsummaryflexboxdiv {
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecheckoutsummarytextspacingondiv {
  margin-right: .33em;
}

.w-commerce-commercecheckoutpaymentsummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercepaypalcheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

.w-commerce-commerceorderconfirmationcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercecheckoutshippingsummarywrapper {
  margin-bottom: 20px;
}

.w-users-userloginformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformbutton {
  text-align: center;
  width: 100%;
}

.w-users-userformfooter {
  justify-content: space-between;
  margin-top: 12px;
  display: flex;
}

.w-users-userformerrorstate {
  margin-left: 20px;
  margin-right: 20px;
  position: absolute;
  top: 100%;
  left: 0%;
  right: 0%;
}

.w-users-usersignupformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformsuccessstate {
  display: none;
}

.w-users-userformheader {
  text-align: center;
}

.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-users-usersignupverificationmessage {
  display: none;
}

.w-users-userresetpasswordformwrapper, .w-users-userupdatepasswordformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-useraccountwrapper {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-users-blockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-users-blockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  margin-bottom: 20px;
  padding: 20px;
}

.w-users-useraccountformsavebutton {
  text-align: center;
  margin-right: 8px;
}

.w-users-useraccountformcancelbutton {
  text-align: center;
  color: #333;
  background-color: #d3d3d3;
}

.w-users-useraccountsubscriptionlist {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  overflow: auto;
}

.w-users-useraccountsubscriptionlistitem {
  align-items: flex-start;
  display: flex;
}

.w-users-gridrow {
  grid-column-gap: 8px;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  display: grid;
}

.w-users-flexcolumn {
  flex-direction: column;
  display: flex;
}

.w-users-useraccountsubscriptioncancelbutton {
  color: #3898ec;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #0000;
  padding: 0;
}

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

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous, .w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

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

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

  .w-commerce-commercelayoutcontainer {
    flex-direction: column;
    align-items: stretch;
  }

  .w-commerce-commercelayoutmain {
    flex-basis: auto;
    margin-right: 0;
  }

  .w-commerce-commercelayoutsidebar {
    flex-basis: auto;
  }
}

@media screen and (max-width: 479px) {
  .w-commerce-commercecartcontainerwrapper--cartType-modal {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-leftDropdown, .w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    display: flex;
    position: fixed;
    inset: 0;
  }

  .w-commerce-commercecartquantity, .w-commerce-commerceaddtocartquantityinput, .w-commerce-commercecheckoutemailinput, .w-commerce-commercecheckoutshippingfullname, .w-commerce-commercecheckoutshippingstreetaddress, .w-commerce-commercecheckoutshippingstreetaddressoptional {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutrow {
    flex-direction: column;
  }

  .w-commerce-commercecheckoutshippingcity, .w-commerce-commercecheckoutshippingstateprovince, .w-commerce-commercecheckoutshippingzippostalcode, .w-commerce-commercecheckoutshippingcountryselector, .w-commerce-commercecheckoutcardnumber, .w-commerce-commercecheckoutcardexpirationdate, .w-commerce-commercecheckoutcardsecuritycode, .w-commerce-commercecheckoutbillingfullname, .w-commerce-commercecheckoutbillingstreetaddress, .w-commerce-commercecheckoutbillingstreetaddressoptional, .w-commerce-commercecheckoutbillingcity, .w-commerce-commercecheckoutbillingstateprovince, .w-commerce-commercecheckoutbillingzippostalcode, .w-commerce-commercecheckoutbillingcountryselector {
    font-size: 16px;
  }
}

body {
  color: var(--body);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

h1 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Afacad, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 120%;
}

h2 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Afacad, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 120%;
}

h3 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Afacad, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 150%;
}

h4 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Afacad, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
}

h5 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Afacad, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

h6 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Afacad, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

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

a:hover {
  text-decoration: none;
}

ul, ol {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 30px;
}

li {
  margin-bottom: 15px;
}

blockquote {
  text-align: center;
  border: 1px solid #000;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 40px;
  font-size: 18px;
  line-height: 150%;
}

.container {
  width: 100%;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-menu, .nav-menu.bg {
  display: flex;
}

.navbar {
  background-color: #0000;
  border-bottom: 1px solid #0000001a;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar.white {
  background-color: var(--bleu);
  background-color: #015289;
  border-bottom-color: #fff3;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  padding-left: 0;
}

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

.utility-page-content {
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 450px;
  margin-bottom: 0;
  padding: 50px;
  display: flex;
}

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

.navbar-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-link {
  color: #000;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}

.nav-link.white {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.cart-button {
  grid-column-gap: 8px;
  color: #000;
  background-color: #0000;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
}

.cart-quantity {
  justify-content: center;
  align-items: center;
  display: flex;
}

.cart-quantity.white {
  color: #fff;
}

.cart-item {
  color: #000;
  background-color: #0000;
  border-radius: 0;
  min-width: auto;
  height: auto;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
}

.cart-item.white {
  color: #fff;
}

.cart-text {
  grid-column-gap: 4px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cart-text.white {
  color: #fff;
}

.d-none {
  display: none;
}

.nav-search {
  width: 100%;
  max-width: 80%;
  margin-bottom: 0;
  display: none;
  position: absolute;
  right: 40%;
}

.searchbar {
  color: #000;
  background-image: url('../images/ic-search.svg');
  background-position: 15px;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1px solid #00000026;
  border-radius: 50px;
  height: auto;
  margin-bottom: 0;
  padding: 10px 30px 10px 44px;
}

.searchbar:focus {
  border-color: #00000026;
}

.searchbar::placeholder {
  font-size: 14px;
}

.nav-right {
  grid-column-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 24%;
  display: none;
  position: relative;
}

.nav-searchbar {
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-menu-wrap {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.close-search {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 18px;
}

.page-data {
  margin-bottom: var(--desktop);
}

.footer {
  border-top: 1px solid #0000001a;
  padding-top: 60px;
}

.ft-logo-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 50px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 30px;
  padding-bottom: 40px;
  display: grid;
}

.ft-logo {
  object-fit: contain;
  width: 130px;
  height: 70px;
}

.footer-wrap {
  background-color: var(--bg);
}

.footer-top {
  justify-content: space-between;
  align-items: stretch;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.footer-btm {
  color: #999;
  border-top: 1px solid #fff3;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  display: flex;
}

.ft-social {
  grid-column-gap: 10px;
  display: flex;
}

.social-link {
  border: 1px solid #ffffff26;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  transition: background-color .3s, border-color .3s;
  display: flex;
}

.social-link:hover {
  background-color: #ffffff26;
  border-color: #ffffff4d;
}

.ft-btm-link {
  color: #999;
  text-decoration: none;
  transition: color .3s;
}

.ft-btm-link:hover {
  color: #fff;
}

.ft-left {
  grid-row-gap: 25px;
  flex-flow: column;
  width: 100%;
  max-width: 34%;
  display: flex;
}

.ft-right {
  grid-column-gap: 100px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.ft-title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}

.ft-text {
  color: #d9d9d9;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.footer-input {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff3;
  height: auto;
  margin-bottom: 0;
  padding: 10px 15px;
  transition: border-color .3s;
}

.footer-input:focus {
  border-style: solid;
  border-color: #fff;
}

.footer-input::placeholder {
  color: #999;
  font-size: 12px;
  line-height: 150%;
}

.ft-form {
  grid-column-gap: 15px;
  display: flex;
}

.contact-form {
  margin-bottom: 0;
}

.ft-sub-title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}

.ft-menu {
  flex-flow: column;
  display: flex;
}

.ft-link {
  color: #999;
  padding-top: 2px;
  padding-bottom: 2px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  text-decoration: none;
  transition: color .3s;
}

.ft-link:hover, .ft-link.w--current {
  color: #fff;
}

.ft-link.coordonnees {
  font-weight: 600;
}

.page-title {
  padding-top: 60px;
  padding-bottom: 60px;
}

.sub-title {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 120%;
}

.sub-title.none {
  display: block;
}

.main-title {
  color: var(--bleu);
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.main-title.center {
  text-align: center;
}

.font-title {
  color: #000;
  text-align: right;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 150%;
}

.table-text {
  text-align: right;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.table-left {
  flex-direction: column;
  display: flex;
}

.font-block {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  font-size: 18px;
}

.button-wrap {
  grid-column-gap: 20px;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.button-wrap.center {
  justify-content: center;
  align-items: center;
}

.rich-text {
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
}

.color-box {
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.body-small {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.body-large {
  font-size: 18px;
}

.sg-section {
  margin-bottom: var(--desktop);
}

.arrow {
  color: var(--blanc);
}

.primary-btn {
  grid-column-gap: 10px;
  border: 2px solid var(--bleu);
  color: var(--bleu);
  background-color: #0000;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  transition: border-color .3s, color .3s, background-color .3s;
  display: flex;
}

.primary-btn:hover {
  background-color: var(--bleu);
  color: #fff;
}

.primary-btn.fill {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.primary-btn.fill:hover {
  color: #000;
  background-color: #0000;
}

.primary-btn.buton-blanc {
  border-color: var(--blanc);
  background-color: var(--blanc);
  color: var(--bleu);
  border-radius: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.primary-btn.buton-blanc:hover {
  background-color: var(--bleu);
  color: var(--blanc);
}

.primary-btn.bouton-form-accueil {
  border-color: var(--blanc);
  color: var(--blanc);
}

.font-info {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 150%;
}

.secondary-btn {
  grid-column-gap: 4px;
  color: #000;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  display: flex;
}

.font-inner {
  grid-column-gap: 150px;
  display: flex;
}

.color-main {
  background-color: #ff6a47;
  width: 120px;
  height: 120px;
}

.color-main.bg {
  background-color: var(--bg);
}

.color-main.body-color {
  background-color: var(--body);
}

.color-main.title-color {
  background-color: var(--title);
}

.body-font {
  margin-top: 0;
  font-family: Manrope, sans-serif;
  font-size: 100px;
  font-weight: 300;
  line-height: 120%;
}

.table-row {
  grid-column-gap: 180px;
  grid-row-gap: 16px;
  border-bottom: 1px solid #0003;
  grid-template-rows: auto;
  grid-template-columns: 1fr 100px 100px;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  display: grid;
}

.title-top {
  grid-column-gap: 180px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 100px 100px;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.color-wrap {
  grid-column-gap: 20px;
  margin-top: 30px;
  display: flex;
}

.text-heading {
  margin-top: 0;
  font-size: 100px;
  font-weight: 400;
  line-height: 120%;
}

.sg-fonts, .sg-title {
  margin-bottom: var(--desktop);
}

.submit-btn {
  grid-column-gap: 10px;
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
  transition: border-color .3s, color .3s, background-color .3s;
  display: flex;
}

.submit-btn:hover {
  color: #000;
  background-color: #fff;
}

.error-data {
  margin-top: 50px;
}

.error-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 450px;
  display: flex;
}

.cs-wrap {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.cs-inside {
  text-align: center;
  width: 100%;
  max-width: 490px;
}

.cs-title {
  margin-bottom: 15px;
  font-family: Manrope, sans-serif;
  font-size: 74px;
  font-weight: 800;
  line-height: 150%;
}

.cs-text {
  margin-bottom: 50px;
}

.cs-text-title {
  margin-bottom: 4px;
}

.plain-link {
  text-decoration: none;
}

.plain-link:hover {
  text-decoration: underline;
}

.pass-body {
  background-color: var(--bg2);
}

.pass-text {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 150%;
}

.pass-field {
  margin-top: 100px;
  margin-bottom: 20px;
}

.field-label {
  margin-bottom: 8px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  display: flex;
}

.field-label.white {
  color: var(--blanc);
  font-size: 18px;
  font-weight: 600;
}

.input {
  color: var(--body);
  background-color: #0000;
  border: 0 solid #000;
  border-bottom-width: 1px;
  height: auto;
  margin-bottom: 0;
  padding: 0 0 6px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.input:focus {
  border-bottom-color: #000;
}

.input::placeholder {
  color: #999;
  font-size: 12px;
  line-height: 150%;
}

.input.white {
  border-bottom-color: var(--blanc);
  color: var(--blanc);
}

.error-message {
  color: #000;
  text-align: center;
  margin-top: 15px;
}

.search-result {
  grid-column-gap: 40px;
  align-items: flex-end;
  margin-bottom: 40px;
  display: flex;
}

.search-result-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.empty-state {
  background-color: var(--bg2);
  text-align: center;
}

.changelog-wrap {
  margin-bottom: 350px;
}

.version-info {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 90px 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.version-block {
  border: 1px solid #333;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
}

.version-name {
  color: #333;
  margin-bottom: 0;
  font-size: 26px;
  line-height: 150%;
}

.heading-block {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.version-title, .changelog-text {
  margin-bottom: 0;
}

.licensing-title {
  margin-bottom: 0;
  font-size: 20px;
}

.info-block {
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
}

.license-wrap {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.license-field {
  color: #000;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.disclaimer {
  grid-row-gap: 10px;
  border: 1px solid #0000001a;
  flex-direction: column;
  margin-bottom: 60px;
  padding: 30px;
}

.info-inner {
  padding-bottom: 30px;
}

.info-content {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.single-text {
  color: var(--bg2);
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.policy-block {
  padding-top: 50px;
}

.policy-block.first {
  padding-top: 0;
}

.policy-text {
  margin-bottom: 30px;
}

.checklist-item {
  background-image: url('../images/ic-check.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-bottom: 15px;
  padding-left: 30px;
}

.check-list {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
}

.contact {
  margin-bottom: var(--desktop);
}

.contact-wrap {
  grid-column-gap: 60px;
  align-items: center;
  display: flex;
}

.contact-img {
  background-color: var(--bg2);
  width: 100%;
  max-width: 46%;
  position: relative;
  overflow: hidden;
}

.section-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
}

.section-image.image-form {
  height: 80vh;
}

.contact-data {
  width: 100%;
  max-width: 54%;
}

.contact-data.form-accueil {
  max-width: 100%;
  margin-top: 30px;
}

.form-block {
  grid-column-gap: 32px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.success-message {
  background-color: var(--bg2);
  color: #000;
  text-align: center;
}

.textarea {
  color: var(--body);
  background-color: #0000;
  border: 0 solid #000;
  border-bottom-width: 1px;
  min-height: 120px;
  margin-bottom: 0;
  padding: 0 0 6px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.textarea:focus {
  border-bottom-color: #000;
}

.textarea::placeholder {
  color: #999;
  font-size: 12px;
  line-height: 150%;
}

.textarea.white {
  border-bottom-color: var(--blanc);
  color: var(--blanc);
  min-height: 100px;
}

.form-btm {
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.checkbox-field {
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.checkbox {
  float: none;
  border-color: #333;
  border-radius: 0;
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
}

.checkbox-label {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

.agree-link {
  text-decoration: none;
}

.agree-link:hover {
  color: #000;
  text-decoration: underline;
}

.contact-info {
  margin-bottom: var(--desktop);
}

.contact-info-wrap {
  grid-column-gap: 80px;
  align-items: center;
  display: flex;
}

.contact-image {
  background-color: var(--bg2);
  width: 100%;
  max-width: 55%;
  position: relative;
  overflow: hidden;
}

.contact-left {
  width: 100%;
  max-width: 45%;
}

.contact-top {
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.contact-left-data {
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.contact-block {
  grid-column-gap: 60px;
  border-bottom: 1px solid #0003;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  display: flex;
}

.contact-title {
  color: #000;
  width: 100%;
  max-width: 70px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.contact-right {
  width: 100%;
  max-width: 55%;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.contact-link {
  text-decoration: none;
}

.contact-link:hover {
  color: #000;
  text-decoration: underline;
}

.address {
  width: 100%;
  max-width: 250px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.social-wrap {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

.social-dot {
  background-color: #00000080;
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

.faq {
  margin-bottom: var(--desktop);
}

.section-title {
  margin-bottom: 25px;
}

.section-heading {
  color: var(--bleu);
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  line-height: 100%;
}

.faq-wrap {
  grid-column-gap: 60px;
  align-items: center;
  display: flex;
}

.faq-img {
  background-color: var(--bg2);
  width: 100%;
  max-width: 50%;
}

.faq-info {
  border-top: 1px solid #000;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
}

.faq-info.btm {
  padding-bottom: 0;
}

.que {
  grid-column-gap: 20px;
  align-items: center;
  width: 100%;
  padding: 0;
  display: flex;
}

.ans {
  background-color: #0000;
  padding-left: 44px;
  display: block;
  position: relative;
  overflow: hidden;
}

.ans-box {
  margin-top: 14px;
}

.ans-text {
  margin-bottom: 0;
}

.que-text {
  color: #000;
  font-size: 18px;
  line-height: 150%;
}

.faq-right {
  grid-row-gap: 80px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  max-width: 50%;
  display: flex;
}

.cta {
  margin-bottom: var(--desktop);
}

.cta-wrap {
  background-image: linear-gradient(#00000080, #00000080), url('../images/EN-V-MINI-STANDARD--2048x1334.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding: 80px 60px;
}

.cta-title {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.cta-text {
  color: #d9d9d9;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.cta-btn-wrap {
  margin-top: 30px;
  display: flex;
}

.cta-btn {
  grid-column-gap: 10px;
  color: #fff;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
  transition: border-color .3s, color .3s, background-color .3s;
  display: flex;
}

.cta-btn:hover {
  background-color: var(--bleu);
  color: var(--bg2);
  font-weight: 500;
}

.cta-data {
  width: 100%;
  max-width: 46%;
}

.review {
  margin-bottom: var(--desktop);
  overflow: hidden;
}

.review-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.review-block {
  grid-row-gap: 80px;
  border: 1px solid #0000001a;
  flex-flow: column;
  align-items: flex-start;
  padding: 40px;
  transition: border-color .3s;
  display: flex;
}

.review-block:hover {
  border-color: #000;
}

.review-data {
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.review-text {
  margin-bottom: 0;
}

.review-btm {
  grid-column-gap: 15px;
  align-items: center;
  display: flex;
}

.review-img {
  border-radius: 50%;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  overflow: hidden;
}

.review-image {
  width: 100%;
  min-height: 40px;
  max-height: 40px;
}

.review-name {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  display: flex;
}

.review-location {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
}

.blogs {
  margin-bottom: var(--desktop);
}

.post-list {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.post-item {
  display: flex;
}

.pagination {
  grid-column-gap: 20px;
  justify-content: flex-end;
  margin-top: 40px;
}

.blog-btn {
  grid-column-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  display: none;
}

.blog-btn.desktop {
  display: flex;
}

.blog-heading {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  display: flex;
}

.post-title {
  margin-bottom: 25px;
}

.post-tag {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 150%;
}

.post-img {
  background-color: #f8f7f6;
  width: 100%;
  overflow: hidden;
}

.post-block {
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.author-name {
  color: #333;
}

.post-image {
  object-fit: cover;
  width: 100%;
  min-height: 300px;
  max-height: 300px;
}

.post-btm {
  margin-top: 15px;
}

.post-data {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.post-author {
  grid-column-gap: 6px;
  color: #000;
  font-size: 12px;
  line-height: 150%;
  display: flex;
}

.author-title {
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.author-info {
  width: 100%;
  max-width: 65%;
  margin-top: 6px;
  margin-bottom: 0;
}

.post-head {
  background-color: #000;
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.post-wrap {
  grid-column-gap: 60px;
  align-items: stretch;
  display: flex;
}

.post-left {
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  max-width: 52%;
  display: flex;
}

.post-main-img {
  background-color: var(--bg2);
  width: 100%;
  max-width: 48%;
}

.post-main-image {
  object-fit: cover;
  width: 100%;
  min-height: 520px;
  max-height: 520px;
}

.post-main-title {
  color: #fff;
  margin-bottom: 12px;
}

.post-text {
  color: #999;
  margin-bottom: 0;
}

.post-info {
  grid-column-gap: 6px;
  margin-top: 40px;
  display: flex;
}

.blog-tag {
  grid-column-gap: 8px;
  color: #d9d9d9;
  border: 1px solid #ffffff1a;
  border-radius: 50px;
  align-items: center;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 150%;
  text-decoration: none;
  transition: border-color .3s;
  display: flex;
}

.blog-tag:hover {
  border-color: #fff;
}

.blog-author {
  grid-column-gap: 6px;
  color: #fff;
  font-size: 12px;
  line-height: 150%;
  display: flex;
}

.author {
  color: #d9d9d9;
  text-decoration: none;
}

.author:hover {
  text-decoration: underline;
}

.post-main {
  margin-bottom: var(--desktop);
}

.post-details {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.products {
  margin-bottom: var(--desktop);
}

.product-list {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.product-list.grid-3-colonne {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.product-item {
  border: 2px none var(--bleu);
  border-radius: 20px;
  margin-bottom: 25px;
  display: flex;
}

.product-block {
  width: 100%;
  text-decoration: none;
}

.product-img {
  background-color: var(--bg2);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-image {
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  min-height: 340px;
  max-height: 340px;
}

.product-image.contain-piquet, .product-image.contain {
  object-fit: contain;
}

.product-data {
  margin-top: 15px;
}

.product-data.fp-data {
  margin-top: 0;
}

.product-title {
  color: var(--title);
  margin-bottom: 2px;
}

.product-title.titre-centre {
  color: var(--blanc);
  justify-content: center;
  align-items: center;
  height: 50px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  display: flex;
}

.price-wrap {
  grid-column-gap: 10px;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 150%;
  display: flex;
}

.old-price {
  color: #999;
  text-decoration: line-through;
}

.discount {
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 38px;
  max-width: 38px;
  min-height: 38px;
  max-height: 38px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  position: absolute;
  inset: 15px 15px auto auto;
}

.products-main {
  margin-bottom: 60px;
  padding-top: 80px;
}

.product-wrap {
  grid-column-gap: 60px;
  align-items: center;
  display: flex;
}

.product-main-img {
  background-color: var(--bg2);
  width: 100%;
  max-width: 48%;
  position: relative;
}

.product-main-image {
  object-fit: cover;
  width: 100%;
  min-height: 720px;
  max-height: 720px;
}

.product-main-image.contain {
  object-fit: contain;
  min-height: auto;
}

.product-info {
  width: 100%;
  max-width: 52%;
}

.product-main-title {
  color: var(--bleu);
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
}

.product-plus {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  transition: transform .5s;
  display: flex;
  position: absolute;
  inset: auto 25px 25px auto;
}

.product-plus:hover {
  transform: rotate(90deg);
}

.product-price-box {
  grid-column-gap: 18px;
  margin-bottom: 40px;
  display: flex;
}

.sale-price {
  color: var(--bleu);
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.sale-price.old {
  color: #999;
  text-decoration: line-through;
}

.product-information {
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.product-detail {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  display: grid;
}

.product-detail.liste-produits {
  display: flex;
}

.info-title {
  color: #000;
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.warranty ul {
  margin-top: 0;
  margin-bottom: 0;
}

.warranty li {
  margin-bottom: 0;
}

.cart-btn {
  grid-column-gap: 10px;
  color: #fff;
  background-color: #000;
  background-image: url('../images/Icon-cart.svg');
  background-position: 100px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #000;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 50px 12px 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
  transition: background-position .3s, border-color .3s, color .3s, background-color .3s;
  display: flex;
}

.cart-btn:hover {
  color: #000;
  background-color: #0000;
  background-image: url('../images/b-ic-cart.svg');
}

.default-state {
  grid-column-gap: 25px;
  align-items: stretch;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
}

.quantity-field {
  color: #000;
  text-align: center;
  background-color: #0000;
  border-color: #0000001a;
  border-radius: 0;
  width: 66px;
  height: 42px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 150%;
}

.product-btm {
  grid-row-gap: 12px;
  border-top: 1px solid #0003;
  flex-flow: column;
  align-items: flex-start;
  padding-top: 20px;
  display: flex;
}

.product-details, .instagram {
  margin-bottom: var(--desktop);
}

.insta-title {
  text-align: center;
  flex-flow: column;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.insta-heading {
  margin-bottom: 8px;
}

.insta-text {
  color: #333;
  width: 100%;
  max-width: 72%;
  margin-bottom: 0;
}

.insta-wrap {
  grid-column-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.insta-img {
  background-color: var(--bg2);
  width: 100%;
  text-decoration: none;
  overflow: hidden;
}

.insta-image {
  object-fit: cover;
  width: 100%;
  min-height: 220px;
  max-height: 220px;
}

.categories {
  margin-bottom: var(--desktop);
}

.categories-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.categories-item {
  flex-flow: column;
  display: flex;
}

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

.categories-img {
  background-color: var(--bg2);
  border-radius: 20px 20px 0 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.categories-image {
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  width: 100%;
  min-height: 520px;
  max-height: 520px;
}

.categories-data {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  text-align: center;
  background-image: linear-gradient(#9990, #ffffff40);
  padding-top: 30px;
  padding-bottom: 30px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.categories-title {
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.categories-text {
  color: #fff;
  display: none;
}

.ft-item {
  display: flex;
}

.our-story {
  margin-bottom: var(--desktop);
}

.story-wrap {
  grid-column-gap: 30px;
  align-items: stretch;
  margin-bottom: 25px;
  display: flex;
}

.story-img {
  background-color: var(--bg2);
  width: 100%;
  max-width: 32%;
  position: relative;
  overflow: hidden;
}

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

.story-main-img {
  background-color: var(--bg2);
  width: 100%;
  max-width: 68%;
  position: relative;
  overflow: hidden;
}

.about-wrap {
  justify-content: space-between;
  display: flex;
}

.story-left {
  width: 100%;
  max-width: 30%;
}

.story-right {
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  max-width: 46%;
  display: flex;
  overflow: hidden;
}

.story-text {
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.story-info {
  grid-column-gap: 15px;
  align-items: flex-end;
  font-size: 14px;
  line-height: 150%;
  display: flex;
}

.about-info {
  color: var(--bleu);
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 100%;
}

.about-data {
  border-bottom: 1px solid #0000001a;
  padding-bottom: 20px;
}

.story-btm {
  grid-column-gap: 30px;
  align-items: center;
  font-size: 14px;
  line-height: 150%;
  display: flex;
}

.about-right {
  position: relative;
}

.linear {
  z-index: 1;
  background-image: linear-gradient(270deg, #fff0, #fff);
  width: 80px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.linear.right {
  background-image: linear-gradient(270deg, #fff, #fff0);
  inset: 0% 0% 0% auto;
}

.about-text {
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.our-mission {
  z-index: 9999;
  background-color: var(--bleu);
  padding-top: 100px;
  padding-bottom: 40px;
}

.our-mission.formulaire {
  background-color: var(--blanc);
}

.section-wrap {
  grid-column-gap: 60px;
  align-items: center;
  display: flex;
}

.section-wrap.reverse {
  justify-content: center;
  align-items: center;
}

.section-img {
  background-color: var(--bg2);
  border-radius: 20px;
  width: 100%;
  max-width: 52%;
  position: relative;
  overflow: hidden;
}

.section-img.first {
  order: -1;
}

.section-img.height {
  height: 100%;
}

.section-data {
  background-color: var(--bleu);
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 40px;
}

.sub-heading {
  color: var(--blanc);
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 34px;
  font-weight: 700;
}

.sub-heading.blue-header {
  color: var(--bleu);
}

.our-vision {
  background-color: var(--bleu);
  margin-bottom: 100px;
  padding-top: 40px;
  padding-bottom: 100px;
}

.innovation {
  background-color: var(--bleu);
  margin-top: 100px;
  margin-bottom: 100px;
  overflow: hidden;
}

.innovation-number {
  color: var(--blanc);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}

.innovation-title {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.innovation-text {
  color: var(--bg2);
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.innovation-wrap {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.empowerment {
  margin-bottom: var(--desktop);
}

.empowerment-img {
  background-color: var(--bg2);
  width: 100%;
  max-width: 56%;
}

.empowerment-data {
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  max-width: 44%;
  display: flex;
}

.empowerment-wrap {
  grid-column-gap: 80px;
  display: flex;
}

.empowerment-text {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 150%;
}

.empowerment-btm {
  grid-row-gap: 4px;
  color: #000;
  flex-flow: column;
  align-items: flex-start;
  font-size: 18px;
  line-height: 150%;
  display: flex;
}

.empowerment-info {
  font-size: 46px;
  font-weight: 500;
  line-height: 100%;
}

.empowerment-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.team {
  margin-bottom: var(--desktop);
}

.team-wrap {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-img {
  background-color: var(--bg2);
}

.team-image {
  object-fit: cover;
  width: 100%;
  min-height: 360px;
  max-height: 360px;
}

.team-data {
  margin-top: 12px;
  font-size: 14px;
  line-height: 150%;
}

.team-name {
  color: var(--title);
  margin-top: 2px;
  font-size: 16px;
}

.features {
  margin-bottom: var(--desktop);
}

.features-wrap {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.features-block {
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.features-icon {
  width: 70px;
  height: 70px;
}

.features-data {
  margin-top: 12px;
}

.features-title {
  color: var(--bleu);
  margin-bottom: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}

.features-text {
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.left-arrow {
  border: 2px solid var(--bleu);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  transition: background-color .3s;
  display: flex;
  position: absolute;
  inset: -15% 38px auto auto;
}

.left-arrow:hover {
  background-color: var(--blanc);
  border-width: 3px;
}

.right-arrow {
  border: 2px solid var(--bleu);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  transition: background-color .3s;
  display: flex;
  position: absolute;
  inset: -15% 0% auto auto;
}

.right-arrow:hover {
  background-color: var(--blanc);
  border-width: 3px;
}

.review-slider {
  background-color: #0000;
  height: auto;
  position: relative;
}

.slide {
  width: 100%;
  margin-right: 500px;
}

.testimonial-wrap {
  grid-column-gap: 20px;
  width: 100%;
  display: flex;
}

.testimonial-img {
  background-color: var(--bg2);
  justify-content: center;
  align-items: center;
  width: 100px;
  max-width: 50%;
  max-height: 250px;
  display: flex;
}

.testimonial-data {
  grid-row-gap: 60px;
  border: 1px solid #0000001a;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  max-width: 50%;
  padding: 30px;
  display: flex;
}

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

.testimonial-text {
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.review-mask {
  overflow: visible;
}

.banner-section {
  margin-top: 100px;
  margin-bottom: 100px;
}

.banner-wrap {
  grid-column-gap: 20px;
  border-radius: 20px;
  margin-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.banner-left {
  background-color: var(--bg2);
  border-radius: 20px;
  width: 100%;
  max-width: 35%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.banner-left._2e {
  order: 1;
}

.banner-right {
  background-color: var(--bg2);
  border-radius: 20px;
  width: 100%;
  max-width: 65%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.banner-img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 400px;
  display: block;
}

.banner-img:hover {
  opacity: .8;
}

.banner-link {
  z-index: 10;
  grid-column-gap: 4px;
  color: #fff;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto auto 30px 30px;
}

.banner-data {
  z-index: 10;
  background-image: linear-gradient(#00000059, #00000059);
  border-radius: 20px;
  padding: 10px;
  position: absolute;
  inset: 30px auto auto 30px;
}

.banner-sub-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 150%;
}

.banner-title {
  color: #fff;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.product-heading {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  display: flex;
}

.product-btn {
  grid-column-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  display: none;
}

.product-btn.desktop {
  display: flex;
}

.featured-products {
  margin-bottom: var(--desktop);
}

.fp-list {
  grid-column-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fp-block {
  background-color: var(--bg2);
  border-radius: 20px;
  width: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.fp-data {
  background-color: var(--bleu);
  text-align: center;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 20px 30px;
}

.fp-image {
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  min-height: 420px;
  max-height: 420px;
}

.fp-image.contain {
  object-fit: contain;
}

.fp-price-wrap {
  grid-column-gap: 10px;
  justify-content: center;
  font-size: 14px;
  line-height: 150%;
  display: flex;
}

.fp-title {
  color: var(--blanc);
  margin-bottom: 2px;
  font-weight: 600;
}

.fp-title.titre-centre {
  justify-content: center;
  align-items: center;
  height: 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  display: flex;
}

.appraisal {
  margin-bottom: var(--desktop);
  background-color: var(--bleu);
}

.appraisal-wrap {
  grid-column-gap: 80px;
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.appraisal-left {
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  max-width: 48%;
  display: flex;
}

.appraisal-img {
  background-color: var(--bg2);
  border-radius: 20px;
  order: -1;
  width: 100%;
  max-width: 52%;
  position: relative;
  overflow: hidden;
}

.appraisal-img.taille-reduit {
  height: auto;
  max-height: 75vh;
}

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

.appraisal-image.taille-reduit {
  object-position: 50% 0%;
  height: 100%;
}

.appraisal-title {
  color: #fff;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.appraisal-text {
  color: var(--blanc);
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.appraisal-data {
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.appraisal-info {
  border-bottom: 1px solid #fff3;
  width: 100%;
  padding-bottom: 15px;
}

.appraisal-toggle {
  grid-column-gap: 10px;
  color: #fff;
  padding: 0;
  font-size: 12px;
  line-height: 150%;
  display: flex;
}

.toggle-text {
  color: #fff;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.appraisal-list {
  background-color: #0000;
  padding-left: 28px;
  display: block;
  position: relative;
  overflow: hidden;
}

.appraisal-box {
  margin-top: 10px;
}

.appraisal-list-text {
  color: var(--blanc);
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.hero {
  margin-bottom: var(--desktop);
  background-color: var(--bg);
}

.hero-wrap {
  grid-column-gap: 60px;
  display: flex;
}

.hero-data {
  grid-row-gap: 80px;
  flex-flow: column;
  width: 100%;
  max-width: 56%;
  padding-top: 100px;
  padding-bottom: 40px;
  display: flex;
}

.hero-right {
  background-color: var(--bg);
  background-image: linear-gradient(180deg, var(--bleu) 57%, var(--bg)), url('../images/hero-gradient.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 40%;
  padding-top: 80px;
  padding-bottom: 60px;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.hero-title {
  color: #fff;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 100%;
}

.hero-text {
  color: #fff;
  width: 100%;
  max-width: 80%;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.hero-btn {
  grid-column-gap: 10px;
  color: #fff;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 24px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
  text-decoration: none;
  transition: border-color .3s, color .3s, background-color .3s;
  display: flex;
}

.hero-btn:hover {
  color: var(--bleu);
  background-color: #fff;
  font-weight: 600;
}

.hero-btn.navbar-buton {
  border-color: var(--blanc);
  background-color: var(--bg2);
  color: var(--bleu);
}

.hero-btn.navbar-buton:hover {
  background-color: var(--bleu);
  color: var(--blanc);
}

.hero-btm {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.hero-link {
  grid-column-gap: 4px;
  color: #999;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  display: flex;
}

.hero-img {
  background-color: var(--bg2);
  width: 100%;
  max-width: 42%;
  position: relative;
  overflow: hidden;
}

.hero-image {
  background-color: var(--bleu);
  object-fit: cover;
  width: 100%;
  min-height: 220px;
  max-height: 220px;
}

.hero-image.contain {
  object-fit: contain;
}

.hero-watch {
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  height: 70%;
  position: relative;
}

.hero-tag {
  color: #fff;
  text-align: center;
  border: 2px solid #fff3;
  border-radius: 150px;
  padding: 14px 30px;
  font-size: 12px;
  line-height: 120%;
  text-decoration: none;
  transition: background-color .3s, border-color .3s;
}

.hero-tag:hover {
  background-color: #fff3;
  border-color: #ffffff4d;
}

.hero-tag.hover {
  background-color: var(--bleu);
  justify-content: center;
  align-items: center;
  height: 70px;
  display: flex;
}

.hero-tag.hover:hover {
  border-width: 2px;
  border-color: var(--bleu);
  background-color: var(--blanc);
  color: var(--bleu);
}

.hero-tag.hover.w--current {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-tag.hover.w--current:lang(en) {
  border-width: 2px;
  border-color: var(--bleu);
  background-color: var(--blanc);
  color: var(--bleu);
  font-weight: 600;
}

.hero-tag-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 80%;
  display: flex;
  position: relative;
}

.hero-wrapper {
  background-color: var(--bleu);
  display: flex;
  position: relative;
}

.collection-list-wrapper {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.collection-list-wrapper.hide {
  display: none;
}

.checkout-button {
  background-color: #000;
  border: 1px solid #000;
  border-radius: 0;
  margin-bottom: 0;
  padding: 12px 24px;
  font-size: 12px;
  line-height: 130%;
  transition: background-color .3s, color .3s;
}

.checkout-button:hover {
  color: #000;
  background-color: #0000;
}

.checkout-form {
  background-color: #0000;
  padding: 0;
}

.block-header {
  background-color: #0000;
}

.block-header.bg {
  background-color: var(--bg2);
}

.block-content {
  background-color: #0000;
}

.block-content.bg {
  background-color: var(--bg2);
}

.default-input:focus, .default-input.-wfp-focus {
  border-color: #ddd;
}

.cart-title {
  margin-bottom: 0;
}

.order-confirmation {
  background-color: #0000;
  padding: 0;
}

.login-form {
  background-color: var(--bg2);
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
}

.user-field {
  margin-bottom: 22px;
}

.success-state {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.error-state {
  text-align: center;
  background-color: #fdd;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.sign-up-verification {
  text-align: center;
}

.agreement-checkbox {
  margin-bottom: 18px;
}

.update-text {
  text-align: center;
  margin-bottom: 30px;
}

.access-wrap {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-left: 25px;
  padding-right: 25px;
}

.user-account {
  background-color: #0000;
  min-height: auto;
  padding: 0;
}

.user-btns {
  grid-column-gap: 20px;
  margin-top: 40px;
  display: flex;
}

.on-scroll {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.on-scroll.bg {
  background-color: var(--bleu);
}

.hero-btn-wrap {
  grid-column-gap: 20px;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.order-item {
  grid-column-gap: 20px;
  margin-bottom: 40px;
}

.item-info {
  margin-left: 0;
  margin-right: 0;
}

.purchase-badge {
  z-index: 9999;
  grid-column-gap: 6px;
  color: #000;
  background-color: #fff;
  border-radius: 2px;
  justify-content: flex-start;
  align-items: center;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 1px 4px #0000001a, 0 0 0 1px #0000001a;
}

.image {
  object-fit: contain;
  width: 80%;
  height: 60px;
}

.text-block {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.image-2 {
  height: 60px;
}

.none {
  display: none;
}

.text-block-2 {
  font-size: 14px;
  font-weight: 300;
}

.text-block-3 {
  color: var(--blanc);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.a-propos {
  background-image: linear-gradient(45deg, var(--bleu) 26%, white);
  margin-bottom: 100px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-block-4 {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.text-block-5 {
  color: var(--bleu);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.text-framd {
  color: var(--bleu);
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.tabs-menu {
  flex-flow: column;
  max-width: 250px;
  display: flex;
}

.tabs-content {
  display: flex;
}

.tabs-menu-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin-bottom: 60px;
  display: grid;
}

.text-block-6 {
  font-size: 13px;
  font-weight: 600;
}

.text-block-6:hover {
  font-weight: 600;
}

.tabs {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
}

.text-block-7, .text-block-8, .text-block-9 {
  font-size: 13px;
  font-weight: 600;
}

.text-block-10 {
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.text-block-11 {
  font-size: 13px;
  font-weight: 600;
}

.text-block-11.texte-centre {
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.text-centre {
  justify-content: center;
  align-self: center;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.image-slider {
  object-fit: cover;
  width: 100%;
  height: 90vh;
}

.slide-2 {
  background-color: var(--bleu);
}

.slider {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90vh;
  display: flex;
}

.section {
  margin-top: 0;
  margin-bottom: 100px;
  padding-top: 100px;
}

.div-block {
  justify-content: center;
  align-items: center;
  width: 90%;
  display: flex;
}

.section-heading-2 {
  color: #015289;
  text-align: center;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.link-block {
  margin-bottom: 10px;
}

.link-block.w--current {
  margin-bottom: 20px;
}

.heading {
  color: var(--bleu);
}

.container-2 {
  max-width: none;
}

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

.heading-2 {
  color: var(--bleu);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.section-2 {
  margin-bottom: 40px;
}

.text-block-12 {
  font-size: 16px;
  font-weight: 600;
}

.image-3 {
  height: 60px;
}

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

.product-main-img-2 {
  background-color: #f8f7f6;
  width: 100%;
  max-width: 48%;
  position: relative;
}

.cta-2 {
  margin-bottom: 150px;
}

.heading-3 {
  color: #015289;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.container-3 {
  width: 100%;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.cta-btn-2 {
  grid-column-gap: 10px;
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
  transition: border-color .3s, color .3s, background-color .3s;
  display: flex;
}

.cta-btn-2:hover {
  color: #f8f7f6;
  background-color: #015289;
  font-weight: 500;
}

.product-main-title-2 {
  color: #015289;
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
}

.section-3 {
  margin-bottom: 40px;
}

.footer-wrap-2 {
  background-color: #000;
}

.hero-btn-2 {
  grid-column-gap: 10px;
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
  transition: border-color .3s, color .3s, background-color .3s;
  display: flex;
}

.hero-btn-2:hover {
  color: #015289;
  background-color: #fff;
  font-weight: 600;
}

.hero-btn-2.navbar-buton {
  color: #015289;
  background-color: #f8f7f6;
  border-color: #015289;
}

.image-4 {
  object-fit: contain;
  width: 80%;
  height: 60px;
}

.text-block-13 {
  font-size: 14px;
}

.sale-price-2 {
  color: #015289;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.sale-price-2.old {
  color: #999;
  text-decoration: line-through;
}

.section-heading-3 {
  color: #015289;
  text-align: center;
  margin-bottom: 0;
}

.empty-state-2 {
  text-align: center;
  background-color: #f8f7f6;
}

.section-4 {
  margin-bottom: 40px;
}

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

.container-4 {
  width: 100%;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.product-main-title-3 {
  color: #015289;
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
}

.section-5 {
  margin-bottom: 40px;
}

.container-5 {
  max-width: none;
}

.container-6 {
  width: 100%;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.product-main-title-4 {
  color: #015289;
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
}

.container-7 {
  width: 100%;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.button {
  background-color: var(--bleu);
  border-radius: 20px;
  padding: 12px 24px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.button:hover {
  border: 1px solid var(--bleu);
  background-color: var(--blanc);
  color: var(--bleu);
}

.heading-4, .titre-spec {
  color: var(--bleu);
}

.list {
  margin-top: 0;
  margin-bottom: 0;
}

.list-item, .list-item-2 {
  margin-bottom: 5px;
}

.popin_overlay {
  z-index: 9999999;
  background-color: #000000a6;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.popin_component {
  background-color: var(--bleu);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 65%;
  margin-top: 0;
  padding: 20px;
  display: flex;
  position: relative;
}

.popin_close {
  position: absolute;
  inset: 1% 1% auto auto;
}

.icon-embed-xxsmall {
  color: var(--blanc);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.container-8 {
  justify-content: center;
  align-items: center;
  max-width: none;
  display: flex;
}

.form-block-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.select-field {
  background-color: var(--bleu);
  color: var(--blanc);
}

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

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

.achat-location {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-left: 20px;
  display: grid;
}

.champs-formulaire {
  padding-top: 20px;
  padding-right: 20px;
}

.form2 {
  height: 50vh;
  overflow: auto;
}

.text-field, .text-field-2, .text-field-3, .text-field-4 {
  color: var(--bleu);
  font-weight: 500;
}

.phone {
  color: var(--blanc);
  font-weight: 800;
}

.text-block-14, .text-block-15 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.text-block-16, .paragraph {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.list-item-3 {
  font-family: Montserrat, sans-serif;
}

.text-block-17, .paragraph-2 {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.categorie-titre {
  background-color: var(--bleu);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.link {
  color: var(--blanc);
}

.div-buton-en-ligne {
  display: none;
}

.overlay {
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(#0066ff80, #0066ff80);
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  left: 0;
  right: 0;
}

.overlay:hover {
  opacity: 1;
}

.real-lb {
  width: 100%;
  height: 100%;
}

.real-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

@media screen and (min-width: 1440px) {
  .popin_component {
    width: 40%;
  }
}

@media screen and (min-width: 1920px) {
  .slide {
    margin-right: 500px;
  }

  .appraisal-image.taille-reduit {
    height: 65vh;
  }

  .hero {
    height: 100vh;
  }

  .hero-wrapper {
    height: 100%;
  }

  .popin_component {
    width: 30%;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .container {
    max-width: 100%;
  }

  .nav-menu {
    background-color: #fff;
    border-bottom: 1px solid #0000001a;
    width: 100%;
    padding: 20px;
  }

  .nav-menu.bg {
    background-color: var(--bleu);
    background-color: #015289;
    border-bottom-color: #ffffff1a;
    display: flex;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #0000;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .utility-page-content {
    padding: 40px;
  }

  .nav-link {
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-link.white {
    justify-content: flex-start;
    align-items: center;
  }

  .search-icon {
    display: flex;
  }

  .nav-search {
    max-width: none;
    margin-top: 10px;
    display: flex;
    position: static;
  }

  .searchbar.home {
    color: #fff;
    background-color: #0000;
    background-image: url('../images/w-ic-search.svg');
    border-color: #ffffff26;
  }

  .searchbar.home:focus {
    border-color: #ffffff26;
  }

  .nav-right {
    justify-content: center;
    align-self: center;
    align-items: center;
    width: auto;
    max-width: none;
    display: block;
    position: static;
  }

  .nav-searchbar {
    display: none;
  }

  .nav-menu-wrap {
    position: static;
    left: 0%;
    transform: none;
  }

  .top-line {
    background-color: var(--blanc);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .top-line.white {
    background-color: #fff;
  }

  .center-line {
    background-color: var(--blanc);
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .center-line.white {
    background-color: #fff;
  }

  .btm-line {
    background-color: var(--blanc);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .btm-line.white {
    background-color: #fff;
  }

  .page-data {
    margin-bottom: var(--tablet);
  }

  .ft-logo-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row dense;
    justify-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
    display: grid;
  }

  .footer-top {
    grid-row-gap: 40px;
    flex-flow: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ft-left {
    max-width: 60%;
  }

  .ft-right {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .page-title {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .rich-text {
    max-width: 100%;
  }

  .sg-section {
    margin-bottom: var(--tablet);
  }

  .font-inner {
    grid-column-gap: 80px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .table-row, .title-top {
    grid-column-gap: 20px;
  }

  .sg-fonts, .sg-title {
    margin-bottom: var(--tablet);
  }

  .cs-title {
    font-size: 64px;
    line-height: 140%;
  }

  .pass-field {
    margin-top: 80px;
  }

  .info-block {
    flex-flow: column wrap;
  }

  .disclaimer {
    margin-bottom: 40px;
  }

  .info-inner {
    padding-bottom: 40px;
  }

  .contact {
    margin-bottom: var(--tablet);
  }

  .contact-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 25px;
    flex-flow: column;
  }

  .contact-img {
    max-width: 100%;
  }

  .section-image.image-form {
    height: auto;
  }

  .contact-data {
    max-width: 100%;
  }

  .contact-info {
    margin-bottom: var(--tablet);
  }

  .contact-info-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 25px;
    flex-flow: column-reverse;
  }

  .contact-image, .contact-left {
    max-width: 100%;
  }

  .faq {
    margin-bottom: var(--tablet);
  }

  .faq-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .faq-img, .faq-right {
    max-width: 100%;
  }

  .cta {
    margin-bottom: var(--tablet);
  }

  .cta-wrap {
    padding: 60px 40px;
  }

  .cta-data {
    max-width: 55%;
  }

  .review {
    margin-bottom: var(--tablet);
  }

  .review-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .review-block {
    grid-row-gap: 60px;
    flex-flow: column;
    padding: 25px;
  }

  .review-data {
    justify-content: space-between;
    height: 100%;
  }

  .blogs {
    margin-bottom: var(--tablet);
  }

  .post-list {
    grid-column-gap: 25px;
    grid-template-columns: 1fr 1fr;
  }

  .post-title {
    margin-bottom: 20px;
  }

  .post-tag {
    margin-bottom: 6px;
  }

  .post-image {
    min-height: 260px;
    max-height: 260px;
  }

  .author-info {
    max-width: 100%;
  }

  .post-head {
    margin-bottom: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .post-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .post-left {
    grid-row-gap: 40px;
    max-width: 100%;
  }

  .post-main-img {
    max-width: 100%;
  }

  .post-main-image {
    min-height: 500px;
    max-height: 500px;
  }

  .post-main {
    margin-bottom: var(--tablet);
  }

  .post-details {
    max-width: 100%;
  }

  .products {
    margin-bottom: var(--tablet);
  }

  .product-list {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .product-list.grid-3-colonne {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .product-image {
    min-height: 280px;
    max-height: 280px;
  }

  .product-data {
    margin-top: 12px;
  }

  .products-main {
    padding-top: 60px;
  }

  .product-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex-flow: column;
    align-items: flex-start;
  }

  .product-main-img {
    max-width: 100%;
  }

  .product-main-image {
    object-fit: contain;
    min-height: 450px;
    max-height: 450px;
  }

  .product-info {
    max-width: 100%;
  }

  .product-main-title {
    font-size: 44px;
  }

  .sale-price {
    font-size: 26px;
  }

  .default-state {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .product-details, .instagram {
    margin-bottom: var(--tablet);
  }

  .insta-heading {
    font-size: 26px;
  }

  .insta-text {
    max-width: 100%;
  }

  .insta-wrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .insta-image {
    min-height: 190px;
    max-height: 190px;
  }

  .categories {
    margin-bottom: var(--tablet);
  }

  .categories-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .categories-image {
    min-height: 440px;
    max-height: 440px;
  }

  .categories-data {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .categories-title {
    margin-bottom: 4px;
    font-size: 20px;
  }

  .categories-text {
    font-size: 14px;
    line-height: 140%;
  }

  .our-story {
    margin-bottom: var(--tablet);
  }

  .story-wrap {
    grid-column-gap: 15px;
  }

  .about-wrap {
    grid-row-gap: 25px;
    flex-flow: column;
  }

  .story-left {
    grid-column-gap: 38px;
    flex-flow: row-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    display: flex;
  }

  .story-right {
    max-width: 68%;
    margin-left: auto;
  }

  .story-info {
    width: 100%;
    max-width: 28%;
  }

  .about-text {
    width: 100%;
    max-width: 68%;
    margin-bottom: 0;
  }

  .our-mission {
    margin-bottom: var(--tablet);
  }

  .section-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 25px;
    flex-flow: column;
  }

  .section-wrap.reverse {
    grid-column-gap: 0px;
    grid-row-gap: 25px;
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: stretch;
  }

  .section-img, .section-data {
    max-width: 100%;
  }

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

  .our-vision {
    margin-bottom: var(--tablet);
  }

  .innovation {
    margin-bottom: var(--tablet);
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .innovation-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .empowerment {
    margin-bottom: var(--tablet);
  }

  .empowerment-img {
    max-width: 100%;
  }

  .empowerment-data {
    grid-row-gap: 50px;
    max-width: 100%;
  }

  .empowerment-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 25px;
    flex-flow: column-reverse;
  }

  .empowerment-btm {
    grid-row-gap: 2px;
  }

  .empowerment-info {
    font-size: 42px;
  }

  .team {
    margin-bottom: var(--tablet);
  }

  .team-wrap {
    grid-column-gap: 15px;
  }

  .team-image {
    min-height: 210px;
    max-height: 210px;
  }

  .team-data {
    margin-top: 8px;
    font-size: 12px;
  }

  .features {
    margin-bottom: var(--tablet);
  }

  .features-wrap {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .features-data {
    margin-top: 10px;
  }

  .slide {
    margin-right: 0;
  }

  .testimonial-wrap {
    grid-column-gap: 12px;
  }

  .testimonial-data {
    padding: 20px;
  }

  .testimonial-image {
    min-height: 0;
    max-height: 370px;
  }

  .review-mask {
    overflow: hidden;
  }

  .banner-section {
    margin-bottom: var(--tablet);
  }

  .banner-wrap {
    grid-column-gap: 15px;
  }

  .banner-link {
    bottom: 20px;
    left: 20px;
  }

  .banner-data {
    top: 20px;
    left: 20px;
  }

  .banner-sub-title {
    font-size: 10px;
  }

  .banner-title {
    font-size: 20px;
    line-height: 130%;
  }

  .featured-products {
    margin-bottom: var(--tablet);
  }

  .fp-list {
    grid-column-gap: 12px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .fp-data {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .fp-image {
    min-height: 280px;
    max-height: 280px;
  }

  .fp-title {
    font-size: 14px;
  }

  .appraisal {
    margin-bottom: var(--tablet);
  }

  .appraisal-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 25px;
    flex-flow: column-reverse;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .appraisal-left, .appraisal-img {
    max-width: 100%;
  }

  .appraisal-title {
    margin-bottom: 10px;
  }

  .appraisal-box {
    margin-top: 8px;
  }

  .hero {
    margin-bottom: var(--tablet);
  }

  .hero-wrap {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .hero-data {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-right {
    grid-row-gap: 30px;
    max-width: 45%;
    padding-top: 40px;
    padding-bottom: 40px;
    position: static;
  }

  .hero-title {
    margin-bottom: 20px;
    font-size: 50px;
    line-height: 100%;
  }

  .hero-text {
    max-width: 90%;
    font-size: 14px;
  }

  .hero-btn.navbar-buton {
    justify-content: center;
    align-self: center;
    align-items: center;
    display: none;
  }

  .hero-btn.navbar-buton.taille-dropdown {
    width: 100px;
    margin-top: 10px;
    display: none;
  }

  .hero-btn.navbar-buton.none {
    display: none;
  }

  .hero-btn.navbar-buton.buton-mobile {
    display: block;
  }

  .hero-btm {
    display: none;
  }

  .hero-watch {
    height: 70%;
  }

  .hero-tag {
    padding: 10px 20px;
  }

  .hero-tag-wrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    max-width: 90%;
  }

  .hero-wrapper {
    position: static;
  }

  .tabs-menu-2 {
    width: 70%;
  }

  .product-main-img-2 {
    max-width: 55%;
  }

  .cta-2 {
    margin-bottom: 100px;
  }

  .center-line-2 {
    background-color: #fff;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .container-3 {
    max-width: 100%;
  }

  .product-main-title-2 {
    font-size: 44px;
  }

  .btm-line-2 {
    background-color: #fff;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .hero-btn-2.navbar-buton {
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
  }

  .top-line-2 {
    background-color: #fff;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .sale-price-2 {
    font-size: 26px;
  }

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

  .product-main-title-3 {
    font-size: 44px;
  }

  .container-6 {
    max-width: 100%;
  }

  .product-main-title-4 {
    font-size: 44px;
  }

  .container-7 {
    max-width: 100%;
  }

  .popin_component {
    width: 80%;
    max-width: 80%;
  }

  .div-block-9 {
    width: 30%;
  }

  .div-buton-en-ligne {
    width: 30%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
  }
}

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

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 26px;
  }

  ul, ol {
    padding-left: 25px;
  }

  li {
    margin-bottom: 10px;
  }

  blockquote {
    padding: 20px;
  }

  .container {
    max-width: 100%;
  }

  .utility-page-content {
    max-width: 90%;
    padding: 30px;
  }

  .searchbar.home {
    color: #fff;
  }

  .searchbar.home:focus {
    border-color: #ffffff26;
  }

  .page-data {
    margin-bottom: var(--landscape-mobile);
  }

  .ft-logo-wrap {
    grid-template-rows: auto auto auto auto;
  }

  .footer-btm {
    grid-row-gap: 16px;
    flex-flow: column-reverse;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .ft-left {
    max-width: 75%;
  }

  .ft-right {
    grid-column-gap: 60px;
  }

  .page-title {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .font-title {
    font-size: 16px;
  }

  .table-text {
    font-size: 14px;
  }

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

  .sg-section {
    margin-bottom: var(--landscape-mobile);
  }

  .font-inner {
    flex-wrap: wrap;
  }

  .color-main {
    width: 80px;
    height: 80px;
  }

  .body-font, .text-heading {
    font-size: 60px;
  }

  .sg-fonts, .sg-title {
    margin-bottom: var(--landscape-mobile);
  }

  .error-wrap {
    max-width: 90%;
  }

  .cs-title {
    font-size: 56px;
  }

  .pass-field {
    margin-top: 60px;
  }

  .version-info {
    grid-column-gap: 15px;
    grid-template-columns: 60px 1fr;
  }

  .version-block {
    width: 60px;
    height: 60px;
  }

  .version-name {
    font-size: 14px;
  }

  .info-block {
    grid-row-gap: 50px;
  }

  .license-field {
    font-size: 16px;
  }

  .disclaimer {
    padding: 20px;
  }

  .info-inner {
    padding-bottom: 40px;
  }

  .policy-block {
    padding-top: 40px;
  }

  .contact {
    margin-bottom: var(--landscape-mobile);
  }

  .section-image.image-form {
    height: auto;
  }

  .form-block {
    grid-row-gap: 10px;
  }

  .textarea.white {
    min-height: 80px;
  }

  .form-btm {
    margin-top: 10px;
  }

  .contact-info {
    margin-bottom: var(--landscape-mobile);
  }

  .contact-top {
    margin-bottom: 25px;
  }

  .contact-block {
    grid-column-gap: 40px;
  }

  .contact-right {
    max-width: 70%;
  }

  .faq {
    margin-bottom: var(--landscape-mobile);
  }

  .faq-info {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ans {
    padding-left: 0;
  }

  .ans-box {
    margin-top: 10px;
  }

  .ans-text {
    font-size: 14px;
  }

  .que-text {
    font-size: 16px;
  }

  .faq-right {
    grid-row-gap: 40px;
  }

  .cta {
    margin-bottom: var(--landscape-mobile);
  }

  .cta-wrap {
    background-position: 40%;
    background-size: auto;
    padding: 40px 30px;
  }

  .cta-title {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 150%;
  }

  .cta-data {
    max-width: 70%;
  }

  .review {
    margin-bottom: var(--landscape-mobile);
  }

  .review-wrap {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .review-block {
    grid-row-gap: 40px;
  }

  .review-data {
    grid-row-gap: 30px;
  }

  .blogs {
    margin-bottom: var(--landscape-mobile);
  }

  .post-list {
    grid-column-gap: 20px;
  }

  .post-title {
    font-size: 20px;
  }

  .post-block {
    flex-flow: column;
    display: flex;
  }

  .post-image {
    min-height: 190px;
    max-height: 190px;
  }

  .post-btm {
    flex-flow: column;
    display: flex;
  }

  .author-info {
    font-size: 14px;
    line-height: 150%;
  }

  .post-head {
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .post-left {
    grid-row-gap: 25px;
  }

  .post-main-image {
    min-height: 400px;
    max-height: 400px;
  }

  .post-info {
    margin-top: 25px;
  }

  .post-main, .products {
    margin-bottom: var(--landscape-mobile);
  }

  .product-list, .product-list.grid-3-colonne {
    grid-template-columns: 1fr 1fr;
  }

  .product-image {
    min-height: 310px;
    max-height: 310px;
  }

  .product-data {
    margin-top: 10px;
  }

  .discount {
    top: 12px;
    right: 12px;
  }

  .products-main {
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .product-main-img {
    max-width: 100%;
  }

  .product-main-image {
    min-height: 580px;
    max-height: 580px;
  }

  .product-main-title {
    margin-bottom: 8px;
    font-size: 42px;
  }

  .sale-price {
    font-size: 22px;
  }

  .product-details, .instagram {
    margin-bottom: var(--landscape-mobile);
  }

  .insta-title {
    margin-bottom: 25px;
  }

  .insta-heading {
    font-size: 22px;
    line-height: 130%;
  }

  .insta-text {
    font-size: 14px;
    line-height: 150%;
  }

  .insta-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .insta-image {
    min-height: 170px;
    max-height: 170px;
  }

  .categories {
    margin-bottom: var(--landscape-mobile);
  }

  .categories-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .categories-image {
    min-height: 350px;
    max-height: 350px;
  }

  .categories-data {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .categories-title {
    font-size: 18px;
  }

  .our-story {
    margin-bottom: var(--landscape-mobile);
  }

  .story-img {
    display: none;
  }

  .story-main-img {
    max-width: 100%;
  }

  .about-wrap {
    grid-row-gap: 15px;
  }

  .story-left {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
  }

  .story-right {
    max-width: 100%;
  }

  .story-text {
    margin-bottom: 25px;
  }

  .story-info {
    grid-column-gap: 10px;
    max-width: 40%;
  }

  .about-info {
    font-size: 42px;
  }

  .about-text {
    max-width: 100%;
  }

  .our-mission {
    margin-bottom: var(--landscape-mobile);
  }

  .section-wrap, .section-wrap.reverse {
    grid-row-gap: 15px;
  }

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

  .sub-heading {
    margin-bottom: 4px;
  }

  .our-vision, .innovation {
    margin-bottom: var(--landscape-mobile);
  }

  .innovation-text {
    font-size: 12px;
  }

  .innovation-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .innovation-img {
    display: none;
  }

  .empowerment {
    margin-bottom: var(--landscape-mobile);
  }

  .empowerment-data {
    grid-row-gap: 30px;
  }

  .empowerment-btm {
    font-size: 16px;
    line-height: 150%;
  }

  .empowerment-info {
    font-size: 36px;
  }

  .team {
    margin-bottom: var(--landscape-mobile);
  }

  .team-wrap {
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .team-data {
    margin-top: 6px;
  }

  .team-name {
    font-size: 14px;
  }

  .features {
    margin-bottom: var(--landscape-mobile);
  }

  .features-wrap {
    grid-column-gap: 40px;
  }

  .features-icon {
    width: 60px;
    height: 60px;
  }

  .features-title {
    margin-bottom: 4px;
  }

  .features-text {
    font-size: 12px;
    line-height: 150%;
  }

  .left-arrow {
    top: -9%;
    right: 35px;
  }

  .right-arrow {
    top: -9%;
  }

  .testimonial-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .testimonial-img {
    max-width: 100%;
  }

  .testimonial-data {
    grid-row-gap: 40px;
    max-width: 100%;
  }

  .testimonial-image {
    min-height: 0;
    max-height: 360px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 150%;
  }

  .banner-section {
    margin-bottom: var(--landscape-mobile);
  }

  .banner-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 15px;
    flex-flow: column;
  }

  .banner-left, .banner-right {
    max-width: 100%;
  }

  .banner-img {
    height: auto;
    min-height: 280px;
    max-height: 280px;
  }

  .featured-products {
    margin-bottom: var(--landscape-mobile);
  }

  .fp-list {
    grid-row-gap: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .fp-image {
    min-height: 310px;
    max-height: 310px;
  }

  .appraisal {
    margin-bottom: var(--landscape-mobile);
  }

  .appraisal-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .appraisal-left {
    grid-row-gap: 40px;
  }

  .appraisal-title {
    margin-bottom: 6px;
  }

  .appraisal-list {
    padding-left: 0;
  }

  .appraisal-list-text {
    font-size: 14px;
    line-height: 150%;
  }

  .hero {
    margin-bottom: var(--landscape-mobile);
  }

  .hero-wrap {
    grid-column-gap: 0px;
  }

  .hero-data {
    grid-row-gap: 0px;
  }

  .hero-right {
    max-width: 100%;
  }

  .hero-btn.navbar-buton {
    text-align: center;
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-btn.navbar-buton.taille-dropdown {
    display: none;
  }

  .hero-wrapper {
    grid-row-gap: 40px;
    flex-flow: column;
    padding-top: 40px;
  }

  .login-form {
    max-width: 90%;
  }

  .tabs-menu-2 {
    width: 90%;
  }

  .product-main-img-2 {
    max-width: 100%;
  }

  .cta-2 {
    margin-bottom: 80px;
  }

  .container-3 {
    max-width: 100%;
  }

  .product-main-title-2 {
    margin-bottom: 8px;
    font-size: 42px;
  }

  .hero-btn-2.navbar-buton {
    text-align: center;
    margin-left: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .sale-price-2 {
    font-size: 22px;
  }

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

  .product-main-title-3 {
    margin-bottom: 8px;
    font-size: 42px;
  }

  .container-6 {
    max-width: 100%;
  }

  .product-main-title-4 {
    margin-bottom: 8px;
    font-size: 42px;
  }

  .container-7 {
    max-width: 100%;
  }

  .select-field {
    color: var(--blanc);
  }

  .div-buton-en-ligne {
    width: 40%;
    display: flex;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h4 {
    font-size: 20px;
  }

  .utility-page-content {
    padding: 30px 20px;
  }

  .nav-right {
    grid-column-gap: 15px;
  }

  .cart-icon {
    display: none;
  }

  .page-data {
    margin-bottom: var(--potrait-mobile);
  }

  .ft-logo-wrap {
    grid-column-gap: 25px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ft-logo {
    width: 100px;
    height: 60px;
  }

  .footer-btm {
    text-align: center;
  }

  .ft-left {
    grid-row-gap: 20px;
    max-width: 100%;
  }

  .ft-right {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

  .button-wrap {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .color-box {
    grid-row-gap: 5px;
  }

  .sg-section {
    margin-bottom: var(--potrait-mobile);
  }

  .primary-btn {
    padding-left: 22px;
    padding-right: 22px;
  }

  .font-inner {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .body-font {
    font-size: 70px;
  }

  .table-row {
    grid-column-gap: 0px;
    grid-row-gap: 5px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
  }

  .title-top {
    display: none;
  }

  .color-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .text-heading {
    font-size: 70px;
  }

  .sg-fonts, .sg-title {
    margin-bottom: var(--potrait-mobile);
  }

  .submit-btn {
    padding: 10px 22px;
  }

  .error-data {
    margin-top: 30px;
  }

  .cs-title {
    margin-bottom: 10px;
    font-size: 42px;
  }

  .cs-text {
    margin-bottom: 40px;
  }

  .pass-field {
    margin-top: 50px;
  }

  .field-label.white {
    font-size: 15px;
  }

  .version-info {
    align-items: start;
  }

  .changelog-text {
    font-size: 14px;
  }

  .info-block {
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .license-field {
    margin-bottom: 0;
  }

  .disclaimer {
    padding: 15px;
    font-size: 14px;
  }

  .single-text {
    font-size: 14px;
  }

  .contact {
    margin-bottom: var(--potrait-mobile);
  }

  .section-image.image-form {
    height: auto;
  }

  .contact-data.form-accueil {
    margin-top: 20px;
  }

  .form-block {
    grid-column-gap: 0px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .form-btm {
    grid-column-gap: 40px;
  }

  .contact-info {
    margin-bottom: var(--potrait-mobile);
  }

  .contact-left-data {
    grid-row-gap: 15px;
  }

  .contact-block {
    padding-bottom: 15px;
  }

  .address {
    max-width: 225px;
  }

  .social-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .social-dot {
    display: none;
  }

  .faq {
    margin-bottom: var(--potrait-mobile);
  }

  .faq-wrap {
    grid-row-gap: 25px;
  }

  .que {
    grid-column-gap: 10px;
  }

  .que-text {
    white-space: normal;
    word-break: normal;
  }

  .cta {
    margin-bottom: var(--potrait-mobile);
  }

  .cta-wrap {
    background-image: linear-gradient(#000000b3, #000000b3), url('../images/FLEX-OPAQUE-GAMME-COMPLET-1815x2048.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding: 30px 15px;
  }

  .cta-title {
    font-size: 22px;
    line-height: 130%;
  }

  .cta-text {
    font-size: 12px;
  }

  .cta-btn-wrap {
    margin-top: 25px;
  }

  .cta-btn {
    padding: 8px 18px;
    font-size: 10px;
  }

  .cta-data {
    max-width: 100%;
  }

  .review {
    margin-bottom: var(--potrait-mobile);
  }

  .review-block {
    padding: 20px;
  }

  .review-btm {
    grid-column-gap: 10px;
  }

  .blogs {
    margin-bottom: var(--potrait-mobile);
  }

  .post-list {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .blog-btn {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-end;
    display: flex;
  }

  .blog-btn.desktop {
    display: none;
  }

  .post-title {
    margin-bottom: 15px;
  }

  .post-image {
    min-height: 230px;
    max-height: 230px;
  }

  .post-btm {
    margin-top: 10px;
  }

  .author-info {
    margin-top: 4px;
  }

  .post-main-image {
    min-height: 270px;
    max-height: 270px;
  }

  .post-main-title {
    margin-bottom: 6px;
    font-size: 26px;
  }

  .post-text {
    font-size: 14px;
  }

  .post-info {
    margin-top: 15px;
  }

  .post-main, .products {
    margin-bottom: var(--potrait-mobile);
  }

  .product-list {
    grid-column-gap: 14px;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .product-list.grid-3-colonne {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 200px;
    max-height: 300px;
  }

  .product-data {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .product-title {
    font-size: 14px;
  }

  .price-wrap {
    flex-flow: column-reverse;
    font-size: 12px;
  }

  .discount {
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    font-size: 10px;
    top: 8px;
    right: 8px;
  }

  .product-wrap {
    grid-row-gap: 15px;
  }

  .product-main-image {
    min-height: 400px;
    max-height: 400px;
  }

  .product-main-title {
    font-size: 38px;
  }

  .product-plus {
    min-width: 35px;
    max-width: 35px;
    min-height: 35px;
    max-height: 35px;
    bottom: 15px;
    right: 15px;
  }

  .product-price-box {
    grid-column-gap: 10px;
    margin-bottom: 25px;
  }

  .sale-price {
    font-size: 20px;
  }

  .product-detail, .warranty {
    font-size: 14px;
  }

  .cart-btn {
    padding: 10px 48px 10px 22px;
  }

  .default-state {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .quantity-field {
    width: 50px;
    height: 38px;
  }

  .product-btm {
    grid-row-gap: 6px;
    padding-top: 10px;
  }

  .product-details, .instagram {
    margin-bottom: var(--potrait-mobile);
  }

  .insta-heading {
    margin-bottom: 4px;
    font-size: 20px;
  }

  .insta-text {
    font-size: 12px;
    line-height: 150%;
  }

  .insta-wrap {
    grid-column-gap: 4px;
    grid-row-gap: 8px;
  }

  .insta-image {
    min-height: 110px;
    max-height: 110px;
  }

  .categories {
    margin-bottom: var(--potrait-mobile);
  }

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

  .categories-image {
    min-height: 430px;
    max-height: 430px;
  }

  .categories-data {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .our-story {
    margin-bottom: var(--potrait-mobile);
  }

  .story-left {
    grid-row-gap: 15px;
  }

  .story-text {
    margin-bottom: 20px;
  }

  .story-info {
    max-width: 100%;
  }

  .about-info {
    font-size: 40px;
  }

  .linear {
    width: 50px;
  }

  .our-mission {
    margin-bottom: var(--potrait-mobile);
  }

  .section-wrap {
    grid-row-gap: 10px;
  }

  .section-wrap.reverse {
    grid-row-gap: 10px;
    width: 100%;
  }

  .section-img.first {
    order: 1;
  }

  .section-img.height {
    order: -1;
  }

  .section-data {
    order: -1;
    padding-left: 0;
    padding-right: 0;
  }

  .sub-heading {
    font-size: 22px;
  }

  .our-vision {
    margin-bottom: var(--potrait-mobile);
  }

  .innovation {
    margin-bottom: var(--potrait-mobile);
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .innovation-title {
    margin-bottom: 6px;
  }

  .innovation-wrap {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .empowerment {
    margin-bottom: var(--potrait-mobile);
  }

  .empowerment-btm {
    grid-row-gap: 4px;
    font-size: 14px;
    line-height: 150%;
  }

  .empowerment-info {
    font-size: 30px;
  }

  .team {
    margin-bottom: var(--potrait-mobile);
  }

  .team-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr 1fr;
  }

  .team-image {
    min-height: 190px;
    max-height: 190px;
  }

  .features {
    margin-bottom: var(--potrait-mobile);
  }

  .features-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .features-data {
    margin-top: 6px;
  }

  .left-arrow {
    display: none;
    inset: auto 0% 0% auto;
  }

  .right-arrow {
    display: none;
    top: auto;
    left: auto;
    right: 0%;
  }

  .testimonial-data {
    grid-row-gap: 25px;
    padding: 10px;
  }

  .testimonial-image {
    min-height: 0;
    max-height: 230px;
  }

  .banner-section {
    margin-bottom: var(--potrait-mobile);
  }

  .banner-img {
    min-height: 230px;
    max-height: 230px;
  }

  .banner-link {
    bottom: 15px;
    left: 15px;
  }

  .banner-data {
    top: 15px;
    left: 15px;
  }

  .product-btn {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-end;
    display: flex;
  }

  .product-btn.desktop {
    display: none;
  }

  .featured-products {
    margin-bottom: var(--potrait-mobile);
  }

  .fp-list {
    grid-column-gap: 14px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .fp-block {
    background-color: #0000;
  }

  .fp-data {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 10px 0;
    display: flex;
  }

  .fp-image {
    object-position: 50% 20%;
    min-height: 200px;
    max-height: 300px;
  }

  .fp-price-wrap {
    flex-flow: column-reverse;
    font-size: 12px;
  }

  .fp-title {
    font-size: 14px;
  }

  .appraisal {
    margin-bottom: var(--potrait-mobile);
  }

  .appraisal-left {
    order: -1;
  }

  .toggle-text {
    font-size: 18px;
  }

  .hero {
    margin-bottom: var(--potrait-mobile);
  }

  .hero-wrap {
    text-align: center;
    height: auto;
  }

  .hero-right {
    grid-row-gap: 40px;
    padding-top: 0;
    padding-bottom: 30px;
  }

  .hero-title {
    margin-bottom: 15px;
    font-size: 38px;
    line-height: 110%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-btn {
    font-size: 10px;
  }

  .hero-btn.navbar-buton {
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-tag.hover {
    height: 60px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-wrapper {
    grid-row-gap: 40px;
    padding-top: 40px;
  }

  .login-form {
    padding: 20px;
  }

  .hero-btn-wrap {
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .item-data {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .purchase-badge {
    bottom: 16px;
    right: 16px;
  }

  .image {
    object-fit: contain;
    width: 70%;
  }

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

  .a-propos {
    background-image: linear-gradient(160deg, var(--bleu) 91%, white);
  }

  .tabs-menu-2 {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .text-centre {
    font-size: 12px;
  }

  .image-slider, .slider {
    height: 70vh;
  }

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

  .cta-2 {
    margin-bottom: 60px;
  }

  .cta-btn-2 {
    padding: 8px 18px;
    font-size: 10px;
  }

  .product-main-title-2 {
    font-size: 38px;
  }

  .hero-btn-2 {
    font-size: 10px;
  }

  .hero-btn-2.navbar-buton {
    margin-left: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-4 {
    object-fit: contain;
    width: 70%;
  }

  .sale-price-2 {
    font-size: 20px;
  }

  .product-main-title-3, .product-main-title-4 {
    font-size: 38px;
  }

  .icon-embed-xxsmall {
    width: 30px;
    height: 30px;
  }

  .div-block-5 {
    color: var(--blanc);
  }
}

#w-node-_4c50613e-9c42-2ed7-08d2-170eb16ee63e-0a3e80e6 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_4c50613e-9c42-2ed7-08d2-170eb16ee63f-0a3e80e6 {
  grid-area: span 2 / span 3 / span 2 / span 3;
}

#w-node-ad86605f-a7a4-07d6-d655-45d2b570232c-0a3e80e6, #w-node-ac23b1a8-e11e-5b24-bcb0-07ede1b66e7c-0a3e80e6 {
  grid-row: span 2 / span 2;
}

#w-node-_2dad9944-1a89-c1d2-10b8-5664798e26e9-0a3e80e6 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_0adf1b3c-3f4d-b1ab-3271-6bd593bcbb26-0a3e80e6 {
  grid-row: span 2 / span 2;
}

#w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521ce8-0a3e80e6 {
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521ce9-0a3e80e6 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521cec-0a3e80e6, #w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521cef-0a3e80e6, #w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521cf2-0a3e80e6, #w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521cf5-0a3e80e6 {
  grid-row: span 2 / span 2;
}

#w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521cf8-0a3e80e6 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521cfb-0a3e80e6 {
  grid-area: span 4 / span 2 / span 4 / span 2;
}

#w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521cfe-0a3e80e6, #w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521d01-0a3e80e6, #w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521d04-0a3e80e6, #w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521d07-0a3e80e6, #w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521d0a-0a3e80e6 {
  grid-row: span 2 / span 2;
}

#w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521d0d-0a3e80e6 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-cafd0437-ac6c-dc6c-1a0a-c3c5b3521d10-0a3e80e6 {
  grid-row: span 2 / span 2;
}

#w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1ac-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1b8-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1ba-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1bd-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1c2-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1c7-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1ca-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1ce-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1d3-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1d6-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1da-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1df-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1e2-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1e6-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1eb-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1ee-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1f2-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1f7-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1fa-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a1fe-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a203-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a206-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a20a-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a20f-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a212-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a216-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a21b-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a21e-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a222-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a227-0a3e80f6, #w-node-_9e8918f3-ffdc-1682-96eb-fcd63e23a22a-0a3e80f6, #w-node-_1557146d-6bb1-5402-1a57-d88385928eaf-0a3e80f9, #w-node-_1557146d-6bb1-5402-1a57-d88385928eb2-0a3e80f9, #w-node-_1557146d-6bb1-5402-1a57-d88385928eb3-0a3e80f9, #w-node-_1557146d-6bb1-5402-1a57-d88385928eb5-0a3e80f9, #w-node-f4e69e3c-0950-9570-662f-f553608690f3-0a3e80fa, #w-node-f4e69e3c-0950-9570-662f-f553608690fc-0a3e80fa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_36a6714c-a37a-902e-37c7-7214ed8c31f0-0a3e80fe {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_467d6ac1-fb5b-f9e0-8380-8699fcc9998f-0a3e8104, #w-node-_3a35c0d4-ba95-8bab-e6e2-ece682dbe929-0a3e8104 {
  align-self: center;
}

#w-node-_80753c9a-0f17-bb77-d5a1-9264bed20f04-0a3e8105 {
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_80753c9a-0f17-bb77-d5a1-9264bed20f05-0a3e8105 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_44010302-6d82-b4d3-0bba-453cf0f7f83b-0a3e8105, #w-node-_9fd435a0-37ec-4362-3bf1-1757cb2534a0-0a3e8105, #w-node-a2b0f782-85f0-a7f1-ba19-ef7e39a5c125-0a3e8105, #w-node-f617fc41-0719-4987-499a-808e8b97b318-0a3e8105 {
  grid-row: span 2 / span 2;
}

#w-node-_9eef4e23-b138-1cd4-8ece-544ac7559817-0a3e8105 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_84d5ee24-8680-2e3f-cb14-26fc36252dab-0a3e8105 {
  grid-area: span 4 / span 2 / span 4 / span 2;
}

#w-node-f1a74733-414c-0d79-6ab1-68ac50f06bcf-0a3e8105, #w-node-f8ebf8ad-ea5d-2442-61c4-299bf07a3fdf-0a3e8105, #w-node-_0de0287c-8935-4025-ecf9-b8b4ec3c260e-0a3e8105, #w-node-_9e87af4a-54e2-41a4-e62a-e04e23f65540-0a3e8105, #w-node-_8908ecf6-40e6-7b5d-3077-255598e4c975-0a3e8105 {
  grid-row: span 2 / span 2;
}

#w-node-c115ee00-291d-cce1-38bf-de167ca63121-0a3e8105 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_75e8ff8c-92c5-e0b9-20f7-ad68b926801f-0a3e8105 {
  grid-row: span 2 / span 2;
}

#w-node-_05d2e6a2-6e02-61c1-b99a-25851be3e062-0a3e8106 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_4062fd26-8e6b-185d-2078-5423201adc94-88f5e1d3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 767px) {
  #w-node-_05d2e6a2-6e02-61c1-b99a-25851be3e062-0a3e8106 {
    grid-row: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d30aff1d-41de-0952-1722-0e4cf5c2b039-f5c2b032 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_36a6714c-a37a-902e-37c7-7214ed8c31f0-0a3e80fe, #w-node-_4062fd26-8e6b-185d-2078-5423201adc94-88f5e1d3 {
    grid-column: span 1 / span 1;
  }
}


