/*=========================== Styles globaux du site ===========================*/

/*********************** Fonts ***********************/

@font-face {
  font-family: 'Dancing Script';
  src: url('fonts/DancingScript_wght.ttf') format('truetype');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/*********************** Variables ***********************/

:root {
  /* Couleurs de texte */
  --beige: #BEA587;
  --brun-fonce: #361D14;
  --blanc: #FFFFFF;
  --noir: #000000;
  --cuivre: #C2723F;
  --gris-clair: #F7F7F7;
  --gris-fonce: #333333;
  --terre: #67391C;
  --peche-clair: #FEEDE2;
  --peche-clair-2: #FEE8DA;
  --peche-clair-translucide: #FEEDE2B3;
  --brun-clair: #9B8066;
  --orange-chocolat: #C87154;
  --vert-clair: #D4D8B9;
  --vert-fonce: #989A69;

  /* Polices de texte */
  --font-playfair-display: 'Playfair Display', serif;
  --font-dancing-script: 'Dancing Script', cursive;
  --font-open-sans: 'Open Sans', sans-serif;
  --font-noto-sans: 'Noto Sans', sans-serif;

  /* Grille de mise en page */
  --lg-conteneur: 1200px;
  --test-colonnes: 12;
  --test-gouttiere: 16px;
  --test-conteneur: 1200px;
  --test-largeur-colonne: calc((var(--test-conteneur) - (var(--test-gouttiere) * (var(--test-colonnes) - 1))) / var(--test-colonnes));
}

/********** Couleurs **********/

/* Couleurs de texte */

.beige { color: var(--beige); }
.brun-fonce { color: var(--brun-fonce); }
.blanc { color: var(--blanc); }
.noir { color: var(--noir); }
.cuivre { color: var(--cuivre); }
.gris-clair { color: var(--gris-clair); }
.gris-fonce { color: var(--gris-fonce); }
.terre { color: var(--terre); }
.peche-clair { color: var(--peche-clair); }
.peche-clair-2 { color: var(--peche-clair-2); }
.peche-clair-translucide { color: var(--peche-clair-translucide); }
.brun-clair { color: var(--brun-clair); }
.orange-chocolat { color: var(--orange-chocolat); }
.vert-clair { color: var(--vert-clair); }

/* Couleurs de fond */

.bg-beige { background-color: var(--beige); }
.bg-brun-fonce { background-color: var(--brun-fonce); }
.bg-blanc { background-color: var(--blanc); }
.bg-noir { background-color: var(--noir); }
.bg-cuivre { background-color: var(--cuivre); }
.bg-gris-clair { background-color: var(--gris-clair); }
.bg-gris-fonce { background-color: var(--gris-fonce); }
.bg-terre { background-color: var(--terre); }
.bg-peche-clair { background-color: var(--peche-clair); }
.bg-peche-clair-2 { background-color: var(--peche-clair-2); }
.bg-peche-clair-translucide { background-color: var(--peche-clair-translucide); }
.bg-brun-clair { background-color: var(--brun-clair); }
.bg-orange-chocolat { background-color: var(--orange-chocolat); }
.bg-vert-clair { background-color: var(--vert-clair); }

/********** Classes de base **********/

.block {
  display: block;
}

.block-pc {
  display: block;
}

@media (max-width: 767px) {
  .block-pc {
    display: inline;
  }

  .block-mob {
    display: block;
  }
}

/*********************** Page d'Accueil ***********************/

/********** Section carrousel présentation **********/

/* Mise en forme carrousel */

.section-carrousel-presentation-etw .carousel-inner {
  position: relative;
  overflow: hidden;
}

.section-carrousel-presentation-etw .carousel-item {
  position:absolute !important; inset:0 !important;
  display:block !important;
  opacity:0 !important;
  pointer-events:none;
  transition: opacity 750ms ease !important;
  transform:none !important;
}

.section-carrousel-presentation-etw .carousel-item.active {
  position:relative !important;
  opacity:1 !important;
  pointer-events:auto;
}

.section-carrousel-presentation-etw .carousel-item.couleur-1 .carousel-caption { background-color: var(--terre) !important; }
.section-carrousel-presentation-etw .carousel-item.couleur-2 .carousel-caption { background-color: var(--vert-clair) !important; }
.section-carrousel-presentation-etw .carousel-item.couleur-3 .carousel-caption { background-color: var(--terre) !important; }
.section-carrousel-presentation-etw .carousel-item.couleur-4 .carousel-caption { background-color: var(--peche-clair-2) !important; }

.section-carrousel-presentation-etw .carousel-item .slide-media {
  overflow: hidden;
  width: 100%;
  height: 400px;
  opacity:0;
  transform: translateY(42px);
  transition: transform 950ms ease, opacity 950ms ease;
  will-change: transform, opacity;
}

.section-carrousel-presentation-etw .carousel-item.active .slide-media {
  opacity:1;
  transform: translateY(0);
  transition-duration: 650ms, 650ms;
}

.section-carrousel-presentation-etw .carousel-item.is-exiting .slide-media {
  opacity:1;
  transform: translateY(0);
  transition: transform 950ms ease, opacity 950ms ease;
}

.section-carrousel-presentation-etw .carousel-item.is-exiting:not(.active) .slide-media {
  opacity:0;
  transform: translateY(60px);
}

.section-carrousel-presentation-etw .carousel-item .slide-media .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-carrousel-presentation-etw .carousel-item-next,
.section-carrousel-presentation-etw .carousel-item-prev,
.section-carrousel-presentation-etw .carousel-item.active.carousel-item-left,
.section-carrousel-presentation-etw .carousel-item.active.carousel-item-right,
.section-carrousel-presentation-etw .carousel-item-start,
.section-carrousel-presentation-etw .carousel-item-end {
  transform: none !important;
}









.section-carrousel-presentation-etw .carousel-item .carousel-caption {
  display: flex !important;
  justify-content: space-between;
  padding: 40px 100px;
  background-color: var(--terre);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: relative;
  max-height: none;
  width: 100%;
  max-width: 100%;
}

.section-carrousel-presentation-etw .carousel-item .carousel-caption .kl-no-mobile {
  display: none;
}

.section-carrousel-presentation-etw .carousel-item .carousel-caption h3 {
  color: var(--cuivre);
  font-family: var(--font-playfair-display);
  font-size: 30px;
  font-weight: bold;
}

.section-carrousel-presentation-etw .carousel-item .carousel-caption p {
  color: var(--peche-clair-2);
  font-family: var(--font-playfair-display);
  font-size: 16px;
  max-width: 100%;
}

.section-carrousel-presentation-etw .carousel-item .carousel-caption p:not(.kl-title-slide) {
  opacity:0;
  transition: opacity 500ms ease;
  transition-delay: 140ms;
}

.section-carrousel-presentation-etw .carousel-item.active .carousel-caption p:not(.kl-title-slide) {
  opacity:1;
}

.section-carrousel-presentation-etw .carousel-item .kl-title-slide {
  color: var(--peche-clair-2);
  font-family: var(--font-playfair-display);
  font-size: 50px;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 10px;
  opacity:0;
  transform: translateY(26px);
  transition: transform 800ms ease, opacity 800ms ease;
  will-change: transform, opacity;
}

.section-carrousel-presentation-etw .carousel-item.active .kl-title-slide {
  opacity:1;
  transform: translateY(0);
}

.section-carrousel-presentation-etw .carousel-item.is-exiting .kl-title-slide {
  opacity:1;
  transform: translateY(0);
}

.section-carrousel-presentation-etw .carousel-item.is-exiting:not(.active) .kl-title-slide {
  opacity:0;
  transform: translateY(40px);
  transition: transform 900ms ease, opacity 900ms ease;
}






















.section-carrousel-presentation-etw .carousel-item.couleur-2.active .kl-title-slide { color: var(--brun-fonce) !important; }
.section-carrousel-presentation-etw .carousel-item.couleur-2.active .carousel-caption h3 { color: var(--vert-fonce) !important; }
.section-carrousel-presentation-etw .carousel-item.couleur-2.active .carousel-caption p:not(.kl-title-slide) { color: var(--brun-fonce) !important; }

.section-carrousel-presentation-etw .carousel-item.couleur-2.active .kl-more-slide svg.btn-svg #BTN_-_FOND,
.section-carrousel-presentation-etw .carousel-item.couleur-2.active .kl-more-slide svg.btn-svg #BTN_-_POURTOUR {
  fill: var(--vert-fonce) !important;
}

