@charset "utf-8";
/*!
Theme Name: Debarge
Description: Thème Debarge
Text Domain: Debarge
Version: 1.0.0
Author: Kréalid
Author URI: http://www.krealid.com
*/
:root {
  --Secondaire-Blanc: #FFF;
  --Secondaire-P: #363636;
  --Primaire-Accent: #085D69;
  --Primaire-Accent-2: #F4EDE6;
  --Secondaire-Champ: #E7EFF0;
}
/**
 * BREAKPOINT (for-size)
 * 
 * deprecated
 */
/**
 * FLEXBOX (flex)
 * 
 * @mixin .flex(@wrap: nowrap, @justify: flex-start, @align-items: stretch, @align-content: stretch, @direction: row)
 * @param {mixed} @wrap Taille
 * @param {mixed} @justify Règle
 * @param {mixed} @align-items Règle2
 * @param {mixed} @align-content Règle2
 * @param {mixed} @direction Règle2
 */
/**
 * FLUID TYPOGRAPHY (fluid-type)
 * Défini une typo fluide entre 2 breakpoints à partir d'une taille de font minimum et maximum.
 * 
 * @mixin .fluid-type(@min_width, @max_width, @min-font-size, @max-font-size)
 * @param {int} @min_width Taille d'écran de départ
 * @param {int} @max_width Taille d'écran d'arrivée
 * @param {int} @min-font-size Taille du texte pour la taille d'écran de départ
 * @param {int} @max-font-size Taille du texte pour la taille d'écran d'arrivée
 */
/**
 * STRETCHED LINK (stretched-link)
 * Permet de rendre tout un bloc cliquable grâce au pseudo-élément `::after` de l'élément `<a>` enfant.
 */
.stretched-link {
  position: relative;
}
.stretched-link a[href]::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
/**
 * ASPECT RATIO (fixed-ratio)
 * Permet de définir le ratio d'un conteneur et indique à ses déscendants direct de recouvrir tout le bloc.
 */
/**
 * VIEWPORT SIZE (vw-size)
 * Permet de calculer une taille en VW à partir d'une taille en PX
 */
/**
 * GRID (grid)
 */
/* resource : https://css-tricks.com/an-auto-filling-css-grid-with-max-columns/ */
/**
 * FLEXGRID (flexgrid)
 */
/**
 * ASPECT-RATIO (aspect-ratio)
 */
* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: inherit;
}
*:focus {
  outline: none;
}
a,
abbr,
address,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
ins,
label,
legend,
li,
object,
ol,
p,
pre,
q,
small,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
ul {
  border: 0;
  margin: 0;
  padding: 0;
}
article,
aside,
figcaption,
figure,
figure img,
footer,
header,
hgroup,
main,
nav,
object,
section,
video {
  display: block;
}
ul li {
  list-style-type: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
}
a:active,
a:focus,
a:hover {
  outline: 0;
}
a img {
  border: 0;
}
button,
input {
  font: inherit;
  color: inherit;
  line-height: normal;
}
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  text-align: inherit;
  overflow: visible;
  cursor: pointer;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
sub {
  font-size: 0.75em;
  vertical-align: baseline;
}
/* clear */
.clear:before,
.clear:after {
  content: ' ';
  display: table;
}
.clear:after {
  clear: both;
}
.clear {
  *zoom: 1;
}
/*-------------------------------------------*\
	BASICS
\*-------------------------------------------*/
/**
 * body
 *
 */
html,
body {
  scroll-behavior: smooth;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  color: black;
  line-height: 1.4;
  cursor: default;
  -webkit-text-size-adjust: none;
}
body::after {
  content: 'mobile';
  display: none;
}
/**
 * selection
 *
 */