.section-carrousel-presentation-etw .carousel-item.couleur-2.active .kl-more-slide:hover svg.btn-svg #BTN_-_FOND,
.section-carrousel-presentation-etw .carousel-item.couleur-2.active .kl-more-slide:hover svg.btn-svg #BTN_-_POURTOUR {
  fill: var(--peche-clair-2) !important;
}

.section-carrousel-presentation-etw .carousel-item.couleur-2.active .kl-more-slide span {
  color: var(--peche-clair-2) !important;
}

.section-carrousel-presentation-etw .carousel-item.couleur-2.active .kl-more-slide:hover span {
  color: var(--brun-fonce) !important;
}

.section-carrousel-presentation-etw .carousel-item.couleur-4.active .kl-title-slide { color: var(--terre) !important; }
.section-carrousel-presentation-etw .carousel-item.couleur-4.active .carousel-caption h3 { color: var(--cuivre) !important; }
.section-carrousel-presentation-etw .carousel-item.couleur-4.active .carousel-caption p:not(.kl-title-slide) { color: var(--terre) !important; }

.section-carrousel-presentation-etw .carousel-item.couleur-4.active .kl-more-slide svg.btn-svg #BTN_-_FOND,
.section-carrousel-presentation-etw .carousel-item.couleur-4.active .kl-more-slide svg.btn-svg #BTN_-_POURTOUR {
  fill: var(--terre) !important;
}