::-moz-selection {
  color: #FFFFFF;
  background-color: var(--Secondaire-P, #363636);
}
::selection {
  color: #FFFFFF;
  background-color: var(--Secondaire-P, #363636);
}
/**
 * paragraph
 *
 */
p + p,
p + blockquote,
blockquote + p,
blockquote + blockquote {
  padding: 1.3em 0;
}
/**
 * screen-reader-text
 *
 */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
/*-------------------------------------------*\
	GLOBAL
\*-------------------------------------------*/
/**
 * wrap
 *
 */
.wrap,
.grid {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
/**
 * section-text : Texte d'introduction de section
 *
 */
.section-text {
  margin: 24px 0;
  line-height: 1.8;
}
.breadcrumbs-large {
  background-color: #F4EDE6;
  padding: 20px 25px;
  margin-bottom: 25px;
  display: none;
}
.breadcrumb_last {
  font-weight: 600;
}
#breadcrumbs .breadcrumb_last {
  font-weight: 600;
}
#breadcrumbs.breadcrumbs-woo {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 20px;
}
label {
  display: inline-block;
  /* Ensure the label is properly aligned */
  margin-left: 5px;
  /* Adjust the spacing between the input and label */
  font-size: 18px;
  /* Ensure the font size is consistent */
  line-height: 1.5;
  /* Adjust line height */
}
input[type="radio"] + label,
input[type="checkbox"] + label {
  margin-left: 0;
  /* Reset extra margin */
  vertical-align: middle;
  /* Align the label text with the input */
}
/**
 * Components
 *
 * styles for specific/unique component
 */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
.woocommerce-account.woocommerce-lost-password .lost_reset_password h1,
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column__title,
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset legend,
.woocommerce-account .woocommerce-MyAccount-content .dashboard-heading .welcome-message__title {
  line-height: 1.2;
  color: var(--Primaire-Accent, #085D69);
  letter-spacing: -0.04em;
  font-weight: 400;
}
.h-text-white h1,
.h-text-white .h1,
.h-text-white h2,
.h-text-white .h2,
.h-text-white h3,
.h-text-white .h3,
.h-text-white h4,
.h-text-white .h4,
.h-text-white h5,
.h-text-white .h5 {
  color: #fff;
}
h1,
.h1 {
  font-size: 55px;
}
h2,
.h2,
.woocommerce-account.woocommerce-lost-password .lost_reset_password h1,
.woocommerce-account .woocommerce-MyAccount-content .dashboard-heading .welcome-message__title {
  font-size: 33px;
}
h3,
.h3,
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column__title {
  font-size: 28px;
}
h4,
.h4,
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset legend {
  font-size: 26px;
}
h5,
.h5 {
  font-size: 20px;
}
h6,
.h6,
.fs-panel__menu .second-level ul.product-categories li a,
.woocommerce-account .woocommerce-MyAccount-content .dashboard-heading .welcome-message__txt {
  font-size: 18px;
}
.myh1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 33px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.myh2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.myh3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.myh4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.myh5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.02em;
}
.myh6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.myp {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1em auto;
  color: var(--Primaire-Accent, #085D69);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.btn:not(.btn--trans) {
  border-radius: 50px;
  height: 56px;
  width: 280px;
  background-color: #fff;
}
.btn--account {
  text-decoration: underline;
  margin: 0;
}
.btn.btn--blue {
  background-color: var(--Primaire-Accent, #085D69);
  color: #fff;
}
.btn.btn--blue--arrow {
  position: relative;
  transition: 0.3s;
}
.btn.btn--blue--arrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  position: absolute;
  right: 18px;
  background: url(img/arrow-white-right.svg) no-repeat center;
  opacity: 0;
  transition: 0.3s;
}
.btn.btn--blue--arrow:hover {
  padding-right: 38px;
}
.btn.btn--blue--arrow:hover::after {
  opacity: 1;
}
.btn--grey {
  background-color: #E7EFF0;
  color: #363636;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1em auto;
  padding: 11px 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.btn.btn--beige {
  background-color: var(--Primaire-Accent-2, #F4EDE6);
}
.btn.btn--beige--arrow {
  position: relative;
  transition: 0.3s;
}
.btn.btn--beige--arrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  position: absolute;
  right: 18px;
  background: url(img/arrow-blue-right.svg) no-repeat center;
  opacity: 0;
  transition: 0.3s;
}
.btn.btn--beige--arrow:hover {
  padding-right: 38px;
}
.btn.btn--beige--arrow:hover::after {
  opacity: 1;
}
.btn.btn--arrow::after {
  content: "";
  background: url(img/arrow-blue-right.svg) no-repeat center;
  display: block;
  width: 34px;
  height: 34px;
  margin-left: 16px;
  border-radius: 50%;
  transition: 0.3s;
}
.btn.btn--arrow:hover::after {
  background: url(img/arrow-white-right.svg) no-repeat center;
  margin-left: 24px;
  background-color: var(--Primaire-Accent, #085D69);
}
.btn--bordered {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid #085D69;
  color: #085D69;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s;
}
.btn.btn--hover {
  display: flex;
  padding: 10px 32px;
}
.btn.btn--hover::after {
  content: "";
  display: block;
  width: 0;
  height: 34px;
  border-radius: 50%;
  transition: width 0.3s ease-in-out;
}
.btn.btn--hover:hover::after {
  background: url(img/arrow-white-right.svg) no-repeat center;
  margin-left: 24px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(84%) saturate(442%) hue-rotate(139deg) brightness(91%) contrast(100%);
  width: 34px;
  height: 34px;
}
.btn--logout {
  width: -moz-fit-content;
  width: fit-content;
  height: 56px;
  border-radius: 50px;
  border: 2px solid #085D69;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
}
.btn--logout a {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #085D69;
  text-align: center;
}
.btn--logout a::before {
  content: url(img/lock.svg);
  width: 18px;
  height: auto;
  margin-right: 16px;
}
.card-gamme {
  background-color: red;
  margin: 30px 0;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.4s;
}
.card-gamme:hover {
  transform: scaleY(0.96);
}
.card-gamme__image {
  aspect-ratio: 230 / 300;
  overflow: hidden;
  position: relative;
}
.card-gamme__image > * {
  display: block;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-gamme__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.card-gamme__image img {
  transition: 0.4s;
  transform: scale(1.06);
}
.card-gamme:hover .card-gamme__image img {
  transform: scale(1);
}
.card-gamme__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 24px;
  z-index: 2;
}
.card-gamme__icon {
  margin-bottom: 1.2em;
}
.card-gamme__icon img {
  transition: 0.3s;
}
.card-gamme:hover .card-gamme__icon img {
  transform: scaleX(-1);
}
.card-gamme__title {
  line-height: 1.2;
  color: var(--Primaire-Accent, #085D69);
  letter-spacing: -0.04em;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
.h-text-white .card-gamme__title {
  color: #fff;
}
.card-gamme__btn {
  color: #fff;
  background: #085D69;
  font-weight: 600;
  padding: 12px 20px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-24px);
  transition: 0.3s;
}
.card-gamme__btn::after {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background: url(img/arrow-white-right.svg) no-repeat center;
  background-size: 18px;
}
.card-gamme:hover .card-gamme__btn {
  opacity: 1;
  transform: translateY(0);
  margin-top: 20px;
}
a.card-gamme {
  color: inherit;
  text-decoration: none;
  display: block;
  /* Assure que le lien occupe tout l'espace de la carte */
}
.card {
  position: relative;
  margin-top: 30px;
}
.card a[href]::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
.card__image {
  aspect-ratio: 580 / 420;
  position: relative;
  overflow: hidden;
}
.card__image > * {
  display: block;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__button {
  display: none;
}
.card__content {
  margin-top: 1.2em;
}
.card__title {
  font-size: 18px;
  line-height: 1.2;
}
.card:hover .card__button {
  display: none;
}
.card:hover .card__button::after {
  opacity: 1;
  display: block;
  width: 34px;
  height: 34px;
  content: "";
  background: url(img/arrow-white-right.svg) no-repeat center;
  margin-left: 24px;
  background-color: var(--Primaire-Accent, #085D69);
}
.footer__flex {
  margin-bottom: 40px;
}
.footer__base {
  letter-spacing: -0.02em;
  margin: 1.2em 0 1.8em;
}
.footer__misc {
  display: flex;
}
.footer__misc > *:nth-child(1) > div {
  background: url(img/marker-blue.svg) no-repeat center left;
  padding-left: 40px;
  display: inline-block;
  text-align: left;
}
.footer__nav {
  margin: 30px 0;
}
.footer__nav ul li {
  margin: 24px 0;
}
.footer__nav ul li a {
  display: block;
  color: var(--Primaire-Accent, #085D69);
  font-size: 16px;
  font-weight: 600;
}
.footer__nav ul li:not(.btn) a:hover {
  color: #398691;
  text-decoration: underline;
}
.footer__nav ul li.btn a {
  position: relative;
}
.footer__nav ul li.btn a::after {
  content: "";
  display: block;
  width: 40px;
  height: 25px;
  background: url(img/arrow-blue-right.svg) no-repeat center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  opacity: 0;
}
.footer__nav ul li.btn a:hover {
  text-indent: -10px;
  padding-right: 60px;
}
.footer__nav ul li.btn a:hover::after {
  opacity: 1;
}
.footer__nav .btn-border {
  justify-content: flex-start;
}
.footer__nav .btn-border a {
  min-width: 160px;
  display: block;
  width: 220px;
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid #085D69;
  color: #085D69;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s;
}
.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid #E7E0D9;
}
.footer__bottom .wrap {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  flex-direction: column;
}
.footer__bottom-nav .menu li {
  margin: 20px 0;
}
.footer__bottom-nav .menu li a {
  color: #000;
}
.footer__bottom-nav .menu li a:hover {
  text-decoration: underline;
}
.footer__bottom .footer-bottom-link {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header {
  padding: 20px;
  border-bottom: 1px solid #E7EFF0;
  background: #fff;
}
.header__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 44%;
  max-width: 390px;
}
.header__logo__title {
  display: none;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__account a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid ;
  color: var(--Secondaire-Blanc, var(--Secondaire-Blanc, #FFF));
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s;
}
.header__account a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  background-image: url('img/account.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 16px;
  transition: 0.3s;
}
.header.headroom--not-top .header__account a {
  border: 2px solid var(--Primaire-Accent, #085D69);
  color: var(--Primaire-Accent, var(--Primaire-Accent, #085D69));
}
.header.headroom--not-top .header__account a::before {
  background-image: url('img/account-blue.svg');
}
/* specific woocommerce color  */
/* specific homepage */
/* specific simulator */
.page-template-simulator .header__logo {
  max-width: 440px;
}
.page-template-simulator .header__logo__simu {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
}
.page-template-simulator .header__logo__title {
  color: #085D69;
  font-size: 16px;
  font-weight: 600;
  border-left: 1px solid #C3C3C3;
  padding-left: 32px;
}
/**
 * header headroom global anim styles
 */
.headroom {
  will-change: transform;
  transition: 350ms;
  /* hack*/
}
.headroom--unpinned {
  transform: translateY(-100%);
}
.headroom--pinned,
.headroom--bottom {
  transform: translateY(0%);
}
.headroom--no-transform {
  transition: unset !important;
  transform: none !important;
  will-change: unset !important;
}
/**
 * header headroom specific styles
 */
.header.headroom {
  /* must be fixed */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header.headroom--not-top.headroom--pinned,
.header.headroom--not-top:not(.headroom--unpinned),
.header.headroom--bottom {
  box-shadow: 0 0 20px rgba(83, 85, 87, 0.5);
}
.header.headroom--not-top {
  background: white !important;
  color: var(--Secondaire-P, #363636) !important;
}
/**
 * Optional feature: show header when hovering near top
 */
.headroom--unpinned:after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  top: 4rem;
  height: 4rem;
}
.headroom--unpinned:hover {
  transform: translateY(0%);
  box-shadow: 0 0 20px rgba(83, 85, 87, 0.5);
}
.blog .headroom--top,
.single-post .headroom--top {
  background-color: transparent;
  border-bottom: none;
}
.fs-panel {
  position: fixed;
  inset: 0;
  background-color: var(--Primaire-Accent, #085D69);
  color: var(--Secondaire-Blanc, #FFF);
  z-index: 101;
  /* animation tips : https://codepen.io/arjancodes/pen/dYwzzQ & https://www.brouwerijhuyghe.be/fr/bieres/campus */
  clip-path: circle(26px at 90% 52px);
  clip-path: circle(10px at calc(100% - 46px) 46px);
  visibility: hidden;
  /* image */
  /* menu */
}
.fs-panel.is-active {
  clip-path: circle(70.7%);
  visibility: visible;
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  overflow: hidden;
}
.fs-panel.is-active .header__account a {
  color: #fff;
  border-color: #fff;
}
.fs-panel.is-active .header__account a::before {
  filter: unset;
}
.fs-panel__img {
  clip-path: inset(0 50% 0 50%);
  transition: clip-path 0.3s ease-in-out;
  transition-delay: 0.3s;
  display: none;
}
.fs-panel.is-active .fs-panel__img {
  clip-path: inset(0 0 0 0);
}
.fs-panel__menu {
  margin: 28px 20px;
  padding: 90px 0px 20px;
  /* nav menus */
}
.fs-panel__menu ul li {
  transition: all 0.4s cubic-bezier(0.56, 0, 0.4, 1);
  opacity: 0;
  transform: translateY(100%);
}
.fs-panel__menu ul li:nth-child(1) {
  transition-delay: 0.3s;
  transform: translateY(120%);
}
.fs-panel__menu ul li:nth-child(2) {
  transition-delay: 0.33s;
  transform: translateY(140%);
}
.fs-panel__menu ul li:nth-child(3) {
  transition-delay: 0.36s;
  transform: translateY(160%);
}
.fs-panel__menu ul li:nth-child(4) {
  transition-delay: 0.39s;
  transform: translateY(180%);
}
.fs-panel__menu ul li:nth-child(5) {
  transition-delay: 0.42s;
  transform: translateY(200%);
}
.fs-panel.is-active .fs-panel__menu ul li {
  opacity: 1;
  transform: translateY(0);
}
.fs-panel__menu ul li:not(:last-child):after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}
.fs-panel__menu ul li a {
  line-height: 1.2;
  color: var(--Primaire-Accent, #085D69);
  letter-spacing: -0.04em;
  font-weight: 400;
  font-size: 28px;
  color: #fff;
  padding: 24px 0;
  display: block;
  text-transform: uppercase;
  transition: 0.2s;
}
.h-text-white .fs-panel__menu ul li a {
  color: #fff;
}
.fs-panel__menu ul li a:hover {
  opacity: 0.6;
}
.fs-panel__menu nav {
  position: relative;
}
.fs-panel__menu .first-level {
  position: absolute;
  top: 0;
  left: -120%;
  transition: all 0.3s ease-in-out;
}
.fs-panel__menu .first-level.active {
  position: absolute;
  top: 0;
  left: 0;
}
.fs-panel__menu .second-level {
  position: absolute;
  top: 0;
  left: -120%;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}
.fs-panel__menu .second-level.active {
  position: absolute;
  top: 0;
  left: 0;
}
.fs-panel__menu .second-level .back-btn {
  padding: 45px 0 30px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 1;
  transition: 0.2s;
}
.fs-panel__menu .second-level .back-btn:hover {
  opacity: 0.6;
}
.fs-panel__menu .second-level .back-btn::before {
  content: url(img/arrow-white-right.svg);
  display: inline-block;
  transform: rotate(180deg);
  margin-bottom: 5px;
  margin-right: 10px;
}
.fs-panel__menu .second-level ul.product-categories li::after {
  content: none;
}
.fs-panel__menu .second-level ul.product-categories li a {
  padding: 16px 0;
}
.fs-panel__menu .second-level.visible {
  display: block;
}
.fs-panel__menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fs-panel__top__close {
  display: block;
  width: 52px;
  height: 52px;
  background-image: url('img/close.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.fs-back {
  position: fixed;
  opacity: 0;
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible;
  pointer-events: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.fs-back.is-active {
  opacity: 1;
  pointer-events: all;
  z-index: 101;
}
.burger {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--Primaire-Accent, #085D69);
  position: relative;
}
.burger > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 50%;
  background: #FFFFFF;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.burger > span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}
.burger > span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}
.burger.is-active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.single-post .burger {
  background-color: #fff;
  opacity: 0.8;
}
.single-post .burger > span {
  background-color: #085D69;
}
.loading-spinner {
  margin: 40px auto;
  display: flex;
  justify-content: center;
}
.loading-spinner img {
  width: 52px;
  height: 52px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.backbutton {
  background-color: #F4EDE6;
  padding: 20px 30px;
  margin-bottom: 25px;
  font-size: 12px;
  font-weight: 600;
  color: #363636;
  display: block;
}
.backbutton > a {
  position: relative;
  padding-left: 14px;
}
.backbutton > a::before {
  content: url(img/back_caret.svg);
  position: absolute;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  left: 0;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-overlay.hidden {
  display: none;
}
.popup-overlay.simulator {
  margin: auto;
  height: 100%;
}
.popup-overlay.simulator .popup-content {
  max-width: 890px;
  height: unset;
}
.popup-content {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  padding: 40px 20px;
  /* SCROLLBAR */
}
.popup-content.form {
  padding: 20px;
  width: 100%;
  margin: 0;
}
.popup-content.form.login {
  padding: 40px 40px 20px;
}
.popup-content.form .btn--blue {
  width: 100%;
  margin: 0;
}
.popup-content.modal-content {
  padding: 3vw;
}
.popup-content .hidden {
  display: none;
}
.popup-content #popupAccountClose,
.popup-content #popupLoginClose,
.popup-content #popupProjectClose {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}
.popup-content #popupProjectClose::after {
  display: inline-block;
  background: url(img/close.svg) 0 0 no-repeat;
  vertical-align: middle;
  background-size: contain;
  content: "";
  position: relative;
  left: 0;
  top: 0;
  filter: brightness(0) saturate(100%) invert(27%) sepia(44%) saturate(988%) hue-rotate(141deg) brightness(94%) contrast(94%);
  width: 24px;
  height: 24px;
}
.popup-content #contactChild {
  max-height: 70vh;
  padding: 15px 45px;
  overflow-y: auto;
}
.popup-content #contactChild::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #FFF;
}
.popup-content #contactChild::-webkit-scrollbar {
  width: 5px;
  background-color: #FFF;
}
.popup-content #contactChild::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #E7EFF0;
}
.popup-content #loginform .login-submit {
  text-align: center;
}
.popup-content #loginform .login-submit .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1em auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border-radius: 50px;
  height: 56px;
  width: 280px;
  background-color: var(--Primaire-Accent, #085D69);
  color: #fff;
  position: relative;
}
.popup-content #loginform .login__forget {
  color: #085D69;
  text-decoration: underline;
}
.modal-close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
}
.pdf-content {
  visibility: hidden;
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.toast-message {
  position: fixed;
  z-index: 20;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--Primaire-Accent, #085D69);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeInOut 3s ease-in-out;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#wp-submit {
  background-color: var(--Primaire-Accent, #085D69);
  color: #fff;
  position: relative;
  transition: 0.3s;
}
#wp-submit::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  position: absolute;
  right: 18px;
  background: url(img/arrow-white-right.svg) no-repeat center;
  opacity: 0;
  transition: 0.3s;
}
#wp-submit:hover {
  padding-right: 38px;
}
#wp-submit:hover::after {
  opacity: 1;
}
.form,
.contact__form {
  margin: 24px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form label,
.contact__form label {
  width: 100%;
  font-weight: 600;
}
.form .checkbox,
.contact__form .checkbox {
  flex-direction: column;
  gap: unset;
  font-weight: 600;
}
.form input,
.contact__form input,
.form textarea,
.contact__form textarea {
  width: 100%;
  border: 0;
  background: #E7EFF0;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 8px;
  font-family: 'Montserrat', sans-serif;
}
.form .wpcf7-radio .first,
.contact__form .wpcf7-radio .first,
.form .wpcf7-checkbox .first,
.contact__form .wpcf7-checkbox .first {
  margin: 0;
}
.form .wpcf7-radio input,
.contact__form .wpcf7-radio input,
.form .wpcf7-checkbox input,
.contact__form .wpcf7-checkbox input {
  width: unset;
}
.form .wpcf7-radio label,
.contact__form .wpcf7-radio label,
.form .wpcf7-checkbox label,
.contact__form .wpcf7-checkbox label {
  width: 100%;
  font-weight: 400;
}
.form__row,
.contact__form__row,
.form__half,
.contact__form__half {
  display: flex;
  width: 100%;
  gap: 20px;
}
.form__half,
.contact__form__half {
  flex-direction: column;
}
.form__half > *,
.contact__form__half > * {
  flex-direction: column;
  gap: unset;
}
.form__submit input,
.contact__form__submit input {
  width: unset;
  border-radius: 50px;
  background-color: #085D69;
  color: #fff;
  font-weight: 600;
  min-width: 170px;
  text-align: center;
  transition: 0.3s;
}
.form__submit input:hover,
.contact__form__submit input:hover {
  background-color: #B5CFD2;
}
/**
 * Sections
 *
 * specific styles for an entire section of a page
 * 
 */
/* section catalogues et brochures (documentation) */
.s-doc {
  background: linear-gradient(to bottom, var(--Primaire-Accent, #085D69) 36%, var(--Primaire-Accent-2, #F4EDE6) 0%);
  padding: 30px 0;
  margin-bottom: 40px;
}
.s-doc__right .btn {
  width: 310px;
}
.s-doc__title {
  margin-bottom: 12px;
}
.s-content {
  padding: 50px 0;
}
/* section hero */
.s-hero {
  background-color: #fff;
  color: #363636;
  /* adjust override swiper */
  /*
    .swiper-wrapper {
        align-items: flex-end;
    }
    */
  /* FIX SWIPER INSIDE FLEX ITEMS : https://github.com/nolimits4web/swiper/issues/3599#issuecomment-1696670314 */
  /* DISABLE SWIPER STYLES + ADJUST FOR HERO COMPLEXITY */
}
.s-hero__left {
  padding-bottom: 16px;
}
.s-hero__left__content {
  margin-top: 30px;
}
.s-hero__left #breadcrumbs {
  margin-bottom: 30px;
  text-align: left;
}
.s-hero__right {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
.s-hero__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-hero__card {
  padding: 20px;
  width: 78%;
  overflow: hidden;
  /* avoid box-shadow "hole" to overlap card */
  line-height: 1.8;
  /* swiper adjust : align to bottom */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.s-hero__card > * {
  margin: 10px 0;
  position: relative;
  /* fix hole transform on hover  */
}
.s-hero__card > * > img {
  position: absolute;
  width: auto;
  height: auto;
  left: 0;
}
.s-hero__card:not(.s-hero__card--hole) {
  background-color: var(--Primaire-Accent-2, #F4EDE6);
}
.s-hero__card__hole {
  width: 128px;
  height: 128px;
  box-shadow: 0 0 0 9999px var(--Primaire-Accent-2, #F4EDE6);
  transition: 0.8s;
}
.s-hero__card.s-hero__card--blue {
  background: var(--Primaire-Accent, #085D69);
  color: var(--Secondaire-Blanc, #FFF);
}
.s-hero__card.s-hero__card--blue a.btn {
  max-width: 100%;
}
.s-hero .swiper {
  display: grid;
}
.s-hero .swiper-wrapper {
  min-width: 0;
}
.s-hero-blog .s-hero__flex {
  width: 100%;
  justify-content: space-between;
}
.s-hero-blog__right {
  flex: 1;
}
.s-hero-blog__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gutenberg-content {
  /* titles */
  /* paragraphes */
  /* listes */
  /* images */
  /**
     * Concerne le block "espaceur" de gutenberg
     */
  --wp--preset--spacing--20: 10px;
  --wp--preset--spacing--30: 15px;
  --wp--preset--spacing--40: 20px;
  --wp--preset--spacing--50: 30px;
  --wp--preset--spacing--60: 50px;
  --wp--preset--spacing--70: 80px;
  --wp--preset--spacing--80: 100px;
}
.gutenberg-content > * {
  margin-top: 0;
}
.gutenberg-content > *:not(:last-child):not(.wp-block-spacer) {
  margin-bottom: 20px;
}
.gutenberg-content h1 {
  font-size: 36px;
  font-weight: 400;
}
.gutenberg-content h2 {
  font-size: 32px;
  font-weight: 400;
}
.gutenberg-content h3 {
  font-size: 28px;
  font-weight: 400;
}
.gutenberg-content h4 {
  font-size: 22px;
  font-weight: 400;
}
.gutenberg-content h5 {
  font-size: 18px;
  font-weight: 400;
}
.gutenberg-content p,
.gutenberg-content li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.gutenberg-content p a,
.gutenberg-content li a {
  color: #085d69;
  text-decoration: underline;
}
.gutenberg-content p a:hover,
.gutenberg-content li a:hover {
  color: #199cad;
}
.gutenberg-content ul {
  margin-left: 30px;
}
.gutenberg-content ul li {
  list-style-type: disc;
}
.gutenberg-content ul li,
.gutenberg-content ol li {
  list-style-position: inside;
}
.gutenberg-content figure.wp-block-image img {
  width: 100%;
}
.gutenberg-content figure.wp-block-image.full-bleed {
  margin: 10% 0;
  margin-left: calc(50% - 50vw + 9px);
  margin-right: calc(50% - 50vw + 9px);
}
.gutenberg-content .wp-block-group {
  padding: 20px 20px;
  border-radius: 16px;
}
.gutenberg-content .wp-block-group img {
  background-color: #fff;
}
.gutenberg-content .wp-block-group figure.wp-block-image {
  margin: 0;
}
.gutenberg-content .img-block img {
  display: block;
  width: 100%;
}
/**
 * Views
 *
 * specific style for an entire view/template
 */
html.sr .scrollRevealItem {
  visibility: hidden;
}
/* section gammes */
.s-gammes {
  background-color: var(--Primaire-Accent-2, #F4EDE6);
  padding: 70px 0 50px;
  overflow: hidden;
  /* hide scrollbar for swiper-js "gammeSlider" overflow visible */
}
.s-gammes__title {
  text-align: center;
  text-wrap: balance;
}
.s-gammes .gammeSlider {
  overflow: visible;
}
.s-gammes .gammeSlider .swiper-wrapper {
  gap: 20px;
}
.s-gammes .gammeSlider .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
/* section simulateur */
.s-simulateur {
  background: #085D69;
  position: relative;
  padding-top: 80px;
}
.s-simulateur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background-color: red;
  background: url(img/bg-cloture.jpg) no-repeat center top;
  background-size: 100%;
  mix-blend-mode: multiply;
}
.s-simulateur .wrap {
  position: relative;
}
.s-simulateur__flex {
  display: flex;
  flex-direction: column-reverse;
}
.s-simulateur__left {
  margin-top: 30px;
}
.s-simulateur__left .h3 {
  text-wrap: balance;
}
.s-simulateur__right {
  position: relative;
}
.s-simulateur__image {
  aspect-ratio: 580 / 480;
  max-width: 500px;
  margin: 0 auto;
}
.s-simulateur__image > * {
  display: block;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-simulateur__image-2 {
  margin-top: 14%;
  aspect-ratio: 580 / 250;
}
.s-simulateur__image-2 > * {
  display: block;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
/* section Qui sommes nous */
.s-qsn__right {
  margin-top: 30px;
}
.s-qsn__image {
  aspect-ratio: 360 / 300;
}
.s-qsn__image > * {
  display: block;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-qsn__title {
  line-height: 1;
}
/* section actualités */
.s-actualites {
  margin: 55px 0;
  overflow: hidden;
  /* hide scrollbar for swiper-js "actuSlider" overflow visible */
}
.s-actualites__title {
  text-align: center;
}
.s-actualites__slider {
  margin-top: 30px;
}
.s-actualites .swiper-wrapper {
  gap: 20px;
}
.s-actualites .actuSlider {
  overflow: visible;
}
.s-actualites__button {
  margin-top: 30px;
  text-align: center;
}
.single .gutenberg-content {
  max-width: 880px;
  margin: 0 auto;
}
.single .card__button::after {
  margin-left: 0px;
}
.single .card:hover .card__button::after {
  margin-left: 8px;
}
.single .share-post {
  margin-top: 80px;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.single .share-post__links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}
.single .share-post__links a {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(8, 93, 105, 0.3);
  text-indent: -9999px;
  border-radius: 50%;
  transition: 0.3s;
}
.single .share-post__links a.icon-facebook {
  background: url(img/icon-facebook.svg) no-repeat center;
}
.single .share-post__links a.icon-x {
  background: url(img/icon-x.svg) no-repeat center;
}
.single .share-post__links a.icon-linkedin {
  background: url(img/icon-linkedin.svg) no-repeat center;
}
.single .share-post__links a:hover {
  transform: scale(1.2);
}
.p404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--Secondaire-Champ, #E7EFF0);
}
.p404 .wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.p404 h1 {
  display: block;
  margin: auto;
  color: var(--Primaire-Accent, #085D69);
  text-align: center;
}
.p404 h1 span {
  display: block;
  margin: auto;
  font-size: 100px;
  font-style: italic;
}
.p404 p {
  color: var(--Secondaire-P, #363636);
  text-align: center;
}
.qsn__desc {
  background-color: #F4EDE6;
  color: #363636;
  padding: 8.5% 0;
}
.qsn__desc__resume {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}
.qsn__desc__resume .resume-image {
  margin: 0 auto;
}
.qsn__desc__resume .resume-texts {
  line-height: 1.8em;
}
.qsn__desc__resume .resume-title {
  padding-bottom: 40px;
}
.qsn__desc__resume .resume-content {
  font-size: 18px;
}
.qsn__desc__bond {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  color: #363636;
  padding: 0 20px;
}
.qsn__desc__bond__texts {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.qsn__desc__bond .bond-list {
  width: 100%;
  max-width: 410px;
}
.qsn__desc__bond .bond-list li {
  border-top: 1px solid #D2C7BB;
  padding: 24px 0;
  font-size: 23px;
  color: #085D69;
}
.qsn__desc__bond .bond-list li:last-child {
  border-bottom: 1px solid #D2C7BB;
}
.qsn__quotation {
  padding: 60px 20px;
  color: #363636;
}
.qsn__quotation__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.qsn__quotation__pictos {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.qsn__quotation__item {
  display: flex;
  gap: 40px;
  width: 250px;
  align-items: flex-start;
  flex-direction: row;
}
.qsn__quotation__item .item-image {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 53px;
  height: 60px;
}
.qsn__quotation__item .item-texts-title {
  padding-bottom: 20px;
  color: #085D69;
  font-weight: 400;
}
.misc-page {
  margin-bottom: 40px;
}
.misc-page .xtra-padding {
  padding-left: 20px;
  padding-right: 20px;
}
.misc-page h1 {
  text-align: left;
  color: var(--Primaire-Accent, #085D69);
  margin-bottom: 30px;
}
.misc-page .bloc-gut {
  /**
         * Concerne le block "espaceur" de gutenberg
         */
  --wp--preset--spacing--20: 10px;
  --wp--preset--spacing--30: 15px;
  --wp--preset--spacing--40: 20px;
  --wp--preset--spacing--50: 30px;
  --wp--preset--spacing--60: 50px;
  --wp--preset--spacing--70: 80px;
  --wp--preset--spacing--80: 100px;
}
.misc-page .bloc-gut > * {
  margin-top: 0;
}
.misc-page .bloc-gut > *:not(:last-child):not(.wp-block-spacer) {
  margin-bottom: 20px;
}
.misc-page .bloc-gut > p + ul,
.misc-page .bloc-gut > p + ol,
.misc-page .bloc-gut > ol + p,
.misc-page .bloc-gut > ul + p {
  margin-top: -20px;
}
.misc-page .bloc-gut h2 {
  color: var(--Primaire-Accent, #085D69);
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.02em;
}
.misc-page .bloc-gut h3,
.misc-page .bloc-gut h4,
.misc-page .bloc-gut h5,
.misc-page .bloc-gut h6 {
  color: var(--Primaire-Accent, #085D69);
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.misc-page .bloc-gut p,
.misc-page .bloc-gut li {
  color: var(--Secondaire-P, #363636);
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.misc-page .bloc-gut p a,
.misc-page .bloc-gut li a {
  text-decoration: underline;
}
.misc-page .bloc-gut ul li {
  list-style-type: disc;
}
.misc-page .bloc-gut ul li,
.misc-page .bloc-gut ol li {
  list-style-position: inside;
  margin-left: 8px;
}
.misc-page .bloc-gut ul li::marker,
.misc-page .bloc-gut ol li::marker {
  font-size: 10px;
}
.contact-particulier {
  max-width: 900px !important;
}
.contact-distrib {
  max-width: calc(1500px + 8vw) !important;
  justify-content: center;
  gap: 10%;
}
.contact-distrib .leaflet-map {
  z-index: 0;
}
.contact-particulier,
.contact-distrib {
  margin-top: 40px;
}
.contact-child__subtext {
  padding: 15px 0 30px;
}
.contact-parent {
  margin: 5% auto 20%;
}
.contact-parent__title {
  text-align: center;
  margin: 20px auto;
}
.contact-parent__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.contact-parent__subpage {
  background-color: #F4EDE6;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  max-width: 580px;
}
.contact-parent .btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 40px;
}
.contact-parent .btn.btn--blue--arrow:hover {
  padding-right: 60px;
  text-indent: -20px;
}
.contact-parent.simulator .contact-parent__subpage {
  padding: 20px 25px;
  justify-content: space-around;
}
.contact__address__localisation {
  background: #085D69;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
}
.contact__address__localisation h6 {
  font-weight: 400;
  padding-bottom: 5px;
}
.contact__address__localisation__phone {
  padding-top: 5px;
  display: block;
  font-weight: 600;
}
/* wpcf7 custom radio */
.wpcf7-form .wpcf7-radio label {
  position: relative;
  cursor: pointer;
}
.wpcf7-form .wpcf7-radio input[type=radio] {
  position: relative;
  visibility: hidden;
  margin: 0;
}
.wpcf7-form .wpcf7-radio input[type=radio] + span {
  font-size: 18px;
  vertical-align: middle;
}
.wpcf7-form .wpcf7-radio input[type=radio] + span:before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 22px;
  width: 22px;
  top: 50%;
  left: 0;
  border: 1px solid #ABA89FB2;
  transform: translateY(-50%);
}
.wpcf7-form .wpcf7-radio input[type=radio] + span:after {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 10px;
  width: 10px;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
}
.wpcf7-form .wpcf7-radio input[type=radio]:checked + span:after {
  background: #085D69;
  visibility: visible;
}
.contact__form__row.checkbox {
  font-size: 18px;
  margin-left: 5px;
  line-height: 1.5;
}
.contact__form__row.checkbox .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact__form__row.checkbox .wpcf7-form-control-wrap .wpcf7-list-item-label {
  margin-left: 20px;
}
.contact__form__row.checkbox .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio {
  display: flex;
}
.contact__form__row.checkbox .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.contact__form__row.checkbox .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=radio] {
  display: none;
}
.contact__form__row.checkbox .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  padding-left: 30px;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
}
.blog .card {
  color: #363636;
}
.blog .load-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 20px;
}
.blog .burger {
  background-color: #fff;
  opacity: 0.8;
}
.blog .burger > span {
  background-color: #085D69;
}
.blog .card__button::after {
  margin-left: 0px;
}
.blog .card:hover .card__button::after {
  margin-left: 8px;
}
.blog #load-more {
  padding: unset;
  width: 270px;
  height: 58px;
  position: relative;
}
.blog #load-more::after {
  position: absolute;
  right: 18px;
  width: 34px;
  height: 34px;
  opacity: 0;
  transition: 0.3s;
  background: url(img/arrow-white-right.svg) no-repeat center;
}
.blog #load-more:hover {
  padding-right: 38px;
}
.blog #load-more:hover::after {
  margin-left: unset;
  position: absolute;
  right: 18px;
  opacity: 1;
  width: 34px;
  height: 34px;
}
.page-template-simulator {
  color: #363636;
}
.page-template-simulator .header.header.headroom--bottom {
  box-shadow: none;
}
.page-template-simulator .header__logo {
  max-width: 470px;
}
.page-template-simulator .header__logo__simu {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
}
.page-template-simulator .header__logo__title {
  color: #085D69;
  font-size: 16px;
  font-weight: 600;
  border-left: 1px solid #C3C3C3;
  padding-left: 32px;
  text-transform: uppercase;
}
.simulator--step1 .simulator-top {
  padding-bottom: 0;
}
.simulator--step2 .simulator-top {
  padding-bottom: unset;
}
.simulator--step3 .simulator-top {
  padding-bottom: unset;
}
.simulator--step4 .simulator-top {
  padding-bottom: unset;
}
.no-materiaux {
  text-align: center;
}
.simulator-top .progressBar__container {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #E7EFF0;
}
.simulator-top .progressBar__route {
  padding: 28px 4px 12px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  font-size: 10px;
}
.simulator-top .progressBar__route button {
  text-transform: uppercase;
}
.simulator-top .progressBar__route.selected {
  border-bottom: 2px solid #085D69;
  color: #085D69;
}
.simulator-top .progressBar__route__epaisseur {
  position: absolute;
  top: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #363636;
  color: #fff;
  border-radius: 20px;
  padding: 2px 6px;
  font-size: 10px;
}
.simulator-top .h6 {
  margin: 20px auto;
  max-width: 430px;
  width: 90%;
  text-align: center;
}
.simulator-step {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  max-height: 100vh;
}
.simulator-step:not(.simulator--step5) .simulator-step-aside {
  padding-top: 0;
}
.simulator-step-left {
  padding-top: 24px;
  height: 65vh;
  position: relative;
}
.simulator-step__cards {
  max-width: 600px;
  margin: 0 auto;
}
.simulator-step__card {
  display: flex;
  gap: 30px;
  padding: 10px;
  align-items: center;
  border-radius: 16px;
  transition: all 0.1s ease-in;
  position: relative;
  margin: 15px 20px;
  border: 1px solid #F4EDE6;
}
.simulator-step__card__visu {
  background-color: #F4EDE6;
  border-radius: 10px;
  max-width: 104px;
  min-height: 128px;
  -o-object-fit: cover;
     object-fit: cover;
}
.simulator-step__card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.simulator-step__card__content .checked {
  display: none;
  width: 24px;
  position: absolute;
  right: 10px;
  top: -10px;
}
.simulator-step__card__title {
  font-size: 20px;
  font-weight: 600;
}
.simulator-step__card__colors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.simulator-step__card__color {
  border: 1px solid #E7EFF0;
  border-radius: 32px;
  padding: 4px 8px;
  display: flex;
  gap: 4px;
  background-color: #fff;
}
.simulator-step__card__color .pastille {
  border-radius: 50%;
  height: 14px;
  width: 14px;
}
.simulator-step__card__color .text-color {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
.simulator-step__card.selected,
.simulator-step__card:hover {
  background-color: #F4EDE6;
  cursor: pointer;
}
.simulator-step__card.selected .simulator-step__card__visu,
.simulator-step__card:hover .simulator-step__card__visu {
  background-color: #fff;
}
.simulator-step__card.selected .simulator-step__card__title,
.simulator-step__card:hover .simulator-step__card__title {
  color: #085D69;
}
.simulator-step__card.selected .checked {
  display: block;
}
.simulator-step__input {
  margin: 40px 20px;
}
.simulator-step__input__title {
  font-weight: 600;
  font-size: 16px;
  display: block;
}
.simulator-step__input__desc {
  font-size: 14px;
  margin: 5px 0 15px;
}
.simulator-step__input__block {
  font-size: 18px;
}
.simulator-step__input__block input {
  border: 0;
  border-radius: 8px;
  background: #E7EFF0;
  padding: 18px 24px;
  margin-right: 10px;
  width: 153px;
  /* Firefox */
}
.simulator-step__input__block input::-webkit-outer-spin-button,
.simulator-step__input__block input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.simulator-step__input__block input[type=number] {
  -moz-appearance: textfield;
}
.simulator-step__input__block .error {
  font-size: 14px;
  color: #085D69;
  margin-top: 7px;
  display: block;
}
.simulator-step__input__dropdown {
  background: #E7EFF0;
  padding: 18px 0 0;
  width: 153px;
  margin-top: -14px;
  border-radius: 0 0 8px 8px;
}
.simulator-step__input__dropdown li {
  padding: 8px 24px;
}
.simulator-step__input__dropdown li:hover {
  background-color: #085D69;
  color: #fff;
  cursor: pointer;
}
.simulator-step__input__dropdown li:hover:last-child {
  border-radius: 0 0 8px 8px;
}
.simulator-step__resume {
  margin: 40px 20px;
}
.simulator-step__resume__head {
  display: none;
}
.simulator-step__resume__price {
  text-align: right;
  width: 100%;
  white-space: nowrap;
}
.simulator-step__resume__quantity {
  text-align: right;
  width: 100%;
}
.simulator-step__resume__total {
  text-align: right;
  width: 100%;
}
.simulator-step__resume__product {
  border-top: 1px solid #E7EFF0;
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  flex-direction: column;
}
.simulator-step__resume__product:last-child {
  border-bottom: 1px solid #E7EFF0;
}
.simulator-step__resume__content {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.simulator-step__resume__visu {
  background-color: #F4EDE6;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 90px;
  min-height: unset;
  width: 100%;
  margin-right: 10px;
}
.simulator-step__resume__title {
  font-size: 16px;
}
.simulator-step__resume__desc {
  font-size: 14px;
}
.simulator-step__resume__sku {
  font-size: 12px;
  color: #888888;
  padding: 8px 0 0;
}
.simulator-step__resume__quantity {
  min-width: 60px;
  text-align: right;
  padding: 0 5px;
  font-weight: 600;
}
.simulator-step__resume__quantity .text {
  font-weight: 400;
}
.simulator-step-aside {
  position: relative;
  height: 35vh;
  overflow: hidden;
}
.simulator-step-aside > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.simulator-step-aside__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.simulator-step-aside .custom-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  flex-direction: row;
  gap: 16px;
  z-index: 1;
  padding: 8px;
}
.simulator-step-aside .custom-controls .custom-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: auto;
}
.simulator-step-aside .custom-controls .custom-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
}
.simulator-step-aside .custom-controls .custom-pagination .swiper-pagination-bullet:hover {
  background-color: #085D69;
}
.simulator-step-aside .custom-controls .custom-pagination .swiper-pagination-bullet-active {
  background-color: #085D69;
}
.simulator-step-aside .custom-controls .custom-prev,
.simulator-step-aside .custom-controls .custom-next {
  background: #fff;
  border-radius: 50%;
  width: 100%;
  display: flex;
  height: 38px;
  width: 38px;
  align-items: center;
  justify-content: center;
}
.simulator-step-aside .custom-controls .custom-prev.swiper-button-disabled .custom-pagination-arrow,
.simulator-step-aside .custom-controls .custom-next.swiper-button-disabled .custom-pagination-arrow {
  opacity: 0.6;
}
.simulator-step-aside .custom-controls .custom-next {
  transform: rotate(180deg);
}
.simulator-step-aside__resume {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #F4EDE6;
  padding: 40px 20px;
  flex-direction: column;
  max-height: 422px;
}
.simulator-step-aside__resume .resume__visu {
  max-width: 30vw;
  margin: 0 20px;
}
.simulator-step-aside__resume .resume__desc {
  font-weight: 600;
  color: #363636;
}
.simulator-step-aside__resume .resume__title {
  text-transform: uppercase;
  font-size: 16px;
}
.simulator-step-aside__resume .resume__details {
  -moz-columns: 2;
       columns: 2;
}
.simulator-step-aside__resume .resume__details > *:not(:last-child):after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #ADC2C0;
  position: absolute;
  bottom: 0;
}
.simulator-step-aside__resume .resume__details > *:nth-child(2)::after {
  display: none;
}
.simulator-step-aside__resume .resume__group {
  padding: 24px 0;
  position: relative;
  max-width: 280px;
}
.simulator-step-aside__resume .resume__name {
  text-transform: uppercase;
  color: #888888;
  font-size: 10px;
}
.simulator-step-aside__resume .resume__choice {
  font-size: 14px;
}
.simulator-step-aside__resume .resume__btn {
  display: flex;
  align-items: center;
  color: #085D69;
  gap: 16px;
  padding-top: 10px;
}
.simulator-step-aside__resume .resume__btn img {
  transition: 0.5s all ease-in;
}
.simulator-step-aside__resume .resume__btn:hover img {
  transform: rotate(180deg);
}
.simulator-step__btns {
  border-top: 1px solid #E7EFF0;
  margin: 0 auto;
  text-align: center;
  position: fixed;
  bottom: 0;
  background-color: #FFFFFF;
}
.simulator-step__btns:not(.step5) {
  width: 100%;
}
.simulator-step__btns:not(.step5) .btn.btn--blue.btn--blue--arrow {
  width: 90%;
}
.simulator-step__btns.step5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  height: 112px;
  left: 0;
  bottom: 0;
  background-color: #fff;
  max-width: 100%;
  align-items: center;
  transform: translateX(0);
}
.simulator-step__btns.step5 > * {
  flex: 0 1 48%;
  padding: 0 20px !important;
  max-width: 300px;
}
.simulator-step__btns.step5 > *:last-child {
  background-color: #fff;
  text-decoration: underline;
  color: #085D69;
  height: unset;
  margin: 0 0 40px;
}
.simulator-step__btns.step5 .btn {
  margin: 10px auto 0;
}
.simulator-step__btns.step5 .btn--underline {
  white-space: nowrap;
  margin: 0 auto 10px;
}
.simulator-step__btns .btn {
  max-width: unset;
  background-color: #085D69;
  margin: 25px auto;
  color: #fff;
}
.simulator-step__btns .btn.loading {
  opacity: 0.4;
  cursor: wait;
  pointer-events: none;
  text-decoration: none;
}
.simulator-step__btns .btn.beige {
  background-color: #F4EDE6;
  color: #363636;
}
.simulator-step__btns .btn.save {
  background-color: #085D69;
  color: #fff;
  height: 56px;
  text-decoration: none;
  padding: 0 30px !important;
  margin: 25px auto;
}
.simulator-step__btns .btn.save:hover::after {
  right: 10px;
}
.simulator-step.connected .simulator-step__summary {
  margin: 0 20px;
}
.simulator-step.connected .simulator-step__summary .summary-row {
  padding: 16px 0;
  font-weight: 600;
  border-bottom: 1px solid #E7EFF0;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.simulator-step.connected .simulator-step__summary .summary-construction {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 600;
  border-bottom: 1px solid #E7EFF0;
}
.simulator-step.connected .simulator-step__summary .summary-construction__label {
  line-height: 1.1;
}
.simulator-step.connected .simulator-step__summary .summary-construction small {
  font-size: 12px;
  font-weight: 400;
}
.simulator-step.connected .simulator-step__summary .summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}
.simulator-step.connected .simulator-step__summary .summary-total__label {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.7;
}
.simulator-step.connected .simulator-step__summary .summary-total__value {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #085D69;
}
.simulator-step.connected .simulator-step__summary .summary-total small {
  font-size: 12px;
  font-weight: 400;
}
.simulator-step.connected .simulator-step__additional {
  display: flex;
  background-color: #F4EDE6;
  border-radius: 8px;
  padding: 8px;
  align-items: center;
  margin: 16px 20px;
  flex-direction: column;
}
.simulator-step.connected .simulator-step__additional label {
  margin: unset;
  font-weight: 600;
  font-size: 16px;
  color: #363636;
  padding: 8px;
}
.simulator-step.connected .simulator-step__additional--input {
  background: #fff;
  width: 100%;
  height: 58px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
}
.simulator-step.connected .simulator-step__additional--input button.btn--apply {
  position: absolute;
  right: 6px;
  border-radius: 8px;
  background-color: #085D69;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  width: 96px;
  height: 40px;
  text-align: center;
}
.simulator-step.connected .simulator-step__additional--input input {
  border: none;
  width: calc(100% - 96px);
  -moz-appearance: textfield;
}
.simulator-step.connected .simulator-step__additional--input input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.simulator-step.connected .simulator-step__additional--input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.simulator__top {
  height: calc(100% - 112px);
  overflow: auto;
  padding: 20px 0;
}
main.simulator {
  height: 100vh;
  overflow: hidden;
}
.simulator--step5 .simulator-step-aside {
  overflow: auto;
  height: 50vh;
}
.simulator--step5 .simulator-step-aside__resume .simulator-step-aside__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.simulator--step5 .simulator-step-left {
  height: 50vh;
}
/**
 * Override
 *
 * override styles of core wordpress or plugins
 */
#infinite-handle.ctis-load-more-container,
#ctis-loading.infinite-loader,
.ctis-finished-notice {
  width: 100% !important;
}
#infinite-handle .ctis-load-more button,
#infinite-handle .ctis-load-more button:hover {
  color: #085D69;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #085D69;
  padding: 16px 40px;
  border-radius: 50px;
}
/**
 * Woocommerce
 *
 * override styles of Woocommerce plugin
 */
.woocommerce .archive-product .woocommerce-products-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #E7EFF0;
  padding: 0 20px 30px;
}
.woocommerce .archive-product .woocommerce-products-header .term-description {
  display: none;
}
.woocommerce .archive-product h1 {
  font-weight: 400;
}
.woocommerce-archive__header {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid #E7EFF0;
  flex-direction: column;
}
.woocommerce-archive__header .term-description {
  margin-bottom: 30px;
}
.woocommerce-archive__header__subcategory {
  overflow: auto;
}
.woocommerce-archive__header .subcategories-list {
  display: flex;
  gap: 30px;
  overflow: auto;
  padding-bottom: 20px;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.woocommerce-archive__header .subcategories-list::-webkit-scrollbar {
  height: 7px;
}
.woocommerce-archive__header .subcategories-list::-webkit-scrollbar-track {
  background: #E7EFF0;
}
.woocommerce-archive__header .subcategories-list::-webkit-scrollbar-thumb {
  background: #085D6980;
}
.woocommerce-archive__header .subcategories-list::-webkit-scrollbar-thumb:hover {
  background: #085D69;
}
.woocommerce-archive__header .subcategories-list .subcategory-item a {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  gap: 20px;
  padding: 10px 20px 10px 10px;
  border: 1px solid #E7EFF0;
  border-radius: 77px;
  color: #085D69;
  font-size: 16px;
  font-weight: 600;
  max-width: 270px;
  transition: 0.2s ease-in;
  position: relative;
  overflow: hidden;
}
.woocommerce-archive__header .subcategories-list .subcategory-item a:before {
  content: '';
  background-color: #E7EFF0;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  transition: 0.2s ease-in;
  border-radius: 77px;
  z-index: -1;
}
.woocommerce-archive__header .subcategories-list .subcategory-item a img {
  transition: 0.2s ease-in;
}
.woocommerce-archive__header .subcategories-list .subcategory-item a:hover:before {
  width: 100%;
}
.woocommerce-archive__header .subcategories-list .subcategory-item a:hover img {
  transform: scale(1.2);
}
.woocommerce-archive__content {
  display: flex;
  flex-wrap: nowrap;
  transition: 0.2s width ease-in;
  margin: 0 auto;
  padding: 15px 20px;
  width: 100%;
}
.woocommerce-archive__content #productFilters {
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  transition: 0.2s all ease-in;
}
.woocommerce-archive__content #productFilters.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  background: white;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
  opacity: 1;
  visibility: visible;
  margin-right: 150px;
}
.woocommerce-archive__content #productFilters .filters-head {
  padding: 30px 20px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E7EFF0;
  display: flex;
  justify-content: space-between;
}
.woocommerce-archive__content #productFilters #product-filter-form {
  padding: 0 20px;
}
.woocommerce-archive__content #productFilters #product-filter-form .filter-group {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.woocommerce-archive__content #productFilters #product-filter-form .filter-group-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.woocommerce-archive__content #productFilters #product-filter-form .filter-group-inner {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.woocommerce-archive__content #productFilters #product-filter-form .filter-group .label-container {
  display: flex;
  gap: 12px;
}
.woocommerce-archive__content #productFilters #product-filter-form .filter-group .label-container:hover {
  cursor: pointer;
}
.woocommerce-archive__content #productFilters #product-filter-form .filter-group .label-container:hover .term-count {
  background-color: #363636;
  color: #fff;
}
.woocommerce-archive__content #productFilters #product-filter-form .filter-group .term-count {
  background-color: #E7EFF0;
  padding: 5px 6px;
  border-radius: 28px;
  display: block;
  font-size: 11px;
  line-height: 0.6em;
}
.woocommerce-archive__content #productFilters #product-filter-form .filter-group-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.woocommerce-archive__content #productFilters #product-filter-form .filter-title {
  color: #9A9A9A;
  font-weight: 400;
}
.woocommerce-archive__content #reset-filters {
  margin-top: 20px;
}
.woocommerce-archive__content .products {
  width: 100%;
  transition: 0.2s all ease-in;
}
.woocommerce-archive__content .products .woocommerce-loop-product__title {
  text-align: center;
  color: #363636;
  font-size: 14px !important;
  font-weight: 600;
  padding-top: 10px !important;
}
.woocommerce-archive__content .products .product-dimensions {
  text-align: center;
}
.woocommerce #btnFilter {
  margin: 24px auto 9px;
  width: calc(100% - 40px);
  max-width: 320px;
}
.woocommerce .btn-filter {
  display: flex;
  gap: 10px;
}
.woocommerce .btn-filter:before {
  content: url('./img/icon-filter.svg)');
  display: block;
  background-repeat: no-repeat;
  margin-top: 3px;
}
.woocommerce .product-item {
  position: relative;
  overflow: hidden;
}
.woocommerce .product-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
}
.woocommerce .product-thumbnail img {
  width: 100%;
  transition: opacity 0.3s ease-in-out;
  aspect-ratio: 655 / 555;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.woocommerce .product-thumbnail .primary-image {
  border: 1px solid #F4EDE6;
}
.woocommerce .secondary-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.woocommerce .product-item:hover .secondary-image {
  opacity: 1;
}
.woocommerce .product-item:hover .see-product-btn:after {
  transform: scale(0.8);
  opacity: 1;
  margin-left: 10px;
}
.woocommerce .product-details {
  position: relative;
  z-index: 10;
}
.woocommerce .see-product-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #085D69;
  color: #fff;
  padding: 10px 20px;
  width: 80%;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  text-align: center;
  transition: 0.2s all ease-in;
  justify-content: center;
}
.woocommerce .see-product-btn:after {
  content: url("img/arrow-white-right.svg");
  opacity: 0;
  transition: 0.2s all ease-in;
}
.woocommerce .woocommerce-product-list {
  width: 100%;
}
.woocommerce .woocommerce-pagination {
  margin-bottom: 60px;
}
.woocommerce .woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  gap: 10px;
}
.woocommerce .woocommerce-pagination .page-numbers li {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border: 0;
}
.woocommerce .woocommerce-pagination .page-numbers .page-numbers {
  background-color: #F4EDE6;
  color: #085D69;
  width: 100%;
  height: 100%;
}
.woocommerce .woocommerce-pagination .page-numbers .page-numbers.current,
.woocommerce .woocommerce-pagination .page-numbers .page-numbers:hover:not(.prev):not(.next) {
  background-color: #085D69;
  color: #fff;
}
.woocommerce .woocommerce-pagination .page-numbers .page-numbers.next,
.woocommerce .woocommerce-pagination .page-numbers .page-numbers.prev {
  background-color: unset;
  font-size: 0;
}
.woocommerce .woocommerce-pagination .page-numbers .page-numbers.next:before,
.woocommerce .woocommerce-pagination .page-numbers .page-numbers.prev:before {
  display: flex;
  font-size: 14px;
}
.woocommerce .woocommerce-pagination .page-numbers .page-numbers.next:before {
  content: 'Suivant';
}
.woocommerce .woocommerce-pagination .page-numbers .page-numbers.prev:before {
  content: 'Précédent';
}
.single-product .product {
  display: flex;
  flex-direction: column;
}
.single-product .product.has-post-thumbnail {
  margin-bottom: 30px;
}
.single-product .product_title {
  font-weight: 400;
  width: 80%;
}
.single-product .product .summary {
  position: relative;
  height: auto;
  background: #F4EDE6;
  display: block;
  margin-bottom: 0 !important;
  width: 90% !important;
  margin: 0 auto;
}
.single-product .product .summary-fixed {
  position: sticky;
  top: 70px;
  left: 60px;
  padding: 50px 30px;
}
.single-product .product_meta {
  margin: 10px 0;
}
.single-product .product_meta__lists {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-product .product_meta__lists > *:first-child {
  border-bottom: 1px solid #DDDFD9;
}
.single-product .product-file {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  width: 306px;
}
.single-product .product-gallery-container {
  display: flex;
  border: 1px solid #E7EFF0;
  padding: 20px;
  position: relative;
  height: 100%;
}
.single-product .product-gallery-container .overview-thumbnails {
  display: none;
}
.single-product .product-gallery-container .swiperGallery {
  overflow: hidden;
}
.single-product .product-gallery-container .vertical-gallery .swiper-slide {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-right: 10px;
}
.single-product .product-gallery-container .gallery-image {
  margin-bottom: 10px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.single-product .product-gallery-container .overview-thumbnail {
  cursor: pointer;
  margin-bottom: 5px;
  width: 100px;
  height: auto;
}
.single-product .woocommerce-product-gallery {
  display: none;
}
.single-product .product-dimensions {
  margin: 30px 0;
  color: #085D69;
  font-size: 14px;
}
.single-product .product-attributes,
.single-product .product-conditionnements {
  transition: 0.2s all ease-in;
  margin-top: 10px;
  height: 0;
}
.single-product .product-attributes-title,
.single-product .product-conditionnements-title {
  cursor: pointer;
  color: #085D69;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-product .product-attributes-title.open::after,
.single-product .product-conditionnements-title.open::after {
  content: "-";
  /* Symbol for open state */
  float: right;
}
.single-product .product-attributes-title::after,
.single-product .product-conditionnements-title::after {
  content: "+";
  /* Symbol for closed state */
  float: right;
  font-size: 30px;
}
.single-product .product-attributes-wrapper,
.single-product .product-conditionnements-wrapper {
  padding: 10px 0;
  width: 100%;
}
.single-product .product-attributes.active,
.single-product .product-conditionnements.active {
  height: 100%;
}
.single-product .product-attribute {
  margin-bottom: 5px;
}
.single-product .related.products {
  text-align: center;
  margin: 0 60px;
}
.single-product .related.products .products {
  overflow: hidden;
}
.single-product .related.products h2 {
  text-align: center;
  margin: 60px 0 30px;
  font-weight: 400;
}
.single-product .related.products h2.woocommerce-loop-product__title {
  text-align: center;
  padding-top: 30px !important;
}
.single-product .related.products .swiperRelated .product {
  flex-direction: column;
  width: 100% !important;
}
.single-product .related.products .swiperRelated .product .woocommerce-loop-product__title {
  color: #363636;
  font-weight: 600;
}
.single-product .related.products .swiperRelated .swiper-wrapper {
  width: 100%;
}
.single-product .related.products .swiperRelated .swiper-slide:not(:first-child) {
  margin-left: 10px;
}
.single-product .related.products .swiperRelated .swiper-slide .product-thumbnail img {
  aspect-ratio: 580/433;
}
.single-product .related.products .swiperRelated .swiper-slide .product-dimensions {
  margin: 0;
}
.woocommerce-account.woocommerce-lost-password main {
  padding: 70px 20px;
}
.woocommerce-account.woocommerce-lost-password .lost_reset_password {
  display: flex;
  flex-direction: column;
}
.woocommerce-account.woocommerce-lost-password .lost_reset_password h1 {
  padding-bottom: 32px;
}
.woocommerce-account.woocommerce-lost-password .lost_reset_password label {
  color: #363636;
  font-weight: 600;
  font-size: 16px;
}
.woocommerce-account.woocommerce-lost-password .lost_reset_password input {
  border-radius: 8px;
  background: #E7EFF0;
  border: none;
  height: 54px;
  padding: 14px 24px;
}
.woocommerce-account.woocommerce-lost-password .lost_reset_password .show-password-input {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce-account.woocommerce-lost-password .lost_reset_password .show-password-input::after {
  content: url(img/password-eye.svg);
}
.woocommerce-account.woocommerce-lost-password .lost_reset_password .show-password-input::after {
  content: url(img/password-eye.svg);
}
.woocommerce-account.woocommerce-lost-password .lost_reset_password .password-info {
  font-size: 12px;
  color: #363636;
  font-weight: 400;
  padding-top: 0;
}
.woocommerce-account.woocommerce-lost-password .lost_reset_password button[type=submit] {
  display: flex;
  width: 301px;
  padding: 18px 56px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 50px;
  background: #085D69;
  color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  display: none;
}
.woocommerce-account .woocommerce-MyAccount-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-content > p:not(#breadcrumbs) {
  display: none;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container {
  display: flex;
  margin-bottom: 100px;
  flex-direction: column;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation {
  width: 100%;
  display: none;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation {
  display: block;
  width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation ul {
  display: grid;
  grid-row-gap: 8px;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation ul li.stretched-link {
  background-color: #D1E1E2;
  height: 86px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #363636;
  transition: all 0.45s cubic-bezier(0.54, -0.38, 0, 1.55);
  border-radius: 8px;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation ul li.stretched-link .endpoint-icon {
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  margin-left: 16px;
  margin-right: 16px;
  transform: scale(1.1);
  transition: all 0.45s cubic-bezier(0.54, -0.38, 0, 1.55);
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation ul li.stretched-link .endpoint-icon img {
  width: 20px;
  height: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation ul li.stretched-link .endpoint-label {
  font-weight: 600;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation ul li.stretched-link.is-active {
  background-color: #085D69;
  color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation ul li.stretched-link.is-active .endpoint-icon {
  transform: scale(1);
  border: 8px solid #B1CED2;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation ul li.stretched-link:not(.is-active):hover {
  background-color: #90B9BE;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation ul li.stretched-link:not(.is-active):hover .endpoint-icon {
  transform: scale(1);
  border: 8px solid #B1CED2;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .navigation .woocommerce-MyAccount-navigation ul li:last-child {
  margin-top: 40px;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column {
  margin-top: 40px;
  width: 100%;
  padding-left: 0;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column__title {
  padding-bottom: 32px;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account {
  margin-top: 60px;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset {
  margin-bottom: 24px;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset legend {
  padding-bottom: 32px;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset label {
  color: #363636;
  font-weight: 600;
  font-size: 16px;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset input {
  border-radius: 8px;
  background: #E7EFF0;
  border: none;
  height: 54px;
  padding: 14px 24px;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset .show-password-input {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset .show-password-input::after {
  content: url(img/password-eye.svg);
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset .show-password-input::after {
  content: url(img/password-eye.svg);
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset .password-info {
  font-size: 12px;
  color: #363636;
  font-weight: 400;
  padding-top: 0;
}
.woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account button[type=submit] {
  display: flex;
  width: 301px;
  padding: 18px 56px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 50px;
  background: #085D69;
  color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-container {
  padding-bottom: 90px;
  margin-bottom: 110px;
  position: relative;
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 40px;
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-heading .welcome-message__txt {
  color: #363636;
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-heading .btn--logout {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 3;
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-links {
  display: grid;
  grid-row-gap: 8px;
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-links li {
  background-color: #D1E1E2;
  aspect-ratio: unset;
  height: 86px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #363636;
  padding: 3vw 5px;
  transition: all 0.45s cubic-bezier(0.54, -0.38, 0, 1.55);
  border-radius: 8px;
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-links li .dashboard-links__icon {
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  margin-left: 16px;
  margin-right: 16px;
  transition: all 0.45s cubic-bezier(0.54, -0.38, 0, 1.55);
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-links li .dashboard-links__icon img {
  width: 20px;
  height: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-links li .dashboard-links__txt {
  font-weight: 600;
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-links li:hover {
  background-color: #085D69;
  color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content .dashboard-links li:hover .dashboard-links__icon {
  transform: scale(0.9);
  border: 18px solid #D1E1E2;
}
.gallery-container {
  border-top: 1px solid #E7E0D9;
}
.gallery-container .accordion {
  border-bottom: 1px solid #E7E0D9;
  overflow: hidden;
}
.gallery-container .accordion__header {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem 0;
  color: #363636;
}
.gallery-container .accordion__header--left {
  display: flex;
}
.gallery-container .accordion__header img {
  width: 60px;
  height: 60px;
  margin-right: 24px;
}
.gallery-container .accordion:has(input:checked) .accordion__header {
  color: #085D69;
}
.gallery-container .accordion-thumbnail {
  opacity: 1;
  transition: all 0.45s ease;
}
.gallery-container .accordion-label {
  transform: translateX(0);
  transition: transform 450ms ease;
}
.gallery-container .accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.gallery-container .accordion__content ul:not(.fake-table__ul) {
  display: grid;
  grid-template-columns: repeat(3, minmax(33%, 1fr));
  grid-gap: 8px;
  margin-bottom: 12px;
}
.gallery-container .accordion__content ul:not(.fake-table__ul) li {
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-container .accordion__content ul:not(.fake-table__ul) li img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-container .accordion__content .child-gallery {
  margin-bottom: 32px;
}
.gallery-container .accordion__content .child-gallery__title {
  font-size: 14px;
  padding-bottom: 12px;
}
.gallery-container .accordion__content .child-gallery__title span {
  font-weight: 600;
}
.gallery-container .accordion input {
  display: none;
}
.gallery-container .accordion:has(input:checked) {
  border-color: #E7E0D9;
  background-color: #fff;
}
.gallery-container .accordion input:checked ~ .accordion__content {
  max-height: 534px;
}
.chevron {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
/* Chevron pointant vers le bas */
.chevron::before,
.chevron::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 14px;
  background-color: #085D69;
  transition: transform 450ms;
}
/* Rotation des lignes pour le chevron */
.chevron::before {
  transform: rotate(-45deg);
  left: 0;
}
.chevron::after {
  transform: rotate(45deg);
  left: 10px;
}
.accordion input:checked ~ .accordion__header .chevron {
  border: 2px solid #085D69;
}
.accordion input:checked ~ .accordion__header .chevron::before {
  transform: rotate(45deg);
  left: calc(50% - 1px);
}
.accordion input:checked ~ .accordion__header .chevron::after {
  transform: rotate(-45deg);
  left: calc(50% - 1px);
}
.accordion input:checked ~ .accordion__header .accordion-thumbnail {
  transform: translateX(-100%);
  opacity: 0;
}
.accordion input:checked ~ .accordion__header .accordion-label {
  transform: translateX(-84px);
  font-weight: 600;
}
.table-info-customer {
  width: 100%;
  border-top: 1px solid #E7E0D9;
  border-collapse: collapse;
}
.table-info-customer td {
  padding: 20px 16px;
  border-collapse: collapse;
  border-bottom: 1px solid #E7E0D9;
  color: #363636;
  font-size: 16px;
  font-weight: 600;
}
.table-info-customer td:first-child {
  color: #888;
  font-size: 16px;
  font-weight: 400;
}
.table-document {
  width: 100%;
  border-top: 1px solid #E7E0D9;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 20px;
}
.table-document td {
  padding: 20px 16px;
  border-collapse: collapse;
  border-bottom: 1px solid #E7E0D9;
  color: #888;
  font-size: 14px;
  font-weight: 400;
}
.table-document td a {
  text-decoration: underline;
  color: #085D69;
}
.table-document td:nth-child(3) {
  color: #363636;
}
.fake-table {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 20px;
}
.fake-table__title {
  font-size: 14px;
  padding-bottom: 12px;
  color: #363636;
}
.fake-table ul.fake-table__ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fake-table ul.fake-table__ul li {
  display: grid;
  grid-template-columns: repeat(2, min-content) auto;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 8px;
  grid-row-gap: 0px;
  border: 1px solid #E7E0D9;
  border-radius: 10px;
  padding: 12px;
}
.fake-table ul.fake-table__ul li .li-item {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.fake-table ul.fake-table__ul li .li-title {
  color: #363636;
  font-size: 16px;
  font-weight: 600;
  grid-area: 1 / 1 / 2 / 4;
  padding-bottom: 6px;
}
.fake-table ul.fake-table__ul li .li-date {
  grid-area: 2 / 1 / 3 / 2;
  color: #888;
}
.fake-table ul.fake-table__ul li .li-date span {
  display: none;
}
.fake-table ul.fake-table__ul li .li-third {
  grid-area: 2 / 2 / 3 / 3;
  color: #363636;
}
.fake-table ul.fake-table__ul li .li-link {
  grid-area: 2 / 3 / 3 / 4;
  display: flex;
  justify-content: flex-end;
}
.fake-table ul.fake-table__ul li .li-link a {
  text-decoration: underline;
  color: #085D69;
}
.project-content ul li {
  border-bottom: 1px solid #E7E0D9;
  padding: 12px 0;
}
.project-content ul li.th {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.4fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}
.project-content ul li.parent {
  display: grid;
  grid-template-columns: 0.4fr repeat(2, 0.6fr) repeat(3, 0.4fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
}
.project-content ul li.parent .div1 {
  grid-area: 1 / 1 / 4 / 2;
}
.project-content ul li.parent .div1 img {
  aspect-ratio: 87/61;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.project-content ul li.parent .div2 {
  grid-area: 1 / 2 / 2 / 4;
  font-weight: 600;
  font-size: 16px;
  color: #363636;
}
.project-content ul li.parent .div3 {
  grid-area: 2 / 2 / 3 / 4;
  color: #363636;
  font-size: 14px;
  font-weight: 400;
}
.project-content ul li.parent .div4 {
  grid-area: 3 / 2 / 4 / 4;
  color: #888888;
  font-size: 12px;
  font-weight: 400;
}
.project-content ul li.parent .div5 {
  grid-area: 1 / 4 / 4 / 5;
  color: #363636;
  font-size: 14px;
  font-weight: 400;
}
.project-content ul li.parent .div6 {
  grid-area: 1 / 5 / 4 / 6;
  color: #363636;
  font-size: 16px;
  font-weight: 600;
}
.project-content ul li.parent .div7 {
  grid-area: 1 / 6 / 4 / 7;
  color: #363636;
  font-size: 14px;
  font-weight: 400;
}
.project-content__totals {
  color: #363636;
}
.project-content__totals__summary {
  margin-bottom: 44px;
}
.project-content__totals__summary .summary-row {
  padding: 16px 0;
  font-weight: 600;
  border-bottom: 1px solid #E7EFF0;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.project-content__totals__summary .summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}
.project-content__totals__summary .summary-total__label {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.7;
}
.project-content__totals__summary .summary-total__value {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #085D69;
}
.project-content__totals__summary .summary-total small {
  font-size: 12px;
  font-weight: 400;
}
.project-content__totals__additional {
  display: flex;
  background-color: #F4EDE6;
  border-radius: 8px;
  padding: 8px;
  align-items: center;
  margin: 16px 0;
  flex-direction: column;
}
.project-content__totals__additional label {
  margin: unset;
  font-weight: 600;
  font-size: 16px;
  color: #363636;
  padding: 8px;
}
.project-content__totals__additional--input {
  background: #fff;
  width: 100%;
  height: 58px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
}
.project-content__totals__additional--input button.btn--apply {
  position: absolute;
  right: 6px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  width: 96px;
  height: 40px;
  text-align: center;
}
.project-content__totals__additional--input button.btn--apply.freeze {
  background-color: #888888;
  cursor: not-allowed;
  opacity: 0.4;
}
.project-content__totals__additional--input input {
  border: none;
  width: calc(100% - 96px);
  -moz-appearance: textfield;
}
.project-content__totals__additional--input input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.project-content__totals__additional--input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce-message {
  border-top-color: #085D69;
}
/**
 * Helpers
 * 
 * few CSS properties -> DRY (don't repeat yourself) 
 */
/* HERE PUT HELPERS CSS */
.h-hide-mob {
  display: none !important;
}
.h-hide-mob-only {
  display: none !important;
}
.h-hide-tablet-only {
  display: none !important;
}
.h-hide-tablet {
  display: inherit !important;
}
.h-hide-desktop {
  display: inherit !important;
}
.h-text-white {
  color: #fff;
}
.h-bg-beige {
  background-color: #F4EDE6;
}
/**
 * Print
 * 
 * styles for print version of page
 */
/**
 * Debug
 * 
 * show red lines of wrapped content - only for development purpose
 */
body:not(.elementor-editor-active) {
  /* DEBUG : RED LINE AS HELPER FOR ALIGNMENT  */
}
body:not(.elementor-editor-active).logged-in {
  /* center line */
  /* left/right lines */
}
body:not(.elementor-editor-active).logged-in:active:before,
body:not(.elementor-editor-active).logged-in:active:after {
  content: "";
  display: block;
  pointer-events: none;
  top: 0;
  position: fixed;
  z-index: 10000000;
  height: 100vh;
  /*animation: debug-line 3s infinite;*/
}
body:not(.elementor-editor-active).logged-in:active:before {
  width: 1px;
  background: red;
  left: 50%;
  right: auto;
  border: 0;
}
body:not(.elementor-editor-active).logged-in:active:after {
  width: auto;
  max-width: 1800px;
  margin: 0 auto;
  background: transparent;
  border-left: 1px solid red;
  border-right: 1px solid red;
  left: 20px;
  right: 20px;
  color: red;
  font-weight: bold;
}
/* debug line animation */
@keyframes debug-line {
  0% {
    width: 1px;
    background: red;
    left: 50%;
    right: auto;
    border: 0;
  }
  19% {
    width: 1px;
    background: red;
    left: 50%;
    right: auto;
    border: 0;
  }
  20% {
    width: auto;
    max-width: 1140px;
    margin: 0 auto;
    background: transparent;
    border-left: 1px solid red;
    border-right: 1px solid red;
    left: 4vw;
    right: 4vw;
  }
  100% {
    width: auto;
    max-width: 1140px;
    margin: 0 auto;
    background: transparent;
    border-left: 1px solid red;
    border-right: 1px solid red;
    left: 4vw;
    right: 4vw;
  }
}
@media screen and (min-width: 1px) {
  .fs-panel__top {
    display: flex;
    position: absolute;
    top: 42px;
    left: 20px;
    right: auto;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 320px) and (max-width: 1920px) {
  .qsn__quotation__title .h1 {
    font-size: calc(30px + (88 - 30) * ((100vw - 320px) / (1920 - 320)));
  }
  .woocommerce .archive-product h1 {
    font-size: calc(40px + (66 - 40) * ((100vw - 320px) / (1920 - 320)));
  }
  .single-product .product_title {
    font-size: calc(33px + (66 - 33) * ((100vw - 320px) / (1920 - 320)));
  }
}
@media screen and (min-width: 411px) {
  .wrap,
  .grid {
    padding: 0 30px;
  }
  body:not(.elementor-editor-active).logged-in:active:after {
    left: 30px;
    right: 30px;
  }
}
@media screen and (min-width: 411px) and (max-width: 767px) {
  .s-simulateur__image-2 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .s-qsn__image {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media screen and (min-width: 600px) {
  .footer__right {
    display: flex;
  }
  .footer__misc {
    gap: 7%;
    margin-right: 12%;
  }
  .footer__misc > *:nth-child(1) {
    align-self: center;
    margin-right: auto;
  }
  .footer__nav:not(:first-child) {
    margin-left: 20%;
  }
  .footer__nav ul li {
    margin: 40px 0;
  }
}
@media screen and (min-width: 768px) {
  body::after {
    content: 'tablet';
  }
  .wrap,
  .grid {
    padding: 0 4vw;
    max-width: calc(1800px + 8vw);
  }
  .wrap--xs,
  .grid--xs {
    max-width: calc(1100px + 8vw);
  }
  .wrap--sm,
  .grid--sm {
    max-width: calc(1080px + 8vw);
  }
  .wrap--lg,
  .grid--lg {
    max-width: calc(1660px + 8vw);
  }
  .wrap--1500,
  .grid--1500 {
    max-width: calc(1500px + 4vw);
    margin: 0 auto;
  }
  .wrap--1570,
  .grid--1570 {
    max-width: calc(1570px + 8vw);
  }
  .section-text {
    margin: 28px 0;
    font-size: 16px;
  }
  .breadcrumbs-large {
    padding: 32px 60px;
  }
  .card-gamme {
    margin: 3vw 0;
  }
  .card__title {
    font-size: 20px;
  }
  .header__logo {
    width: 32%;
  }
  .woocommerce .header__account a,
  .page-template-contact .header__account a,
  .woocommerce-account .header__account a,
  .parent-pageid-190 .header__account a {
    border: 2px solid var(--Primaire-Accent);
    color: var(--Primaire-Accent);
  }
  .woocommerce .header__account a::before,
  .page-template-contact .header__account a::before,
  .woocommerce-account .header__account a::before,
  .parent-pageid-190 .header__account a::before {
    filter: brightness(0) saturate(100%) invert(26%) sepia(16%) saturate(3989%) hue-rotate(150deg) brightness(95%) contrast(94%);
  }
  .home .header,
  .page-template-qsn .header,
  .page-template-simulator .header {
    border-bottom: none;
    background: none;
  }
  .home .headRoomFix,
  .page-template-qsn .headRoomFix,
  .page-template-simulator .headRoomFix {
    height: 0 !important;
  }
  .page-template-simulator .header__logo__title {
    display: block;
  }
  .fs-panel__top {
    top: 42px;
    right: 60px;
    left: auto;
  }
  .flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-direction: row;
    -ms-box-orient: horizontal;
    margin-left: -10px;
    margin-right: -10px;
    /* width: 100%; */
  }
  .flex-grid > * {
    width: calc(50% - 20px);
    margin: 10px 10px;
  }
  .backbutton {
    padding: 32px 60px;
  }
  .popup-overlay.simulator .popup-content {
    padding: 3vw 2.5vw;
  }
  .popup-content.form.login {
    padding: 40px 80px;
  }
  .popup-content {
    padding: 3vw 6.5vw;
  }
  .popup-content #contactChild {
    padding: 15px 45px;
  }
  .form__half,
  .contact__form__half {
    flex-direction: row;
  }
  .form__half > *,
  .contact__form__half > * {
    width: 50%;
  }
  .s-doc {
    background: linear-gradient(to right, var(--Primaire-Accent, #085D69) 41%, var(--Primaire-Accent-2, #F4EDE6) 0%);
    padding: 0;
    margin-bottom: 70px;
  }
  .s-doc__flex {
    display: flex;
    align-items: center;
  }
  .s-doc__left {
    flex: 0 0 55%;
  }
  .s-doc__right {
    flex: 0 0 45%;
    max-width: 340px;
  }
  .s-doc__title {
    margin-bottom: 20px;
  }
  .s-content {
    padding: 8vw 0;
  }
  .s-hero__flex {
    display: flex;
  }
  .s-hero__left__content {
    margin-top: 0;
  }
  .s-hero__left {
    flex: 0 0 35.5%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
  .s-hero__left .wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 6vh;
    margin-top: 90px;
    height: 100%;
  }
  .s-hero-hp .s-hero__left .wrap {
    gap: 30vh;
    justify-content: flex-end;
  }
  .s-gammes {
    padding: 6vw 0 5.2vw;
  }
  .s-actualites {
    margin: 7.2vw 0;
  }
  .s-actualites__slider {
    margin-top: 4.2vw;
  }
  .s-actualites__button {
    margin-top: 40px;
  }
  .qsn__desc__resume {
    padding: 0 11.5%;
  }
  .qsn__desc__bond {
    padding: 40px 11.5% 0;
  }
  .qsn__desc__bond__texts {
    gap: 60px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  .qsn__quotation {
    padding: 8.5% 11.5%;
  }
  .qsn__quotation__pictos {
    flex-wrap: wrap;
    flex-direction: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .contact-parent {
    margin: 5% auto;
    height: 80vh;
  }
  .contact-parent__title {
    margin: 40px auto;
  }
  .contact-parent__subpage {
    padding: 60px 55px;
    min-height: 290px;
    gap: 24px;
  }
  .contact-parent.simulator .contact-parent__subpage {
    padding: 32px 25px;
  }
  .page-template-simulator .header {
    background-color: #fff;
  }
  .simulator-top .progressBar__container {
    justify-content: center;
  }
  .simulator-top .progressBar__route {
    padding: 30px 20px;
    font-size: 12px;
  }
  .simulator-step-left {
    height: 50vh;
  }
  .simulator-step-aside {
    height: 50vh;
    padding-top: 130px;
  }
  .simulator-step-aside__resume {
    max-height: unset;
  }
  .simulator-step__btns.step5 {
    left: 50%;
    transform: translateX(-50%);
  }
  .simulator-step__btns.step5 .simulator-step-left {
    height: calc(100vh - 600px);
  }
  .simulator-step__btns.step5 .simulator-step-aside__resume {
    height: 600px;
    padding-top: 100px;
  }
  .simulator-step.connected .simulator-step__additional {
    flex-direction: row;
    justify-content: space-between;
  }
  .simulator-step.connected .simulator-step__additional--input {
    max-width: 320px;
  }
  .simulator--step5 .simulator-step-aside {
    overflow: auto;
  }
  .simulator--step5 .simulator-step-left {
    height: calc(100vh - 600px);
  }
  .simulator--step5 .simulator-step-aside__resume {
    height: 600px;
  }
  .project-content__totals__additional {
    flex-direction: row;
    justify-content: space-between;
  }
  .project-content__totals__additional--input {
    max-width: 320px;
  }
  .h-hide-mob-only {
    display: block !important;
  }
  .h-hide-tablet {
    display: none !important;
  }
  body:not(.elementor-editor-active).logged-in:active:after {
    left: 4vw;
    right: 4vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1920px) {
  h1,
  .h1 {
    font-size: calc(33px + (66 - 33) * ((100vw - 768px) / (1920 - 768)));
  }
  h2,
  .h2,
  .woocommerce-account.woocommerce-lost-password .lost_reset_password h1,
  .woocommerce-account .woocommerce-MyAccount-content .dashboard-heading .welcome-message__title {
    font-size: calc(28px + (55 - 28) * ((100vw - 768px) / (1920 - 768)));
  }
  h3,
  .h3,
  .woocommerce-account .woocommerce-MyAccount-content .account-container .main-column__title {
    font-size: calc(26px + (44 - 26) * ((100vw - 768px) / (1920 - 768)));
  }
  h4,
  .h4,
  .woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset legend {
    font-size: calc(22px + (35 - 22) * ((100vw - 768px) / (1920 - 768)));
  }
  h5,
  .h5 {
    font-size: calc(20px + (28 - 20) * ((100vw - 768px) / (1920 - 768)));
  }
  h6,
  .h6,
  .fs-panel__menu .second-level ul.product-categories li a,
  .woocommerce-account .woocommerce-MyAccount-content .dashboard-heading .welcome-message__txt {
    font-size: calc(18px + (23 - 18) * ((100vw - 768px) / (1920 - 768)));
  }
  .card-gamme__title {
    font-size: calc(20px + (28 - 20) * ((100vw - 768px) / (1920 - 768)));
  }
  .fs-panel__menu ul li a {
    font-size: calc(26px + (44 - 26) * ((100vw - 768px) / (1920 - 768)));
  }
  .gutenberg-content h1 {
    font-size: calc(26px + (44 - 26) * ((100vw - 768px) / (1920 - 768)));
  }
  .gutenberg-content h2 {
    font-size: calc(26px + (38 - 26) * ((100vw - 768px) / (1920 - 768)));
  }
  .gutenberg-content h3 {
    font-size: calc(26px + (32 - 26) * ((100vw - 768px) / (1920 - 768)));
  }
  .gutenberg-content h4 {
    font-size: calc(26px + (26 - 26) * ((100vw - 768px) / (1920 - 768)));
  }
  .gutenberg-content h5 {
    font-size: calc(26px + (20 - 26) * ((100vw - 768px) / (1920 - 768)));
  }
}
@media (min-width: 768px) {
  .myh1 {
    font-size: 44px;
  }
  .myh2 {
    font-size: 37px;
  }
  .myh3 {
    font-size: 29px;
  }
  .myh4 {
    font-size: 23px;
  }
  .myh5 {
    font-size: 19px;
  }
  .myh6 {
    font-size: 15px;
  }
  .myp {
    font-size: 12px;
    line-height: 1.8;
  }
  .gutenberg-content > *:not(:last-child):not(.wp-block-spacer) {
    margin-bottom: 13px;
  }
  .gutenberg-content .wp-block-group {
    padding: 80px 100px;
  }
  .gutenberg-content {
    --wp--preset--spacing--20: 13px;
    --wp--preset--spacing--30: 16px;
    --wp--preset--spacing--40: 21px;
    --wp--preset--spacing--50: 33px;
    --wp--preset--spacing--60: 53px;
    --wp--preset--spacing--70: 67px;
    --wp--preset--spacing--80: 80px;
  }
  .p404 .wrap {
    gap: 27px;
  }
  .p404 h1 span {
    font-size: 85px;
  }
  .misc-page {
    margin-bottom: 70px;
  }
  .misc-page .xtra-padding {
    padding-left: 60px;
    padding-right: 60px;
  }
  .misc-page h1 {
    margin-bottom: 27px;
  }
  .misc-page .bloc-gut > *:not(:last-child):not(.wp-block-spacer) {
    margin-bottom: 20px;
  }
  .misc-page .bloc-gut > p + ul,
  .misc-page .bloc-gut > p + ol,
  .misc-page .bloc-gut > ol + p,
  .misc-page .bloc-gut > ul + p {
    margin-top: -20px;
  }
  .misc-page .bloc-gut h2 {
    font-size: 19px;
  }
  .misc-page .bloc-gut h3,
  .misc-page .bloc-gut h4,
  .misc-page .bloc-gut h5,
  .misc-page .bloc-gut h6 {
    font-size: 15px;
  }
  .misc-page .bloc-gut p,
  .misc-page .bloc-gut li {
    font-size: 12px;
    line-height: 1.8;
  }
  .misc-page .bloc-gut {
    --wp--preset--spacing--20: 13px;
    --wp--preset--spacing--30: 16px;
    --wp--preset--spacing--40: 21px;
    --wp--preset--spacing--50: 33px;
    --wp--preset--spacing--60: 53px;
    --wp--preset--spacing--70: 67px;
    --wp--preset--spacing--80: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .s-simulateur__image-2 {
    margin-left: -4vw;
    margin-right: -4vw;
  }
  .s-qsn__image {
    margin-left: -4vw;
    margin-right: -4vw;
  }
}
@media screen and (min-width: 1023px) {
  .h-hide-tablet-only {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .section-text {
    margin: 30px 0;
  }
  .breadcrumbs-large {
    margin-bottom: 5%;
    display: block;
  }
  #breadcrumbs.breadcrumbs-woo {
    padding: 0 60px;
  }
  .footer__flex {
    margin-bottom: 5vw;
    display: flex;
  }
  .footer__flex > * {
    flex: 0 0 50%;
  }
  .footer__right {
    flex: 0 0 40%;
    margin-left: auto;
  }
  .footer__bottom .wrap {
    flex-direction: row;
  }
  .footer__bottom-nav .menu {
    display: inline-flex;
    gap: 40px;
  }
  .fs-panel {
    width: 546px;
    left: auto;
    right: 0;
  }
  .fs-panel.is-active {
    transition-duration: 0.8s;
    width: 546px;
    left: auto;
    right: 0;
  }
  .fs-panel__img {
    display: none;
    transition-duration: 0.5s;
    flex: 0 0 17%;
    margin-left: auto;
  }
  .fs-panel__img img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .fs-panel__menu {
    margin: 0;
    padding: 120px 60px 20px;
  }
  .fs-panel__menu ul li {
    transition-duration: 0.6s;
  }
  .fs-panel__menu ul li a {
    color: var(--Secondaire-Blanc, var(--Secondaire-Blanc, #FFF));
    font-family: 'Montserrat', sans-serif;
    font-size: 23px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 32px 0;
  }
  .burger {
    width: 52px;
    height: 52px;
  }
  .burger > span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 8px));
  }
  .burger > span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 8px));
  }
  .backbutton {
    margin-bottom: 5%;
    display: none;
  }
  __column {
    max-width: 600px;
  }
  .s-hero__card {
    width: auto;
    padding: 24px 24px 10px;
    line-height: 1.2;
  }
  .s-hero .swiper {
    width: 100%;
    overflow: visible;
  }
  .s-hero .swiper-wrapper {
    margin-left: auto;
    width: auto;
  }
  .s-hero .swiper-slide {
    height: 280px;
    width: 280px;
  }
  .s-hero .swiper-slide:nth-child(2) {
    transform: translateY(-100%);
  }
  .s-simulateur {
    padding-bottom: 0;
  }
  .s-simulateur::before {
    left: auto;
    bottom: 0;
    width: 33.33%;
    height: auto;
  }
  .s-simulateur__flex {
    flex-direction: row;
  }
  .s-simulateur__flex > * {
    flex: 0 0 50%;
  }
  .s-simulateur__left {
    padding-right: 10%;
  }
  .s-simulateur__image {
    position: absolute;
    bottom: -16%;
    bottom: -23%;
    left: 0;
    right: 0;
    max-width: none;
    width: 108%;
  }
  .s-qsn__flex {
    display: flex;
    align-items: flex-end;
  }
  .s-qsn__flex > * {
    flex: 0 0 50%;
  }
  .s-qsn__left {
    padding-right: 10%;
  }
  .s-qsn__right {
    margin-top: 10%;
  }
  .s-qsn__image {
    aspect-ratio: 580 / 604;
  }
  .s-qsn__image > * {
    display: block;
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .s-actualites__button {
    margin-top: 50px;
  }
  .contact-parent__container {
    flex-direction: row;
  }
  .woocommerce .archive-product .woocommerce-products-header {
    padding: 0 60px 30px;
  }
  .woocommerce-archive__header {
    margin-bottom: 30px;
    padding: 30px 60px;
    flex-direction: row;
  }
  .woocommerce-archive__header .term-description {
    width: 30%;
    margin-bottom: unset;
  }
  .woocommerce-archive__content #productFilters.active {
    width: 23vw;
    position: relative;
    z-index: 99;
  }
  .woocommerce-archive__content #productFilters .filters-head {
    display: none;
  }
  .woocommerce-archive__content #productFilters #product-filter-form {
    padding: 0;
  }
  .woocommerce-archive__content .products .woocommerce-loop-product__title {
    padding-top: 30px !important;
    font-size: 18px !important;
  }
  .woocommerce #btnFilter {
    margin-left: 60px;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
    margin-bottom: 0;
  }
  .woocommerce .product-item:hover .see-product-btn {
    opacity: 1;
  }
  .woocommerce .woocommerce-pagination {
    margin-bottom: unset;
  }
  .single-product .product {
    flex-direction: row;
  }
  .single-product .product .summary {
    width: 52% !important;
  }
  .single-product .product .summary-fixed {
    padding: 70px 60px;
  }
  .single-product .product_meta {
    margin: 50px 0;
  }
  .single-product .product_meta__lists {
    width: 80%;
    display: block;
  }
  .single-product .product-gallery-container {
    width: 48%;
    padding: 30px;
  }
  .single-product .product-gallery-container .overview-thumbnails {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 60px;
    left: 60px;
    border-radius: 7px;
    gap: 6px;
    padding: 6px;
    background: #fff;
    height: 100%;
    z-index: 3;
    margin-top: 36px;
  }
  .single-product .product-gallery-container .swiperGallery {
    margin-left: -15%;
  }
  .single-product .product-gallery-container .vertical-gallery {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .single-product .product-dimensions {
    font-size: 23px;
  }
  .single-product .related.products h2 {
    text-align: left;
  }
  .single-product .related.products .swiperRelated .product {
    width: initial !important;
  }
  .single-product .related.products .swiperRelated .swiper-slide {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .h-hide-mob {
    display: inherit !important;
  }
  .h-hide-desktop {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .s-hero__card__hole {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1024px) {
  .misc-page .xtra-padding {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media screen and (min-width: 1025px) {
  body::after {
    content: 'desktop';
  }
  .card__button {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    background-color: #085D69;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    height: auto !important;
    left: 40px;
    right: 40px;
    width: auto !important;
    text-align: center;
    padding: 6px;
    transition: 0.4s;
    transform: translateY(100%);
    opacity: 0;
  }
  .card__button::after {
    opacity: 0;
    display: block;
    width: 34px;
    height: 34px;
    content: "";
    background: url(img/arrow-white-right.svg) no-repeat center;
    margin-left: 24px;
    background-color: var(--Primaire-Accent, #085D69);
    transition: 0.4s;
  }
  .card__content {
    margin-top: 2em;
  }
  .card__title {
    font-size: 23px;
  }
  .card:hover .card__button {
    transform: translateY(0);
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .fs-panel__top {
    left: 60px;
    right: auto;
  }
  .flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-direction: row;
    -ms-box-orient: horizontal;
    margin-left: -10px;
    margin-right: -10px;
    /* width: 100%; */
  }
  .flex-grid > * {
    width: calc(33.33333333% - 20px);
    margin: 20px 10px;
  }
  .qsn__desc__resume {
    gap: 12%;
    flex-direction: row;
  }
  .qsn__desc__resume .resume-image {
    max-width: 50%;
  }
  .qsn__desc__resume .resume-title {
    padding-bottom: 20px;
  }
  .qsn__desc__bond {
    padding: 160px 0 0 11.5%;
    flex-direction: row;
    gap: 160px;
  }
  .qsn__desc__bond__texts {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
  }
  .qsn__desc__bond .bond-image {
    min-width: 600px;
  }
  .qsn__quotation__title {
    gap: 40px;
  }
  .qsn__quotation__item {
    flex-direction: column;
  }
  .blog .load-more-container {
    margin: 80px auto 20px;
  }
  .page-template-simulator .header {
    background-color: unset;
  }
  .page-template-simulator .header__logo__title {
    display: block;
  }
  .simulator-top {
    padding-bottom: 30px;
  }
  .simulator-top .h6 {
    margin: 40px auto;
  }
  .simulator-step {
    flex-direction: unset;
  }
  .simulator-step-left {
    width: 40%;
    height: 100vh;
    padding-top: 125px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .simulator-step__card {
    margin: 10px 20px;
    border: 0;
  }
  .simulator-step__card__visu {
    max-width: 180px;
  }
  .simulator-step__card__content .checked {
    width: 38px;
    right: 17px;
    margin: 0;
  }
  .simulator-step__input__title {
    font-size: 20px;
  }
  .simulator-step__resume__head {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    align-items: flex-end;
  }
  .simulator-step__resume__head span:first-child {
    width: calc(100% - 264px);
  }
  .simulator-step__resume__head span:nth-child(2) {
    width: 124px;
    text-align: right;
  }
  .simulator-step__resume__head span:nth-child(3) {
    width: 60px;
    text-align: right;
  }
  .simulator-step__resume__head span:nth-child(4) {
    width: 80px;
    text-align: right;
  }
  .simulator-step__resume__head span sup {
    font-size: 10px;
  }
  .simulator-step__resume__price {
    width: 80px;
  }
  .simulator-step__resume__quantity {
    width: 60px;
  }
  .simulator-step__resume__total {
    width: 80px;
  }
  .simulator-step__resume__product {
    flex-direction: row;
    align-items: center;
  }
  .simulator-step__resume__content {
    width: calc(100% - 180px);
  }
  .simulator-step__resume__quantity {
    padding: 0;
  }
  .simulator-step__resume__quantity .text {
    display: none;
  }
  .simulator-step-aside {
    width: 60%;
    position: fixed;
    right: 0;
    height: auto;
  }
  .simulator-step-aside > img {
    -o-object-fit: unset;
       object-fit: unset;
    height: auto;
  }
  .simulator-step-aside .fullheight {
    height: 100vh;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .simulator-step-aside .swiper-wrapper {
    height: 100vh;
  }
  .simulator-step-aside__resume {
    flex-direction: row;
    padding: unset;
    height: 100vh;
  }
  .simulator-step-aside__resume .resume__details {
    -moz-columns: inherit;
         columns: inherit;
  }
  .simulator-step-aside__resume .resume__details > *:nth-child(2)::after {
    display: block;
  }
  .simulator-step-aside__resume .resume__name {
    font-size: 12px;
  }
  .simulator-step-aside__resume .resume__choice {
    font-size: 20px;
  }
  .simulator-step__btns {
    position: static;
  }
  .simulator-step__btns.step5 {
    left: 0;
    transform: translateX(0);
  }
  .simulator-step__btns.step5 .simulator-step-left {
    height: auto;
  }
  .simulator-step__btns.step5 .simulator-step-aside__resume {
    height: auto;
    padding-top: 40px;
  }
  .simulator-step.connected .simulator-step__btns {
    flex-direction: row;
    justify-content: center;
    flex-wrap: unset;
  }
  .simulator-step.connected .simulator-step__btns > * {
    margin: 0;
  }
  .simulator--step5 .simulator-step-aside {
    height: auto;
  }
  .simulator--step5 .simulator-step-aside__resume .simulator-step-aside__img {
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
  .simulator--step5 .simulator-step-left {
    height: 100vh;
  }
  .simulator--step5 .simulator-step-aside__resume {
    height: 100vh;
    padding-top: 40px;
  }
  #infinite-handle .ctis-load-more button,
  #infinite-handle .ctis-load-more button:hover {
    font-size: 16px;
  }
  .woocommerce-archive__content {
    padding: 30px 60px 45px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media (min-width: 1025px) {
  .woocommerce-account.woocommerce-lost-password main {
    padding: 100px 8vw;
  }
  .woocommerce-account .woocommerce-MyAccount-content .account-container {
    flex-direction: row;
    margin-bottom: 200px;
  }
  .woocommerce-account .woocommerce-MyAccount-content .account-container .navigation {
    width: 30%;
    display: block;
  }
  .woocommerce-account .woocommerce-MyAccount-content .account-container .main-column {
    width: 70%;
    padding-left: 80px;
    margin-top: 0;
  }
  .woocommerce-account .woocommerce-MyAccount-content .dashboard-heading .btn--logout {
    position: static;
  }
  .woocommerce-account .woocommerce-MyAccount-content .dashboard-links {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
  }
  .woocommerce-account .woocommerce-MyAccount-content .dashboard-links li {
    aspect-ratio: 366/380;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .woocommerce-account .woocommerce-MyAccount-content .dashboard-links li .dashboard-links__icon {
    margin-right: unset;
    border: 1px solid #fff;
    transform: scale(1.1);
    aspect-ratio: 1;
    width: 40%;
    height: auto;
  }
  .woocommerce-account .woocommerce-MyAccount-content .dashboard-links li .dashboard-links__icon img {
    width: auto;
    height: 32px;
  }
  .gallery-container .accordion__header img {
    width: 80px;
    height: 80px;
  }
  .gallery-container .accordion__content ul:not(.fake-table__ul) {
    grid-template-columns: repeat(5, minmax(20%, 1fr));
  }
  .gallery-container .accordion__content .child-gallery__title {
    font-size: 18px;
  }
  .accordion input:checked ~ .accordion__header .accordion-label {
    transform: translateX(-104px);
  }
  .fake-table {
    margin-top: 20px;
  }
  .fake-table__title {
    font-size: 18px;
  }
  .fake-table ul.fake-table__ul li {
    display: grid;
    grid-template-columns: repeat(2, 1.2fr) repeat(2, 0.8fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 0;
  }
  .fake-table ul.fake-table__ul li .li-item {
    padding: 20px 16px;
    white-space: normal;
  }
  .fake-table ul.fake-table__ul li .li-title {
    grid-area: 1 / 1 / 2 / 2;
    padding-bottom: 20px;
  }
  .fake-table ul.fake-table__ul li .li-date {
    grid-area: 1 / 2 / 2 / 3;
  }
  .fake-table ul.fake-table__ul li .li-date span {
    display: inline;
  }
  .fake-table ul.fake-table__ul li .li-third {
    grid-area: 1 / 3 / 2 / 4;
  }
  .fake-table ul.fake-table__ul li .li-link {
    grid-area: 1 / 4 / 2 / 5;
  }
}
@media screen and (min-width: 1281px) {
  body {
    /*line-height: 1.5;*/
  }
  .header__logo {
    width: 44%;
  }
  .s-hero__left {
    padding-bottom: 24px;
  }
  .s-hero__left .wrap {
    margin-top: 130px;
  }
  .s-hero__right {
    min-height: 79vh;
    flex: 1;
  }
  .s-hero-hp .s-hero__right {
    min-height: 100vh;
  }
  .s-actualites__button {
    margin-top: 60px;
  }
  .qsn__quotation__pictos {
    padding-top: 100px;
    display: flex;
    flex-direction: row;
    gap: 75px;
    flex-wrap: nowrap;
  }
  .simulator-step__resume {
    margin: 0 5%;
  }
  .simulator-step-aside__resume .resume__visu {
    margin: 0 5%;
  }
  .simulator-step.connected .simulator-step__summary {
    margin: 0 5%;
  }
  .simulator-step.connected .simulator-step__additional {
    margin: 16px 5%;
  }
  .simulator-step.connected .simulator-step__additional label {
    padding: 0 8px;
  }
  .simulator-step.connected .simulator-step__additional--input {
    max-width: 200px;
  }
  .woocommerce-archive__content {
    padding: 40px 60px 160px;
  }
  .project-content__totals__additional {
    margin: 16px 0;
  }
  .project-content__totals__additional label {
    padding: 0 8px;
  }
  .project-content__totals__additional--input {
    max-width: 200px;
  }
}
@media (min-width: 1281px) {
  .gutenberg-content figure.wp-block-image.full-bleed {
    margin-left: calc(50% - 40vw + 9px);
    margin-right: calc(50% - 40vw + 9px);
  }
}
@media screen and (min-width: 1410px) {
  .single-product .related.products .swiperRelated .product {
    width: 100% !important;
  }
  .single-product .related.products .swiperRelated .swiper-slide {
    width: 33% !important;
  }
}
@media screen and (min-width: 1440px) {
  .section-text {
    margin: 38px 0 20px;
    font-size: 18px;
  }
  .card-gamme__content {
    padding: 0 40px;
  }
  .flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-direction: row;
    -ms-box-orient: horizontal;
    margin-left: -15px;
    margin-right: -15px;
    /* width: 100%; */
  }
  .flex-grid > * {
    width: calc(33.33333333% - 30px);
    margin: 30px 15px;
  }
  .s-hero__left {
    padding-bottom: 40px;
  }
  .s-hero__card {
    padding: 40px 40px 10px;
    font-size: 18px;
  }
  .s-hero .swiper-slide {
    height: 360px;
    width: 360px;
  }
  .simulator-step__btns.step5 {
    padding: 0 5%;
    gap: 10px;
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .myh1 {
    font-size: 66px;
  }
  .myh2 {
    font-size: 55px;
  }
  .myh3 {
    font-size: 44px;
  }
  .myh4 {
    font-size: 35px;
  }
  .myh5 {
    font-size: 28px;
  }
  .myh6 {
    font-size: 23px;
  }
  .myp {
    font-size: 18px;
  }
  .gutenberg-content > *:not(:last-child):not(.wp-block-spacer) {
    margin-bottom: 20px;
  }
  .gutenberg-content .wp-block-group {
    padding: 120px 150px;
  }
  .gutenberg-content {
    --wp--preset--spacing--20: 20px;
    --wp--preset--spacing--30: 24px;
    --wp--preset--spacing--40: 32px;
    --wp--preset--spacing--50: 50px;
    --wp--preset--spacing--60: 80px;
    --wp--preset--spacing--70: 100px;
    --wp--preset--spacing--80: 120px;
  }
  .single .share-post {
    margin-top: 100px;
  }
  .p404 .wrap {
    gap: 40px;
  }
  .p404 h1 span {
    font-size: 128px;
  }
  .misc-page h1 {
    margin-bottom: 40px;
  }
  .misc-page .bloc-gut > *:not(:last-child):not(.wp-block-spacer) {
    margin-bottom: 30px;
  }
  .misc-page .bloc-gut > p + ul,
  .misc-page .bloc-gut > p + ol,
  .misc-page .bloc-gut > ol + p,
  .misc-page .bloc-gut > ul + p {
    margin-top: -30px;
  }
  .misc-page .bloc-gut h2 {
    font-size: 28px;
  }
  .misc-page .bloc-gut h3,
  .misc-page .bloc-gut h4,
  .misc-page .bloc-gut h5,
  .misc-page .bloc-gut h6 {
    font-size: 23px;
  }
  .misc-page .bloc-gut p,
  .misc-page .bloc-gut li {
    font-size: 18px;
  }
  .misc-page .bloc-gut {
    --wp--preset--spacing--20: 20px;
    --wp--preset--spacing--30: 24px;
    --wp--preset--spacing--40: 32px;
    --wp--preset--spacing--50: 50px;
    --wp--preset--spacing--60: 80px;
    --wp--preset--spacing--70: 100px;
    --wp--preset--spacing--80: 120px;
  }
}
@media screen and (min-width: 1600px) {
  .qsn__desc__resume .resume-image {
    max-width: 880px;
  }
}
@media screen and (min-width: 1920px) {
  h1,
  .h1 {
    font-size: 66px;
  }
  h2,
  .h2,
  .woocommerce-account.woocommerce-lost-password .lost_reset_password h1,
  .woocommerce-account .woocommerce-MyAccount-content .dashboard-heading .welcome-message__title {
    font-size: 55px;
  }
  h3,
  .h3,
  .woocommerce-account .woocommerce-MyAccount-content .account-container .main-column__title {
    font-size: 44px;
  }
  h4,
  .h4,
  .woocommerce-account .woocommerce-MyAccount-content .account-container .main-column form.edit-account fieldset legend {
    font-size: 35px;
  }
  h5,
  .h5 {
    font-size: 28px;
  }
  h6,
  .h6,
  .fs-panel__menu .second-level ul.product-categories li a,
  .woocommerce-account .woocommerce-MyAccount-content .dashboard-heading .welcome-message__txt {
    font-size: 23px;
  }
  .card-gamme__title {
    font-size: 28px;
  }
  .fs-panel__menu ul li a {
    font-size: 44px;
  }
  .gutenberg-content h1 {
    font-size: 44px;
  }
  .gutenberg-content h2 {
    font-size: 38px;
  }
  .gutenberg-content h3 {
    font-size: 32px;
  }
  .gutenberg-content h4 {
    font-size: 26px;
  }
  .gutenberg-content h5 {
    font-size: 20px;
  }
  .qsn__quotation__title .h1 {
    font-size: 88px;
  }
  .woocommerce .archive-product h1 {
    font-size: 66px;
  }
  .single-product .product_title {
    font-size: 66px;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
  .footer__left {
    text-align: center;
  }
  .popup-content #loginform .login-submit .button {
    font-size: 14px;
  }
  .s-doc {
    text-align: center;
  }
  .s-doc__image {
    margin: -10px -20px;
  }
  .s-hero {
    margin-top: 24px;
  }
  .s-qsn__right .h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 1023px) {
  .card-gamme__title {
    margin-bottom: 24px;
  }
  .card-gamme__btn {
    display: none;
  }
  .s-simulateur {
    text-align: center;
  }
  .s-qsn {
    text-align: center;
  }
  .contact-distrib {
    flex-wrap: wrap !important;
  }
  .contact-distrib > * {
    flex-basis: 100% !important;
  }
  .contact-distrib .leaflet-map {
    height: 400px !important;
  }
}
@media screen and (max-width: 599px) {
  .footer__misc {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .footer__misc > *:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__nav:not(:first-child) {
    border-top: 1px solid #E7E0D9;
    padding-top: 20px;
  }
}
@media screen and (max-width: 410px) {
  .s-simulateur__image-2 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .s-qsn__image {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (max-width: 768px) {
  .single .main {
    margin-top: 90px;
  }
}
@media screen and (max-width: 1025px) {
  .simulator-step__btns.step5 .btn.btn--blue.btn--blue--arrow:after {
    display: none;
  }
}
@media screen and (max-width: 760px) {
  .woocommerce-archive__content .products {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