.section-carrousel-presentation-etw .carousel-item.couleur-4.active .kl-more-slide:hover svg.btn-svg #BTN_-_FOND,
.section-carrousel-presentation-etw .carousel-item.couleur-4.active .kl-more-slide:hover svg.btn-svg #BTN_-_POURTOUR {
  fill: var(--peche-clair-2) !important;
}

.section-carrousel-presentation-etw .carousel-item.couleur-4.active .kl-more-slide span {
  color: var(--peche-clair-2) !important;
}

.section-carrousel-presentation-etw .carousel-item.couleur-4.active .kl-more-slide:hover span {
  color: var(--brun-fonce) !important;
}

























/* Boutons de navigation */

.section-carrousel-presentation-etw .carousel-indicators {
  position: absolute;
  top: 370px;
  left: inherit;
  display: flex;
  justify-content: center;
  height: fit-content;
  padding: 0px 100px 0px 0px;
  margin: 0px;
}

.section-carrousel-presentation-etw .carousel-indicators li {
  width: 12px;
  height: 12px;
  top: -2px;
  background-color: transparent;
  border: 1px solid var(--blanc);
  cursor: pointer;
}

.section-carrousel-presentation-etw .carousel-indicators li.active {
  background-color: var(--blanc);
}

.section-carrousel-presentation-etw .carousel-item img {
  width: 100%;
  height: 400px;
}

/* Boutons de navigation */

.section-carrousel-presentation-etw .carousel-control-prev {
  display: none;
}

.section-carrousel-presentation-etw .carousel-control-next {
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 155px;
  right: 100px;
  width: 63px !important;
  height: 63px !important;
  background-color: var(--peche-clair) !important;
  border: 2px solid var(--terre);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.section-carrousel-presentation-etw .carousel-control-next:hover {
  background-color: var(--blanc) !important;
}

.section-carrousel-presentation-etw .carousel-control-next::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/next-caramel.svg) no-repeat center center / contain;
}

.section-carrousel-presentation-etw .carousel-control-next:hover::before {
  background: url(../images/next-chocolat.svg) no-repeat center center / contain;
}



/* Pour changement de couleur de chaque slide ".carousel-caption" */

/* .section-carrousel-presentation-etw .carousel-caption.color-1 {
  background-color: var(--terre);
}

.section-carrousel-presentation-etw .carousel-caption.color-2 {
  background-color: var(--vert-clair);
} */









.section-carrousel-presentation-etw .carousel-item-action-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  bottom: 30px;
}

.section-carrousel-presentation-etw .kl-more-slide {
  width: 230px;
  height: 75px;
  font-size: 18px;
  border: 2px solid transparent;
  padding: 0px;
  margin-top: 0px;
  /* background: aquamarine; */
}

.section-carrousel-presentation-etw .kl-more-slide.hvr-sweep-to-right:hover,
.section-carrousel-presentation-etw .kl-more-slide.hvr-sweep-to-right:before,
.section-carrousel-presentation-etw .kl-more-slide.hvr-sweep-to-right:hover:before {
  background-color: transparent !important;
  text-decoration: none;
}

.section-carrousel-presentation-etw .kl-more-slide svg {
  width: 100%;
  height: 100%;
  /* position: absolute; */
}

.section-carrousel-presentation-etw .kl-more-slide span {
  position: relative;
  top: -55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-carrousel-presentation-etw .kl-more-slide:hover span {
  color: var(--brun-fonce);
  text-decoration: none;
}




/* .section-carrousel-presentation-etw .kl-more-slide svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
} */

.section-carrousel-presentation-etw .kl-more-slide svg path {
  width: 100%;
  height: 100%;
}

.section-carrousel-presentation-etw .kl-more-slide svg.btn-svg path {
  transition: fill 0.3s ease;
}

.section-carrousel-presentation-etw .kl-more-slide svg.btn-svg #BTN_-_FOND  {
  fill: transparent !important;
}

.section-carrousel-presentation-etw .kl-more-slide svg.btn-svg #BTN_-_POURTOUR  {
  fill: var(--peche-clair-2) !important;
}

.section-carrousel-presentation-etw .kl-more-slide:hover svg.btn-svg #BTN_-_FOND,
.section-carrousel-presentation-etw .kl-more-slide:hover svg.btn-svg #BTN_-_POURTOUR {
  fill: var(--peche-clair-2) !important;
}





@media (max-width: 1199px) {}









/********** Section carrousel produits **********/

.section-carrousel-produits-etw {
  position: relative;
}

.section-carrousel-produits-etw::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 180px);
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url(../images/separateur-guirlande-transition.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  pointer-events: none;
}

/* Contenu titre + sous-titre */

.section-carrousel-produits-etw .kl-bx-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section-carrousel-produits-etw .kl-bx-content h2:first-child,
.section-carrousel-produits-etw .kl-bx-content p {
  display: none;
}

.section-carrousel-produits-etw .titre-1 {
  color: var(--terre);
  font-family: var(--font-playfair-display);
  font-size: 42px;
  font-weight: bold;
  line-height: 48px;
}

.section-carrousel-produits-etw .titre-2 {
  color: var(--orange-chocolat);
  font-family: var(--font-dancing-script);
  font-size: 32px;
  font-weight: bold;
}

/* Mise en forme carrousel */

.section-carrousel-produits-etw .slick-slider:after {
  top: 170px;
  height: 390px;
  background: var(--peche-clair);
  opacity: 0.7;
}

.section-carrousel-produits-etw .slick-slider .slick-prev {
  display: none !important;
}

.section-carrousel-produits-etw .slick-slider .slick-next {
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(100% - 60px);
  left: calc(50vw + 240px);
  width: 63px;
  height: 63px;
  background-color: transparent !important;
  border: 2px solid var(--terre);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.section-carrousel-produits-etw .slick-slider .slick-next:hover {
  background-color: var(--blanc) !important;
}

.section-carrousel-produits-etw .slick-slider .slick-next::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/next-caramel.svg) no-repeat center center / contain;
}

.section-carrousel-produits-etw .slick-slider .slick-next:hover::before {
  background: url(../images/next-chocolat.svg) no-repeat center center / contain;
}

.section-carrousel-produits-etw .slick-slider .slick-list .item,
.section-carrousel-produits-etw .slick-slider .slick-track .item {
  margin: 15px;
}

/* Chaque item du carrousel */

.section-carrousel-produits-etw .item {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.section-carrousel-produits-etw .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 375px;
  background: url(../images/cadre-vignette-ocre.svg) no-repeat center center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.section-carrousel-produits-etw .item:hover::before {
  background: url(../images/cadre-vignette-ocre-hover.svg) no-repeat center center;
  background-size: cover;
}

/* Contenu produit */

.section-carrousel-produits-etw .item .prdt_content {
  position: relative;
  top: 20px;
  outline: solid 2px transparent;
  transition: top 0.3s ease;
}

.section-carrousel-produits-etw .item:hover .prdt_content {
  top: 10px;
}

/* Bouton d'achat */

.section-carrousel-produits-etw .item:hover .kl-see,
.section-carrousel-produits-etw .item .kl-title-aff,
.section-carrousel-produits-etw .item:hover .kl-title-aff {
  background: transparent;
}

.section-carrousel-produits-etw .item .prdt_content .kl-add-see,
.section-carrousel-produits-etw .item:hover .prdt_content .kl-add-see,
.section-carrousel-produits-etw .item:hover .prdt_content:hover .kl-add-see {
  position: absolute;
  left: 50%;
  bottom: 0px;
  opacity: 0;
  color: var(--terre);
  font-family: var(--font-playfair-display);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--peche-clair);
  border: 2px solid transparent;
  transition: opacity 0.3s ease;
  transform: translate(-60px, 242px);
}

.section-carrousel-produits-etw .item:hover .prdt_content .kl-add-see,
.section-carrousel-produits-etw .item .prdt_content:hover .kl-add-see,
.section-carrousel-produits-etw .item:hover .prdt_content:hover .kl-add-see {
  left: 50%;
  background: var(--peche-clair);
  color: var(--terre) !important;
  padding: 0px;
  opacity: 1;
}

.section-carrousel-produits-etw .item .hvr-sweep-to-right:before {
  background: transparent !important;
}

.section-carrousel-produits-etw .item:hover .hvr-sweep-to-right:before {
  background: var(--peche-clair) !important;
}

/* Titre + description produit */

.section-carrousel-produits-etw .item .kl-title-aff a {
  text-decoration: none;
}

.section-carrousel-produits-etw .item .kl-title-aff a:nth-child(2) {
  display: none;
}

.section-carrousel-produits-etw .item:hover .kl-title-aff a:nth-child(2) {
  display: block;
}

.section-carrousel-produits-etw .item .kl-title-aff h3 {
  color: var(--terre);
  font-family: var(--font-playfair-display);
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}

.section-carrousel-produits-etw .item .kl-title-aff span {
  color: var(--brun-fonce);
  font-family: var(--font-playfair-display);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.21px;
}

.section-carrousel-produits-etw .item .kl-title-aff ul {
  padding-top: 10px !important;
}

.section-carrousel-produits-etw .item .kl-title-aff ul li {
  color: var(--terre);
  font-family: var(--font-playfair-display);
  font-size: 22px;
  font-weight: bold;
  line-height: 16px;
}

.section-carrousel-produits-etw .item .prdt_content:hover .kl-title-aff ul li {
  color: var(--cuivre);
}

/* Image produit */

.section-carrousel-produits-etw .item .kl-img-xts {
  overflow: visible !important;
}

.section-carrousel-produits-etw .item .kl-img-xts img {
  position: relative;
  width: 215px;
  height: 225px;
  -webkit-mask-image: url(../images/masque-vignette.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/masque-vignette.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: width 0.3s ease, height 0.3s ease;
}

.section-carrousel-produits-etw .item:hover .kl-img-xts img {
  width: 125px;
  height: 130px;
}

@media (max-width: 767px) {
  .section-carrousel-produits-etw::before {
    bottom: calc(100% - 150px);
  }

  .section-carrousel-produits-etw .slick-slider:after {
    display: block;
  }

  .section-carrousel-produits-etw .slick-slider .slick-list .item,
  .section-carrousel-produits-etw .slick-slider .slick-track .item {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section-carrousel-produits-etw .item.active {
    height: 450px;
  }

  .section-carrousel-produits-etw .item.active::before {
    height: 450px;
    background-size: contain;
  }

  .section-carrousel-produits-etw .item.active .prdt_content {
    top: -30px;
    width: 300px;
  }

  .section-carrousel-produits-etw .item.active .kl-see,
  .section-carrousel-produits-etw .item.active .kl-title-aff {
    background: transparent;
  }

  .section-carrousel-produits-etw .item.active .prdt_content .kl-add-see {
    position: absolute;
    left: 50%;
    bottom: 0px;
    opacity: 1;
    color: var(--terre);
    font-family: var(--font-playfair-display);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--peche-clair);
    border: 2px solid transparent;
    padding: 0px;
    transition: opacity 0.3s ease;
    transform: translate(-60px, 240px);
  }

  .section-carrousel-produits-etw .item.active .hvr-sweep-to-right:before {
    background: var(--peche-clair) !important;
  }

  .section-carrousel-produits-etw .item.active .kl-title-aff a:nth-child(2) {
    display: block;
  }

  .section-carrousel-produits-etw .item.active .prdt_content .kl-title-aff ul li {
    color: var(--cuivre);
  }

  .section-carrousel-produits-etw .item.active .kl-img-xts img {
    width: 125px;
    height: 130px;
  }
}

@media (max-width: 554px) {
  .section-carrousel-produits-etw::before {
    bottom: calc(100% - 200px);
  }
}

/********** Section confiserie et bonbons **********/

.section-confiserie-et-bonbons-etw {
  position: relative;
  margin-top: 65px;
  overflow: inherit;
}

.section-confiserie-et-bonbons-etw .row {
  justify-content: space-between;
}

.section-confiserie-et-bonbons-etw .confiserie-colonne {
  width: 47%;
}

.section-confiserie-et-bonbons-etw .titre-principal {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
  transform: translateX(150px);
}

.section-confiserie-et-bonbons-etw .titre-1 {
  color: var(--cuivre);
  font-family: var(--font-playfair-display);
  font-size: 42px;
  font-weight: bold;
  line-height: 42px;
  z-index: 1;
}

.section-confiserie-et-bonbons-etw .titre-2 {
  color: var(--terre);
  font-family: var(--font-dancing-script);
  font-size: 60px;
  font-weight: bold;
  width: fit-content;
  transform: matrix(1, -0.08, 0.08, 1, 0, 0) translate(85px, -10px);
  z-index: 0;
}

.section-confiserie-et-bonbons-etw .element-gauche {
  display: block;
  position: absolute;
  top: 30px;
  left: -100%;
  width: 150px;
  height: 150px;
  z-index: 10;
}

.section-confiserie-et-bonbons-etw .element-gauche.svg-fixed-right {
  position: absolute;
  left: auto !important;
  right: 5px;
}

.section-confiserie-et-bonbons-etw #homedescription p {
  color: var(--gris-fonce);
  font-family: var(--font-noto-sans);
  font-size: 16px;
  line-height: 22px;
}

.section-confiserie-et-bonbons-etw .more-description-home.kl-see-more {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 234px;
  height: 86px;
  border: none;
  padding: 0;
  background-color: transparent;
  text-decoration: none !important;
  cursor: pointer;
  overflow: hidden;
}

.section-confiserie-et-bonbons-etw .more-description-home.kl-see-more svg.btn-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: fill 0.3s ease;
}

.section-confiserie-et-bonbons-etw .more-description-home.kl-see-more span {
  position: relative;
  z-index: 2;
  font-family: var(--font-playfair-display);
  color: var(--orange-chocolat);
  font-weight: bold;
  font-size: 20px;
  letter-spacing: inherit;
  transition: color 0.3s ease;
}

.section-confiserie-et-bonbons-etw .more-description-home.kl-see-more:hover span {
  color: var(--brun-fonce);
}

.section-confiserie-et-bonbons-etw .more-description-home.kl-see-more svg.btn-svg path {
  transition: fill 0.3s ease;
}

.section-confiserie-et-bonbons-etw .more-description-home.kl-see-more:hover svg.btn-svg #BTN_-_FOND,
.section-confiserie-et-bonbons-etw .more-description-home.kl-see-more:hover svg.btn-svg #BTN_-_POURTOUR {
  fill: var(--cuivre) !important;
}

.section-confiserie-et-bonbons-etw .kl-img-mode {
  position: relative;
  padding: 0px;
}

.section-confiserie-et-bonbons-etw .bloc-confiserie-img {
  display: block;
  position: relative;
  top: 185px;
  width: calc(100% - 20px);
  height: 469px;
  border-radius: 20px;
}

.section-confiserie-et-bonbons-etw .bloc-confiserie-img:after {
  content: "";
  position: absolute;
  top: -11px;
  right: -27px;
  width: 80px;
  height: 490px;
  background: url(../images/bord-cadre-vignette.svg) no-repeat center center;
  background-size: contain;
  z-index: 2;
}

.section-confiserie-et-bonbons-etw #main_home_background {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .section-confiserie-et-bonbons-etw .titre-2 {
    transform: matrix(1, -0.08, 0.08, 1, 0, 0) translate(85px, 0px);
  }

  .section-confiserie-et-bonbons-etw .bloc-confiserie-img {
    top: 160px;
  }

  .section-confiserie-et-bonbons-etw .bloc-confiserie-img::after {
    top: -11px;
  }
}

@media (max-width: 1024px) {
  .section-confiserie-et-bonbons-etw .titre-1 {
    font-size: 32px;
  }

  .section-confiserie-et-bonbons-etw .titre-2 {
    font-size: 50px;
    transform: matrix(1, -0.08, 0.08, 1, 0, 0) translate(55px, -5px);
  }

  .section-confiserie-et-bonbons-etw .kl-img-mode {
    width: 380px;
    height: 380px;
  }

  .section-confiserie-et-bonbons-etw .bloc-confiserie-img {
    height: 380px;
  }

  .section-confiserie-et-bonbons-etw .bloc-confiserie-img:after {
    top: 0px;
    height: 380px;
  }
}

@media (max-width: 767px) {
  .section-confiserie-et-bonbons-etw {
    margin-top: 0px;
  }

  .section-confiserie-et-bonbons-etw .confiserie-colonne {
    width: 100%;
  }

  .section-confiserie-et-bonbons-etw .bloc-confiserie-img,
  .section-confiserie-et-bonbons-etw .bloc-confiserie-img::after {
    top: 0px;
  }
}

@media (max-width: 600px) {
  .section-confiserie-et-bonbons-etw .titre-1 {
    font-size: 25px;
    line-height: inherit;
  }

  .section-confiserie-et-bonbons-etw .titre-2 {
    font-size: 40px;
    transform: matrix(1, -0.08, 0.08, 1, 0, 0) translate(35px, -8px);
  }
}

@media (max-width: 499px) {
  .section-confiserie-et-bonbons-etw .titre-principal {
    transform: translateX(0px);
  }

  .section-confiserie-et-bonbons-etw .titre-2 {
    font-size: 43px;
    transform: matrix(1, -0.08, 0.08, 1, 0, 0) translate(55px, -10px);
  }

  .section-confiserie-et-bonbons-etw .element-gauche {
    top: -15px;
    width: 100px;
    height: 100px;
  }
}

/********** Bloc deux chocolats **********/

.bloc-deux-chocolats-etw {
  position: relative;
  height: 110px;
  overflow: hidden;
  margin: 55px 0px;
}

.bloc-deux-chocolats-etw .svg-left,
.bloc-deux-chocolats-etw .svg-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  height: 100%;
  transition: all 1.5s ease;
}

.bloc-deux-chocolats-etw .svg-left {
  left: -50vw;
  background: url(../images/separateur-eclats-de-chocolats-gauche.svg) no-repeat right center;
  background-size: contain;
}

.bloc-deux-chocolats-etw .svg-right {
  right: -50vw;
  background: url(../images/separateur-eclats-de-chocolats-droite.svg) no-repeat left center;
  background-size: contain;
}

.bloc-deux-chocolats-etw.active .svg-left {
  left: calc(50% - 50vw - 30px);
}

.bloc-deux-chocolats-etw.active .svg-right {
  right: calc(50% - 50vw - 30px);
}

/********** Section savoir-faire **********/

.section-savoir-faire-etw {
  position: relative;
  background: transparent;
  padding-bottom: 100px;
}

.section-savoir-faire-etw::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 360px);
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url(../images/separateur-guirlande-transition.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.section-savoir-faire-etw::after {
  content: "";
  position: absolute;
  top: 340px;
  left: 0;
  width: 100%;
  height: 335px;
  background: var(--peche-clair);
  opacity: 0.7;
}

.section-savoir-faire-etw .container {
  position: relative;
  z-index: 1;
}

.section-savoir-faire-etw .kl-bx-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 0px;
}

.section-savoir-faire-etw .kl-bx-content h2:first-child,
.section-savoir-faire-etw .kl-bx-content p {
  display: none;
}

.section-savoir-faire-etw .titre-1 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
}

.section-savoir-faire-etw .titre-1 div {
  color: var(--terre);
  font-family: var(--font-playfair-display);
  font-size: 42px;
  font-weight: bold;
  line-height: 48px;
}

.section-savoir-faire-etw .titre-2 {
  color: var(--terre);
  font-family: var(--font-dancing-script);
  font-size: 32px;
  font-weight: bold;
}

.section-savoir-faire-etw .kl-img-offer div ul {
  position: relative;
  background: transparent;
  padding: 15px 50px 30px;
  text-align: center;
}

.section-savoir-faire-etw .kl-img-offer div ul::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-image: url(../images/bas-de-cadre-vignette-brun.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  pointer-events: none;
}

.section-savoir-faire-etw .kl-img-offer figure {
  background: transparent;
}

.section-savoir-faire-etw .kl-img-offer img {
  border-radius: 20px;
}

.section-savoir-faire-etw .kl-img-offer ul li:nth-child(2n) {
  display: none;
}

.section-savoir-faire-etw .kl-img-offer ul li h4 {
  color: var(--brun-fonce);
  font-family: var(--font-playfair-display);
  font-size: 22px;
  font-style: normal;
  font-weight: bold;
}

@media (max-width: 767px) {
  .section-savoir-faire-etw {
    padding-bottom: 30px;
  }

  .section-savoir-faire-etw .titre-1 div {
    font-size: 28px;
    line-height: 35px;
  }

  .section-savoir-faire-etw .titre-2 {
    font-size: 25px;
  }

  .section-savoir-faire-etw .kl-img-offer div ul {
    padding: 15px 50px 20px;
  }
}

/********** Section bannière vidéo YT **********/

/* Cacher vidéo sur page d'Accueil */

.page-index .seoprestahomebanner {
  display: none;
}

/********** Section fabrication française **********/

.section-fabrication-francaise-etw {
  position: relative;
  background: url(../images/accueil-chef.png) no-repeat center center;
  background-size: cover;
}

.section-fabrication-francaise-etw::before {
  content: "";
  position: absolute;
  top: -52px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url(../images/separateur-noeud.svg) no-repeat center top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 1;
}

.section-fabrication-francaise-etw::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, var(--brun-clair) 0%, var(--peche-clair) 100%);
  opacity: 0.7;
  pointer-events: none;
}

.section-fabrication-francaise-etw .container {
  position: relative;
  z-index: 1;
}

.section-fabrication-francaise-etw .kl-bx-content p {
  display: none;
}

.section-fabrication-francaise-etw .kl-title-h2 {
  margin-bottom: 15px;
}

.section-fabrication-francaise-etw .titre-1 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
}

.section-fabrication-francaise-etw .titre-1 div {
  color: var(--brun-fonce);
  font-family: var(--font-playfair-display);
  font-size: 42px;
  font-weight: bold;
  line-height: 48px;
}

.section-fabrication-francaise-etw .titre-2 {
  color: var(--peche-clair);
  font-family: var(--font-dancing-script);
  font-size: 40px;
  font-weight: 600;
}

.section-fabrication-francaise-etw .titre-avantage {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.section-fabrication-francaise-etw .titre-avantage-1 {
  color: var(--blanc);
  font-family: var(--font-playfair-display);
  font-size: 24px;
  font-weight: bold;
}

.section-fabrication-francaise-etw .titre-avantage-2 {
  color: var(--blanc);
  font-family: var(--font-dancing-script);
  font-size: 28px;
  font-weight: 600;
  line-height: 25px;
}

@media (max-width: 767px) {
  .section-fabrication-francaise-etw::before {
    top: -15px;
  }

  .section-fabrication-francaise-etw .titre-1 div {
    font-size: 28px;
    line-height: 35px;
  }

  .section-fabrication-francaise-etw .titre-2 {
    color: var(--cuivre);
    font-size: 25px;
  }
}

/*********************** Footer ***********************/

/********** Section Newsletter **********/

.section-newsletter-etw {
  padding: 60px 0px;
}

.section-newsletter-etw .container {
  position: relative;
}

.section-newsletter-etw .container::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  background-image: url(../images/newsletter-eclats-chocolat.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  pointer-events: none;
}

.section-newsletter-etw .container .row {
  flex-direction: column;
}

@media (max-width: 767px) {
  .section-newsletter-etw {
    padding: 30px 15px;
  }
}

/* Bloc Newsletter */

.bloc-newsletter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}

.bloc-newsletter .titres {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1;
}

.bloc-newsletter .titres h2,
.bloc-newsletter .titres h3 {
  color: var(--cuivre);
  font-size: 42px;
}

.bloc-newsletter .titres h2 {
  color: var(--cuivre);
  font-family: var(--font-open-sans);
  font-weight: bold;
  line-height: 42px;
}

.bloc-newsletter .titres h3 {
  color: var(--peche-clair-2);
  font-family: var(--font-dancing-script);
  line-height: 30px;
}

.bloc-newsletter .bloc-newsletter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bloc-newsletter .bloc-newsletter .kl-text-foot {
  display: none;
}

.newsletter-forme {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.texte-desinscription {
  position: relative;
  color: var(--peche-clair-2);
  font-size: 12px !important;
  line-height: 16px;
  padding-top: 10px;
  z-index: 1;
}

.bloc-newsletter-input {
  position: relative;
  display: flex;
  width: 540px;
  height: 45px;
  z-index: 0;
}

.bloc-newsletter-input::after {
  content: "";
  position: absolute;
  right: -30px;
  top: calc(50% + 0px);
  transform: translateX(100%) translateY(-50%);
  width: 320px;
  height: 440px;
  background-image: url(../images/fleur-tablette-cabosse-chocolat.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}

.bloc-newsletter-input input[type="text"] {
  flex: 1;
  width: 50%;
  padding: 12px 15px;
  border: 1px solid transparent;
}

.bloc-newsletter-input input[type="text"],
.bloc-newsletter-input input[type="text"]::placeholder {
  color: var(--beige);
  font-size: 12px;
}

.btn-newsletter-soumission {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 50%;
  background-color: var(--beige);
  color: var(--blanc);
  font-size: 14px;
  border: 1px solid transparent;
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-newsletter-soumission .arrow {
  font-size: 25px;
  font-weight: bold;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .bloc-newsletter .bloc-newsletter {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .bloc-newsletter .titres {
    gap: 0px;
  }

  .bloc-newsletter .titres h2 {
    font-size: 28px;
    line-height: 35px;
  }

  .bloc-newsletter .titres h3 {
    font-size: 25px;
  }

  .bloc-newsletter .bloc-newsletter .kl-mail-footer {
    margin-top: 0px;
  }

  .bloc-newsletter-input {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .bloc-newsletter-input::after {
    transform: translateX(50%) translateY(-50%);
  }

  .bloc-newsletter-input input[type="text"] {
    width: auto;
  }

  .btn-newsletter-soumission {
    width: 100%;
    height: 45px;
  }
}

/********** Section Footer **********/

.section-footer-etw {
  background: var(--beige);
  padding: 60px 0px;
}

.section-footer-etw a,
.section-footer-etw .kl-contact-footer,
.section-footer-etw .kl-information-footer,
.section-footer-etw .footer-phone {
  color: var(--gris-clair);
  font-family: var(--font-playfair-display);
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
}

.section-footer-etw .kl-information-footer a {
  line-height: 20px;
}

.section-footer-etw .kl-contact-footer:nth-child(2),
.section-footer-etw .kl-information-footer {
  padding-top: 35px;
}

.section-footer-etw .kl-information-footer:nth-child(3),
.section-footer-etw .kl-information-footer .kl-text-foot {
  display: none;
}

@media (max-width: 767px) {
  .section-footer-etw p {
    margin: 0px 0px 30px 0px;
  }

  .section-footer-etw .kl-contact-footer:nth-child(2),
  .section-footer-etw .kl-information-footer {
    padding-top: 0px;
  }
}

/*********************** Zone de test ***********************/

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--test-conteneur);
  height: 100%;
  background-image: repeating-linear-gradient(to right, rgba(204, 204, 204, 0.1), rgba(204, 204, 204, 0.1) calc(var(--test-largeur-colonne) + 0px), transparent calc(var(--test-largeur-colonne) + 0px), transparent calc(var(--test-largeur-colonne) + var(--test-gouttiere) + 0px));
  z-index: 9999999999;
  pointer-events: none;
}