@charset "UTF-8";
body {
  font-family: Montserrat, sans-serif;
  color: #000; }
  body .container {
    margin: 0 25px; }
    @media (min-width: 1025px) {
      body .container {
        margin: 0 100px; } }
  body .useful-pages {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 5rem 0; }
  body p {
    font-weight: 300; }
    body p a {
      color: #c4d201; }
  body strong {
    font-weight: 500; }
  body a {
    text-decoration: none; }
  body li {
    list-style: none; }
  body #scrollToTopButton {
    position: fixed;
    bottom: 3%;
    right: 6%;
    z-index: 99;
    border: 2px solid #FFF;
    outline: none;
    background-color: #000;
    color: black;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden; }
    @media (min-width: 1025px) {
      body #scrollToTopButton {
        right: 5%;
        bottom: 5%; } }
    body #scrollToTopButton svg {
      max-width: 40px;
      max-height: 40px;
      fill: #FFF; }

#postdivrich {
  display: none; }

.background-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: .45;
  z-index: 2; }

.pagination {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%); }
  .pagination .nav-links {
    display: flex;
    gap: 25px; }
    .pagination .nav-links .page-numbers {
      color: #000;
      border: 1px solid #545454;
      margin: 16px 0;
      padding: 10px;
      display: block; }
    .pagination .nav-links .current {
      color: #c4d201;
      border-radius: 50%;
      display: flex;
      align-items: center;
      border: unset; }

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

.header {
  position: relative;
  z-index: 10;
  text-align: center;
  background-color: #000;
  height: 80px; }

.header .container {
  position: relative;
  height: 100%; }

.header .logo {
  max-width: 5rem;
  height: auto;
  /*filter: contrast(200%) saturate(0%);*/
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; }

/* Positionnement du hamburger menu en haut à droite */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: #000000d6;
  border: none;
  cursor: pointer;
  z-index: 1000;
  position: fixed;
  top: 3%;
  border: 2px solid white;
  padding: 7px;
  right: 6%;
  border-radius: 20px; }

/* Styling des lignes du hamburger */
.line {
  width: 100%;
  height: 2px;
  background: #FFF;
  /* Changez cette couleur pour s'adapter à votre design */
  transition: all 0.3s ease; }

/* Animation du hamburger en croix */
.hamburger-menu.is-active .line-1 {
  transform: rotate(45deg) translate(5px, 5px); }

.hamburger-menu.is-active .line-2 {
  opacity: 0; }

.hamburger-menu.is-active .line-3 {
  transform: rotate(-45deg) translate(5px, -5px); }

/* Masquage du menu par défaut */
.menu-menu-haut-de-page-container {
  position: fixed;
  bottom: -100%;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  /* Changez cette couleur pour s'adapter à votre design */
  transition: bottom 0.3s ease;
  overflow-y: auto;
  /* Pour le défilement si le contenu est long */
  z-index: 999;
  /* Styling du menu intérieur */ }
  .menu-menu-haut-de-page-container .header__menu {
    padding: 5rem 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    align-items: center; }
    .menu-menu-haut-de-page-container .header__menu .menu-item-has-children {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; }
      .menu-menu-haut-de-page-container .header__menu .menu-item-has-children a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center; }
      .menu-menu-haut-de-page-container .header__menu .menu-item-has-children .dropdown-arrow {
        width: 25px;
        height: 25px;
        content: '';
        display: inline-block;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 50%;
        background-image: url("../images/arrow-down-black.svg");
        cursor: pointer;
        /* Ajoutez un curseur pointeur pour indiquer qu'il s'agit d'un élément cliquable */
        position: absolute;
        top: 14px;
        right: 60px;
        border: 1px solid #000;
        border-radius: 50%; }

/* Lorsque le menu est actif, il prend toute la largeur et la hauteur */
.menu-menu-haut-de-page-container.is-active {
  bottom: 0; }

.header__menu li a:hover {
  transition: .2s; }

.menu-item {
  width: 100%;
  position: relative;
  list-style: none; }

.menu-item-logo a img {
  max-width: 5rem;
  margin-bottom: 3rem; }

.menu-item a {
  text-decoration: none;
  color: #1b1b1b;
  display: block;
  padding: 15px 0;
  font-size: 1.3rem;
  text-transform: uppercase; }

.sub-menu {
  display: none; }

.sub-menu li a {
  font-size: 1rem; }

.desktop-logo {
  display: none; }

@media (min-width: 1025px) {
  .hamburger-menu {
    display: none;
    /* Masque le menu burger */ }
  .mobile-logo {
    display: none; }
  .desktop-logo {
    display: block; }
  .menu-menu-haut-de-page-container {
    position: static;
    /* Réinitialise la position */
    bottom: auto;
    right: auto;
    width: auto;
    /* Réinitialise la largeur */
    height: auto;
    /* Réinitialise la hauteur */
    background: none;
    /* Réinitialise le fond */
    overflow-y: visible;
    /* Réinitialise le défilement */
    z-index: 1;
    /* Réinitialise l'index z */
    height: 80px; }
    .menu-menu-haut-de-page-container .header__menu {
      flex-direction: row;
      /* Alignement horizontal pour les liens */
      padding: 0;
      justify-content: space-between;
      /* Centrage des liens du menu */
      height: 80px;
      gap: 40px; }
      .menu-menu-haut-de-page-container .header__menu .menu-item {
        display: flex;
        /* Affichage côte à côte des liens */
        justify-content: center;
        align-items: center;
        height: 100%; }
        .menu-menu-haut-de-page-container .header__menu .menu-item a {
          width: 100%;
          height: 100%;
          padding: 0;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: .8rem;
          color: #FFF; }
        .menu-menu-haut-de-page-container .header__menu .menu-item .sub-menu {
          display: none;
          position: absolute;
          top: 100%;
          /* Positionne le sous-menu juste en dessous de l'élément parent */
          z-index: 1000;
          /* Assure que le sous-menu est au-dessus des autres éléments */
          padding: 1rem;
          background: #FFF;
          width: 150%;
          border: 1px solid black; }
          .menu-menu-haut-de-page-container .header__menu .menu-item .sub-menu li::after {
            content: '';
            display: inline-block;
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background-color: lightgray; }
          .menu-menu-haut-de-page-container .header__menu .menu-item .sub-menu li:hover {
            border-bottom: 1px solid #c4d201; }
          .menu-menu-haut-de-page-container .header__menu .menu-item .sub-menu li a {
            height: 50px;
            color: #000; }
        .menu-menu-haut-de-page-container .header__menu .menu-item:hover::after {
          content: '';
          display: inline-block;
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 2px;
          background-color: #c4d201; }
      .menu-menu-haut-de-page-container .header__menu .current_page_parent::after, .menu-menu-haut-de-page-container .header__menu .current_page_item::after {
        content: '';
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #c4d201; }
      .menu-menu-haut-de-page-container .header__menu .menu-item-has-children {
        display: flex;
        align-items: center;
        flex-direction: unset; }
        .menu-menu-haut-de-page-container .header__menu .menu-item-has-children a {
          position: relative;
          display: flex;
          align-items: center; }
        .menu-menu-haut-de-page-container .header__menu .menu-item-has-children .dropdown-arrow {
          width: 20px;
          height: 20px;
          content: '';
          display: inline-block;
          background-position: center;
          background-repeat: no-repeat;
          background-size: 50%;
          background-image: url("../images/arrow-down-white.svg");
          cursor: pointer;
          /* Ajoutez un curseur pointeur pour indiquer qu'il s'agit d'un élément cliquable */
          position: unset; }
      .menu-menu-haut-de-page-container .header__menu .menu-item-logo a img {
        max-width: 6rem;
        margin: 50px 0 0 0; } }

body .front-page-content {
  position: relative; }
  body .front-page-content .section-carousel {
    position: relative; }
    body .front-page-content .section-carousel .content-section-carousel {
      position: absolute;
      z-index: 3;
      bottom: 20%;
      padding: 0 25px; }
      body .front-page-content .section-carousel .content-section-carousel h1 {
        font-family: "mixta-didone", serif;
        font-weight: 400;
        font-style: normal;
        color: #FFF;
        font-size: 6.5vw; }
      body .front-page-content .section-carousel .content-section-carousel h2 {
        font-family: "mixta-didone", serif;
        font-weight: 400;
        font-style: normal;
        color: #FFF;
        font-size: 12.5vw;
        text-transform: uppercase;
        margin-bottom: 3rem; }
      @media (min-width: 600px) {
        body .front-page-content .section-carousel .content-section-carousel h1 {
          font-size: 4.5vw; }
        body .front-page-content .section-carousel .content-section-carousel h2 {
          font-size: 10.5vw; } }
      @media (min-width: 800px) {
        body .front-page-content .section-carousel .content-section-carousel h1 {
          font-size: 3.5vw; }
        body .front-page-content .section-carousel .content-section-carousel h2 {
          font-size: 8.5vw; } }
      @media (min-width: 1025px) {
        body .front-page-content .section-carousel .content-section-carousel {
          padding: 0 100px; }
          body .front-page-content .section-carousel .content-section-carousel h1 {
            font-size: 2.5vw; }
          body .front-page-content .section-carousel .content-section-carousel h2 {
            font-size: 6.5vw; } }
      body .front-page-content .section-carousel .content-section-carousel a {
        display: inline-block;
        color: #FFF;
        background-color: #000000d6;
        font-size: .8rem;
        text-transform: uppercase;
        padding: 1rem 2rem;
        position: relative; }
        @media (min-width: 1025px) {
          body .front-page-content .section-carousel .content-section-carousel a {
            padding: 1rem 3rem;
            font-size: 1.2rem; } }
        body .front-page-content .section-carousel .content-section-carousel a::after {
          content: "→";
          font-size: 1.5rem;
          width: 50px;
          height: 100%;
          background-color: #c4d201;
          display: flex;
          position: absolute;
          right: -50px;
          top: 0px;
          justify-content: center;
          align-items: center; }
    body .front-page-content .section-carousel .carousel-controls {
      position: absolute;
      z-index: 5;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      text-align: center; }
      body .front-page-content .section-carousel .carousel-controls .carousel-button {
        background-color: #FFF;
        border: none;
        padding: 2px 20px;
        margin: 15px 5px;
        cursor: pointer; }
      body .front-page-content .section-carousel .carousel-controls .carousel-button.active {
        background-color: #c4d201;
        color: #FFF; }
    body .front-page-content .section-carousel .carousel {
      min-height: 100vh;
      width: 100%;
      overflow: hidden;
      position: relative;
      margin-top: -80px; }
      body .front-page-content .section-carousel .carousel .carousel-slide {
        height: 100%;
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.1s ease;
        opacity: 0; }
        body .front-page-content .section-carousel .carousel .carousel-slide:first-child {
          opacity: 1; }
        body .front-page-content .section-carousel .carousel .carousel-slide img {
          filter: brightness(75%);
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          object-fit: cover; }
  body .front-page-content .section-post-news {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 4rem 0; }
    @media (max-width: 1000px) {
      body .front-page-content .section-post-news {
        background-attachment: unset; } }
    body .front-page-content .section-post-news .background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(5%); }
    body .front-page-content .section-post-news .heading-post-news {
      position: relative;
      padding: 2rem 0;
      font-family: "mixta-didone", serif; }
      body .front-page-content .section-post-news .heading-post-news p {
        color: #545454;
        font-size: 1.5rem; }
      body .front-page-content .section-post-news .heading-post-news h2 {
        color: #FFF;
        text-transform: uppercase;
        font-size: 2.5rem;
        font-weight: 500; }
    body .front-page-content .section-post-news .wrapper-post-news {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      padding: 2rem 2rem;
      gap: 4rem; }
      @media (min-width: 600px) and (max-width: 767px) {
        body .front-page-content .section-post-news .wrapper-post-news {
          padding: 6rem 7rem; }
          body .front-page-content .section-post-news .wrapper-post-news .post-news .container-img-post-news {
            height: 25rem !important; } }
      body .front-page-content .section-post-news .wrapper-post-news .border-top-post-news {
        position: absolute;
        width: 100px;
        height: 100px;
        border-top: 3px solid #c4d201;
        border-left: 3px solid #c4d201;
        top: 0;
        left: 0; }
      body .front-page-content .section-post-news .wrapper-post-news .post-news {
        position: relative;
        width: 100%;
        background: #FFF;
        border: 3px solid #FFF; }
        body .front-page-content .section-post-news .wrapper-post-news .post-news .container-img-post-news {
          position: relative;
          background: #FFF;
          height: 20rem; }
          body .front-page-content .section-post-news .wrapper-post-news .post-news .container-img-post-news img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(75%); }
          body .front-page-content .section-post-news .wrapper-post-news .post-news .container-img-post-news h3 {
            font-family: "mixta-didone", serif;
            font-size: 1.5rem;
            font-weight: lighter;
            position: absolute;
            left: 15px;
            bottom: 30px;
            display: inline-block;
            padding-bottom: .5rem; }
            body .front-page-content .section-post-news .wrapper-post-news .post-news .container-img-post-news h3:after {
              content: '';
              position: absolute;
              left: 0;
              bottom: 0;
              height: 2px;
              width: 80px;
              background-color: #c4d201; }
            body .front-page-content .section-post-news .wrapper-post-news .post-news .container-img-post-news h3 a {
              color: #FFF;
              font-weight: 400; }
        body .front-page-content .section-post-news .wrapper-post-news .post-news .container-content-post-news {
          background: #FFF;
          min-height: 5rem;
          padding: 15px 15px 50px 15px; }
          body .front-page-content .section-post-news .wrapper-post-news .post-news .container-content-post-news a {
            color: #000;
            height: 50px;
            display: flex;
            align-items: center;
            position: absolute;
            right: 15px;
            bottom: 0; }
            body .front-page-content .section-post-news .wrapper-post-news .post-news .container-content-post-news a:before {
              content: "→";
              font-size: 1.5rem;
              width: 50px;
              height: 50px;
              color: #c4d201;
              display: flex;
              position: absolute;
              left: -50px;
              top: 0px;
              justify-content: center;
              align-items: center; }
      body .front-page-content .section-post-news .wrapper-post-news .top-news::after {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        content: 'À LA UNE';
        background-color: #c4d201;
        transform: rotate(45deg);
        color: #FFF;
        top: 18px;
        right: -27px;
        height: 30px;
        width: 118px; }
      body .front-page-content .section-post-news .wrapper-post-news .border-bottom-post-news {
        position: absolute;
        width: 100px;
        height: 100px;
        border-bottom: 3px solid #c4d201;
        border-right: 3px solid #c4d201;
        bottom: 0;
        right: 0; }
      @media (min-width: 768px) {
        body .front-page-content .section-post-news .wrapper-post-news {
          flex-direction: row;
          gap: 1rem; }
          body .front-page-content .section-post-news .wrapper-post-news .post-news {
            flex: 1; }
          body .front-page-content .section-post-news .wrapper-post-news .post-news .container-img-post-news {
            height: 20rem; } }
      @media (min-width: 1200px) {
        body .front-page-content .section-post-news .wrapper-post-news {
          flex-wrap: nowrap;
          gap: 2rem; }
          body .front-page-content .section-post-news .wrapper-post-news .post-news .container-img-post-news {
            height: 25rem; } }
    body .front-page-content .section-post-news .redirection-all-news {
      text-align: center;
      padding: 3rem 0 2rem; }
      body .front-page-content .section-post-news .redirection-all-news a {
        position: relative;
        color: #FFF;
        font-size: 1.5rem;
        font-weight: lighter;
        padding-bottom: .5rem; }
        body .front-page-content .section-post-news .redirection-all-news a::after {
          position: absolute;
          width: 60%;
          background-color: #c4d201;
          content: '';
          height: 1px;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          transition: .3s; }
        body .front-page-content .section-post-news .redirection-all-news a:hover::after {
          width: 100%;
          left: 0;
          transform: translateX(0%); }
  body .front-page-content .section-introduction {
    padding: 4rem 0; }
    body .front-page-content .section-introduction .content-section-introduction {
      margin-bottom: 2rem; }
      body .front-page-content .section-introduction .content-section-introduction h2, body .front-page-content .section-introduction .content-section-introduction h3 {
        font-family: "mixta-didone", serif;
        font-size: 2rem; }
      body .front-page-content .section-introduction .content-section-introduction h2 {
        text-transform: uppercase;
        font-weight: 500; }
      body .front-page-content .section-introduction .content-section-introduction h3 {
        position: relative;
        display: inline-block;
        padding-bottom: .5rem;
        margin-bottom: 2rem; }
        body .front-page-content .section-introduction .content-section-introduction h3::after {
          content: '';
          position: absolute;
          left: 0;
          bottom: 0;
          height: 2px;
          width: 35%;
          background-color: #c4d201; }
      body .front-page-content .section-introduction .content-section-introduction p {
        font-size: 1.2rem; }
      @media (min-width: 768px) {
        body .front-page-content .section-introduction .content-section-introduction h2 {
          font-size: 3rem; } }
    body .front-page-content .section-introduction .images-section-introduction {
      width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 25px; }
      body .front-page-content .section-introduction .images-section-introduction .image-1-section-introduction {
        position: relative;
        max-height: 15rem;
        padding-top: 56.25%; }
        body .front-page-content .section-introduction .images-section-introduction .image-1-section-introduction img {
          object-fit: cover;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%; }
        @media (min-width: 768px) {
          body .front-page-content .section-introduction .images-section-introduction .image-1-section-introduction {
            padding-top: 42%; } }
      body .front-page-content .section-introduction .images-section-introduction .image-2-3-section-introduction {
        display: flex;
        flex-direction: column;
        gap: 25px; }
        body .front-page-content .section-introduction .images-section-introduction .image-2-3-section-introduction .image-2-section-introduction, body .front-page-content .section-introduction .images-section-introduction .image-2-3-section-introduction .image-3-section-introduction {
          position: relative;
          max-height: 15rem;
          padding-top: 56.25%; }
          body .front-page-content .section-introduction .images-section-introduction .image-2-3-section-introduction .image-2-section-introduction img, body .front-page-content .section-introduction .images-section-introduction .image-2-3-section-introduction .image-3-section-introduction img {
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; }
          @media (min-width: 768px) {
            body .front-page-content .section-introduction .images-section-introduction .image-2-3-section-introduction .image-2-section-introduction, body .front-page-content .section-introduction .images-section-introduction .image-2-3-section-introduction .image-3-section-introduction {
              padding-top: 41%; } }
    @media (min-width: 768px) {
      body .front-page-content .section-introduction {
        flex-direction: row;
        justify-content: space-between; }
        body .front-page-content .section-introduction .content-section-introduction {
          width: 100%; }
        body .front-page-content .section-introduction .images-section-introduction {
          width: 100%;
          flex-direction: row; }
          body .front-page-content .section-introduction .images-section-introduction .image-1-section-introduction {
            width: 50%; }
          body .front-page-content .section-introduction .images-section-introduction .image-2-3-section-introduction {
            width: 50%;
            flex-direction: column; } }
  body .front-page-content .section-statistics {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    width: 100%;
    padding: 4rem 0;
    color: #FFF; }
    @media (max-width: 1000px) {
      body .front-page-content .section-statistics {
        background-attachment: unset; } }
    body .front-page-content .section-statistics .container {
      display: flex;
      flex-direction: column;
      gap: 25px; }
      body .front-page-content .section-statistics .container .item-section-statistics {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        min-height: 15rem;
        flex: 1; }
        body .front-page-content .section-statistics .container .item-section-statistics .wrapper-item-section-statistics {
          display: flex;
          justify-content: center;
          align-items: center;
          padding: 1rem;
          flex-direction: column;
          text-align: center; }
          body .front-page-content .section-statistics .container .item-section-statistics .wrapper-item-section-statistics .data-img-item-section-statistics {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 7px; }
            body .front-page-content .section-statistics .container .item-section-statistics .wrapper-item-section-statistics .data-img-item-section-statistics p {
              font-size: 8rem;
              font-weight: 500; }
              @media (min-width: 768px) and (max-width: 1200px) {
                body .front-page-content .section-statistics .container .item-section-statistics .wrapper-item-section-statistics .data-img-item-section-statistics p {
                  font-size: 5rem; } }
            body .front-page-content .section-statistics .container .item-section-statistics .wrapper-item-section-statistics .data-img-item-section-statistics img {
              max-height: 75px;
              width: auto;
              padding-bottom: 28px; }
          body .front-page-content .section-statistics .container .item-section-statistics .wrapper-item-section-statistics .text-item-section-statistics {
            font-size: 1rem; }
      @media (min-width: 768px) {
        body .front-page-content .section-statistics .container {
          flex-direction: row;
          justify-content: space-between; } }
  body .front-page-content .section-tasting {
    padding: 4rem 0;
    color: #FFF; }
    body .front-page-content .section-tasting .wrapper-tasting {
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      min-height: 20rem;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      text-align: center;
      padding: 15px; }
      body .front-page-content .section-tasting .wrapper-tasting h2 {
        font-family: "mixta-sharp", serif;
        font-weight: 400;
        font-style: normal;
        text-transform: uppercase;
        display: block;
        position: relative;
        padding-bottom: .5rem;
        text-align: center;
        font-size: 2.5rem; }
      body .front-page-content .section-tasting .wrapper-tasting p {
        font-size: 1.3rem; }
      body .front-page-content .section-tasting .wrapper-tasting a {
        background-color: #c4d201;
        color: #FFF;
        display: inline-block;
        width: 200px;
        margin: 0 auto;
        padding: 1rem;
        cursor: pointer;
        transition: .3s; }
        body .front-page-content .section-tasting .wrapper-tasting a:hover {
          background-color: #545454; }
  body .front-page-content .section-our-wines {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; }
    @media (max-width: 1000px) {
      body .front-page-content .section-our-wines {
        background-attachment: unset; } }
    body .front-page-content .section-our-wines .background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(5%); }
    body .front-page-content .section-our-wines .heading-our-wines {
      position: relative;
      padding: 4rem 0 2rem 0;
      font-family: "mixta-didone", serif;
      text-align: center; }
      body .front-page-content .section-our-wines .heading-our-wines p {
        color: #545454;
        font-size: 1.5rem; }
      body .front-page-content .section-our-wines .heading-our-wines h2 {
        color: #FFF;
        text-transform: uppercase;
        font-size: 3rem;
        font-weight: 500;
        display: block; }
        body .front-page-content .section-our-wines .heading-our-wines h2::after {
          content: '';
          position: absolute;
          bottom: 15px;
          border-bottom: 2px solid #FFF;
          width: 50px;
          left: 50%;
          transform: translateX(-50%); }
    body .front-page-content .section-our-wines .container-our-wines {
      overflow: hidden;
      padding: 4rem 0;
      display: flex;
      flex-direction: column;
      gap: 50px; }
      body .front-page-content .section-our-wines .container-our-wines .item-our-wines {
        position: relative;
        text-align: center;
        flex: 1;
        display: block; }
        body .front-page-content .section-our-wines .container-our-wines .item-our-wines img {
          width: 100%;
          height: auto;
          object-fit: cover;
          aspect-ratio: 16/9; }
        body .front-page-content .section-our-wines .container-our-wines .item-our-wines p {
          font-family: "mixta-didone", serif;
          font-size: 2rem;
          color: #FFF;
          padding: 1rem 0;
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 8px; }
          body .front-page-content .section-our-wines .container-our-wines .item-our-wines p::before {
            content: "→";
            display: inline-block;
            font-weight: lighter;
            width: 30px;
            height: 30px; }
    @media (min-width: 768px) {
      body .front-page-content .section-our-wines .container-our-wines {
        flex-direction: row; } }

.flexible-content {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  font-size: 1.2rem; }
  .flexible-content img {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
  .flexible-content .titre__simple {
    margin-bottom: -3.5rem; }
    .flexible-content .titre__simple h2 {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      display: block;
      position: relative;
      font-size: 2rem;
      text-align: center; }
    .flexible-content .titre__simple .titre__simple__separator {
      margin-bottom: 1rem; }
      .flexible-content .titre__simple .titre__simple__separator::after {
        display: block;
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        height: 2px;
        width: 65px;
        background-color: #c4d201; }
  .flexible-content .texte_simple ul {
    padding-left: 1rem; }
    .flexible-content .texte_simple ul li {
      list-style: circle;
      margin-bottom: .25rem; }
      .flexible-content .texte_simple ul li a {
        color: #c4d201; }
  .flexible-content .image__texte, .flexible-content .texte__image, .flexible-content .image_bouteille_texte {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; }
    .flexible-content .image__texte h2, .flexible-content .texte__image h2, .flexible-content .image_bouteille_texte h2 {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      display: block;
      position: relative;
      margin-bottom: 1rem;
      padding-bottom: .5rem;
      font-size: 2rem;
      text-align: left; }
      .flexible-content .image__texte h2::after, .flexible-content .texte__image h2::after, .flexible-content .image_bouteille_texte h2::after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 45px;
        background-color: #c4d201; }
  .flexible-content .texte__image .wrapper_content_texte_image {
    flex-basis: 60%; }
  .flexible-content .texte__image .wrapper_image {
    flex-basis: 40%; }
    .flexible-content .texte__image .wrapper_image img {
      width: 100%;
      height: auto;
      object-fit: cover; }
  .flexible-content .image__texte .wrapper_content_image_texte {
    flex-basis: 60%; }
  .flexible-content .image__texte .wrapper_image {
    flex-basis: 40%; }
    .flexible-content .image__texte .wrapper_image img {
      width: 100%;
      height: auto;
      object-fit: cover; }
  .flexible-content .image_bouteille_texte .wrapper_content_image_bouteille_texte {
    flex-basis: 75%; }
  .flexible-content .image_bouteille_texte .wrapper_image {
    flex-basis: 25%; }
    .flexible-content .image_bouteille_texte .wrapper_image img {
      width: 100%;
      max-height: 25rem;
      height: auto;
      object-fit: contain;
      box-shadow: unset; }
  .flexible-content .wrapper_banner_image {
    margin: 0 auto;
    max-width: 90%;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center; }
    .flexible-content .wrapper_banner_image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      box-shadow: unset; }
  .flexible-content .flexslider {
    width: 100%;
    position: relative; }
    .flexible-content .flexslider .slides {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      /* Flexbox pour la gestion du layout des slides */
      overflow: hidden;
      /* Cache les slides non actives */
      position: relative;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
      .flexible-content .flexslider .slides li {
        flex: 0 0 100%;
        /* Chaque slide prend 100% de la largeur du slider */
        max-width: 80%;
        height: 500px;
        display: none;
        /* Cache toutes les slides par défaut */
        align-items: center;
        justify-content: center;
        position: relative;
        margin: 0 auto; }
        .flexible-content .flexslider .slides li .plus-slider {
          height: 100%;
          width: 100%;
          position: relative; }
          .flexible-content .flexslider .slides li .plus-slider::after {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            content: '';
            display: inline-block;
            position: absolute;
            top: -50px;
            right: 50%;
            transform: translate(50%);
            background-color: #545454;
            background-image: url(../images/plus-large-white.svg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: 50%; }
          .flexible-content .flexslider .slides li .plus-slider:hover::after {
            top: 50%; }
          .flexible-content .flexslider .slides li .plus-slider:hover img {
            filter: brightness(50%); }
          @media (max-width: 1024px) {
            .flexible-content .flexslider .slides li .plus-slider::after {
              width: 40px;
              height: 40px;
              top: unset;
              bottom: 20px;
              right: 50%;
              transform: translateX(50%); }
            .flexible-content .flexslider .slides li .plus-slider:hover::after {
              top: unset; }
            .flexible-content .flexslider .slides li .plus-slider:hover img {
              filter: unset; } }
        .flexible-content .flexslider .slides li img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          display: block;
          box-shadow: unset; }
        .flexible-content .flexslider .slides li a.open-in-new-tab {
          font-size: .85rem;
          position: absolute;
          background: #545454;
          color: #FFF;
          z-index: 100;
          width: 210px;
          height: 30px;
          bottom: -100px;
          display: flex;
          justify-content: center;
          align-items: center; }
        .flexible-content .flexslider .slides li.active {
          display: flex; }
        .flexible-content .flexslider .slides li:hover a.open-in-new-tab {
          bottom: 0; }
        @media (max-width: 1024px) {
          .flexible-content .flexslider .slides li a.open-in-new-tab {
            display: none; } }
  .flexible-content .slider-controls {
    position: absolute;
    top: 45%;
    width: 100%;
    transform: translateY(-50%); }
    .flexible-content .slider-controls button {
      cursor: pointer;
      padding: 10px;
      margin: 5px;
      background-color: #c4d201;
      border: none;
      width: 45px;
      height: 45px;
      background-image: url(../images/arrow-down-white.svg);
      background-size: 30%;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      transition: background-color 0.3s ease; }
      .flexible-content .slider-controls button:hover {
        background-color: #545454; }
    .flexible-content .slider-controls .prev-slide {
      transform: rotate(90deg);
      left: 0; }
    .flexible-content .slider-controls .next-slide {
      transform: rotate(-90deg);
      right: 0; }
  .flexible-content .slider-indicators {
    text-align: center;
    padding-top: 2rem; }
    .flexible-content .slider-indicators button {
      cursor: pointer;
      padding: 8px;
      border-radius: 50%;
      margin: 2px;
      background-color: #eee;
      border: none;
      transition: padding 0.3s ease, background-color 0.3s ease; }
      .flexible-content .slider-indicators button.active {
        padding: 10px;
        background-color: #c4d201; }
  @media (min-width: 1025px) {
    .flexible-content .image__texte, .flexible-content .texte__image, .flexible-content .image_bouteille_texte {
      flex-direction: row; } }
  .flexible-content .contenu_3_images {
    display: flex;
    justify-content: space-between;
    gap: 48px; }
    .flexible-content .contenu_3_images .item {
      flex: 1;
      text-align: center; }
      .flexible-content .contenu_3_images .item img {
        height: 20rem;
        width: 100%;
        object-fit: cover;
        margin-bottom: 1.4rem; }
    @media (max-width: 860px) {
      .flexible-content .contenu_3_images {
        flex-direction: column; } }

.heading-les-vins {
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-clip: unset;
  background-repeat: no-repeat;
  min-height: calc(100vh - 80px);
  padding: 5rem 0; }
  @media (max-width: 1000px) {
    .heading-les-vins {
      background-attachment: unset; } }
  .heading-les-vins .wrapper-content-heading-les-vins {
    color: #FFF; }
    .heading-les-vins .wrapper-content-heading-les-vins h1 {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      display: block;
      position: relative;
      padding-bottom: .5rem;
      text-align: center;
      font-size: 3rem; }
      .heading-les-vins .wrapper-content-heading-les-vins h1::after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 50%;
        bottom: 0;
        height: 2px;
        width: 75px;
        background-color: #c4d201;
        text-align: center;
        margin: 0 auto;
        transform: translateX(-50%); }
    .heading-les-vins .wrapper-content-heading-les-vins .content-heading-les-vins {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left;
      justify-content: center;
      padding: 4rem 0;
      gap: 32px; }
      .heading-les-vins .wrapper-content-heading-les-vins .content-heading-les-vins .wrapper-img-heading-les-vins {
        width: 100%;
        height: auto;
        flex: 1; }
        .heading-les-vins .wrapper-content-heading-les-vins .content-heading-les-vins .wrapper-img-heading-les-vins img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .heading-les-vins .wrapper-content-heading-les-vins .content-heading-les-vins .text-heading-les-vins {
        flex: 1;
        font-size: 1.2rem; }
        .heading-les-vins .wrapper-content-heading-les-vins .content-heading-les-vins .text-heading-les-vins p a {
          color: #c4d201; }
      @media (min-width: 1025px) {
        .heading-les-vins .wrapper-content-heading-les-vins .content-heading-les-vins {
          flex-direction: row; } }

.heading-types-de-vins {
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: calc(35vh + 80px);
  margin-top: -80px;
  display: flex;
  align-items: center;
  color: #FFF; }
  .heading-types-de-vins .container {
    padding-top: 5rem; }
    .heading-types-de-vins .container h1 {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      display: block;
      position: relative;
      padding-bottom: .5rem; }
      .heading-types-de-vins .container h1::after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 25%;
        background-color: #c4d201; }
    .heading-types-de-vins .container .hook-heading-types-de-vins {
      display: block;
      margin-top: 2rem; }
      .heading-types-de-vins .container .hook-heading-types-de-vins a {
        color: #c4d201;
        margin-left: 0.4rem; }

.types-de-vins {
  position: relative;
  z-index: 1; }
  .types-de-vins .container-types-de-vins {
    position: relative;
    z-index: 1; }
    .types-de-vins .container-types-de-vins .wine-list {
      padding: 3rem 0;
      display: flex;
      flex-direction: column;
      gap: 64px; }
      .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .heading-wine-item {
        background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
        padding: 2rem;
        margin-bottom: 1.5rem; }
        @media (max-width: 1025px) {
          .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .heading-wine-item {
            padding: 4rem; } }
        .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .heading-wine-item h2 {
          color: #FFF;
          flex-basis: 75%;
          font-family: "mixta-didone", serif;
          font-weight: 500;
          text-align: left;
          font-size: 1.75rem;
          text-align: center; }
          @media (max-width: 1025px) {
            .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .heading-wine-item h2 {
              display: none; } }
      .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item {
        position: relative;
        display: flex;
        flex-direction: column;
        padding-bottom: 2rem;
        margin: 0 25px; }
        .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-heading-wine-item-mobile {
          display: flex;
          align-items: center;
          padding: 2rem 0; }
          .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-heading-wine-item-mobile .wrapper-img-wine-item-mobile {
            flex-basis: 30%;
            max-height: 475px; }
            .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-heading-wine-item-mobile .wrapper-img-wine-item-mobile img {
              width: 100%;
              max-height: 475px;
              object-fit: contain; }
          .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-heading-wine-item-mobile .wrapper-content-wine-item-mobile {
            flex-basis: 70%;
            display: flex;
            flex-direction: column; }
            .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-heading-wine-item-mobile .wrapper-content-wine-item-mobile h2 {
              flex-basis: 75%;
              font-family: "mixta-didone", serif;
              font-weight: 500;
              text-align: left;
              font-size: 1.75rem;
              padding: 2rem 0;
              text-align: center; }
            .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-heading-wine-item-mobile .wrapper-content-wine-item-mobile .data-sheet {
              font-size: .9rem;
              color: #000;
              text-align: center; }
              .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-heading-wine-item-mobile .wrapper-content-wine-item-mobile .data-sheet span {
                color: #c4d201; }
        .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-img-wine-item-desktop {
          flex-basis: 25%;
          position: relative;
          display: none;
          justify-content: center;
          flex-direction: column;
          align-items: center;
          gap: 40px; }
          .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-img-wine-item-desktop img {
            height: 30rem;
            width: auto;
            object-fit: contain; }
          .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-img-wine-item-desktop .data-sheet {
            font-size: .9rem;
            color: #000; }
            .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-img-wine-item-desktop .data-sheet span {
              color: #c4d201; }
        .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .content-wine-item {
          flex-basis: 75%;
          display: flex;
          flex-direction: column;
          justify-content: center; }
          .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .content-wine-item h2 {
            font-family: "mixta-didone", serif;
            font-weight: 500;
            text-align: left;
            font-size: 1.75rem;
            padding: 2rem 0; }
          .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .content-wine-item h3 {
            font-family: "mixta-didone", serif;
            font-weight: 500;
            font-size: 1.5rem;
            position: relative;
            display: block;
            margin: 2rem 0 2rem .5rem; }
            .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .content-wine-item h3::before {
              content: '';
              display: inline-block;
              width: 25px;
              height: 100%;
              border-bottom: 2px solid #c4d201;
              margin-right: .5rem; }
          .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .content-wine-item p {
            font-size: 1rem;
            display: block;
            margin: 0; }
        .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item::after {
          bottom: 0;
          position: absolute;
          left: 0;
          display: inline-block;
          content: '';
          width: 100%;
          height: 1px;
          background-color: lightgray; }
        @media (min-width: 1025px) {
          .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item {
            flex-direction: row; }
            .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-img-wine-item-desktop {
              display: flex; }
            .types-de-vins .container-types-de-vins .wine-list .wrapper-wine-item .wine-item .wrapper-heading-wine-item-mobile {
              display: none; } }

@media (max-width: 1025px) {
  .title-desktop {
    display: none; } }

.heading-a-propos {
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  color: #FFF;
  text-align: center;
  justify-content: center;
  background-attachment: fixed;
  background-clip: unset;
  padding: 5rem 0; }
  @media (max-width: 1000px) {
    .heading-a-propos {
      background-attachment: unset; } }
  .heading-a-propos .wrapper-content-heading-a-propos {
    color: #FFF; }
    .heading-a-propos .wrapper-content-heading-a-propos h1 {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      display: block;
      position: relative;
      padding-bottom: .5rem;
      text-align: center;
      font-size: 3rem; }
      .heading-a-propos .wrapper-content-heading-a-propos h1::after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 50%;
        bottom: 0;
        height: 2px;
        width: 75px;
        background-color: #c4d201;
        text-align: center;
        margin: 0 auto;
        transform: translateX(-50%); }
    .heading-a-propos .wrapper-content-heading-a-propos .content-heading-a-propos {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left;
      justify-content: center;
      padding: 4rem 0;
      gap: 32px; }
      .heading-a-propos .wrapper-content-heading-a-propos .content-heading-a-propos .wrapper-img-heading-a-propos {
        flex: 1;
        width: 100%;
        height: auto; }
        .heading-a-propos .wrapper-content-heading-a-propos .content-heading-a-propos .wrapper-img-heading-a-propos img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .heading-a-propos .wrapper-content-heading-a-propos .content-heading-a-propos .text-heading-a-propos {
        font-size: 1.2rem;
        flex: 1; }
      @media (min-width: 1025px) {
        .heading-a-propos .wrapper-content-heading-a-propos .content-heading-a-propos {
          flex-direction: row; } }

.section-team-a-propos {
  padding: 4rem 0; }
  .section-team-a-propos h2 {
    font-family: "mixta-sharp", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    display: block;
    position: relative;
    margin-bottom: 5rem;
    padding-bottom: .5rem;
    font-size: 2rem;
    text-align: center; }
    .section-team-a-propos h2::after {
      content: '';
      position: absolute;
      z-index: 1;
      left: 50%;
      bottom: 0;
      height: 2px;
      width: 45px;
      background-color: #c4d201;
      transform: translateX(-50%); }
  .section-team-a-propos .list-members-team {
    display: flex;
    flex-direction: column;
    gap: 85px; }
    .section-team-a-propos .list-members-team .member-team {
      display: flex;
      flex-direction: column;
      gap: 25px;
      align-items: center; }
      .section-team-a-propos .list-members-team .member-team .wrapper-img-member-team {
        width: 15rem;
        height: 15rem; }
        .section-team-a-propos .list-members-team .member-team .wrapper-img-member-team img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 50%; }
      .section-team-a-propos .list-members-team .member-team .content-member-team {
        text-align: left;
        flex-basis: 67%; }
        .section-team-a-propos .list-members-team .member-team .content-member-team h3 {
          font-family: "mixta-sharp", serif;
          font-weight: 500;
          font-style: normal;
          text-transform: uppercase;
          display: block;
          position: relative;
          margin-bottom: 1rem;
          font-size: 1.5rem;
          text-align: center; }
          @media (min-width: 1025px) {
            .section-team-a-propos .list-members-team .member-team .content-member-team h3 {
              text-align: left; } }
        .section-team-a-propos .list-members-team .member-team .content-member-team p {
          text-align: justify; }
      @media (min-width: 768px) {
        .section-team-a-propos .list-members-team .member-team {
          flex-direction: row;
          gap: 45px; } }

.section-origin-a-propos {
  padding: 4rem 0;
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF; }
  .section-origin-a-propos .content-section-origin-a-propos {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px; }
    .section-origin-a-propos .content-section-origin-a-propos .heading-content-section-origin-a-propos {
      flex-basis: 55%;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .section-origin-a-propos .content-section-origin-a-propos .heading-content-section-origin-a-propos h2 {
        font-family: "mixta-sharp", serif;
        font-weight: 400;
        font-style: normal;
        text-transform: uppercase;
        display: block;
        position: relative;
        margin-bottom: 1rem;
        padding-bottom: .5rem;
        font-size: 2rem;
        text-align: left; }
        .section-origin-a-propos .content-section-origin-a-propos .heading-content-section-origin-a-propos h2::after {
          content: '';
          position: absolute;
          z-index: 1;
          left: 0;
          bottom: 0;
          height: 2px;
          width: 45px;
          background-color: #c4d201; }
      .section-origin-a-propos .content-section-origin-a-propos .heading-content-section-origin-a-propos p {
        font-size: 1.2rem; }
    .section-origin-a-propos .content-section-origin-a-propos .wrapper-img-section-origin-a-propos {
      flex-basis: 45%; }
      .section-origin-a-propos .content-section-origin-a-propos .wrapper-img-section-origin-a-propos img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    @media (min-width: 768px) {
      .section-origin-a-propos .content-section-origin-a-propos {
        flex-direction: row;
        gap: 45px; } }

.heading-dans-la-region {
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: calc(17vh + 80px);
  display: flex;
  align-items: center;
  color: #FFF;
  text-align: center;
  justify-content: center;
  background-attachment: fixed;
  background-clip: unset; }
  @media (max-width: 1000px) {
    .heading-dans-la-region {
      background-attachment: unset; } }
  .heading-dans-la-region h1 {
    font-family: "mixta-sharp", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    display: block;
    position: relative;
    padding-bottom: .5rem;
    text-align: center;
    font-size: 3rem; }
    .heading-dans-la-region h1::after {
      content: '';
      position: absolute;
      z-index: 1;
      left: 50%;
      bottom: 0;
      height: 2px;
      width: 25%;
      background-color: #c4d201;
      text-align: center;
      margin: 0 auto;
      transform: translateX(-50%); }

.content-dans-la-region {
  padding: 4rem 0; }
  .content-dans-la-region h2 {
    font-family: "mixta-didone", serif;
    color: #545454;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: .5rem; }
  .content-dans-la-region .elements-to-visit-list {
    display: flex;
    flex-direction: column;
    gap: 64px; }
    .content-dans-la-region .elements-to-visit-list .element-item h3 {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      display: block;
      position: relative;
      padding-bottom: .5rem;
      font-size: 1.75rem; }
      .content-dans-la-region .elements-to-visit-list .element-item h3::after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 80px;
        background-color: #c4d201; }
    .content-dans-la-region .elements-to-visit-list .element-item .wrapper-element-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
      padding: 25px 0; }
      .content-dans-la-region .elements-to-visit-list .element-item .wrapper-element-item .wrapper-img-element-item {
        overflow: hidden;
        max-height: 14rem;
        width: 100%;
        position: relative; }
        .content-dans-la-region .elements-to-visit-list .element-item .wrapper-element-item .wrapper-img-element-item img {
          object-fit: cover;
          height: 100%;
          width: 100%; }
        @media (min-width: 769px) {
          .content-dans-la-region .elements-to-visit-list .element-item .wrapper-element-item .wrapper-img-element-item {
            max-height: 23rem;
            flex: 4; } }
      .content-dans-la-region .elements-to-visit-list .element-item .wrapper-element-item .content-element-item {
        flex: 6; }
        .content-dans-la-region .elements-to-visit-list .element-item .wrapper-element-item .content-element-item p {
          text-align: justify; }
        .content-dans-la-region .elements-to-visit-list .element-item .wrapper-element-item .content-element-item .redirection-element-item a {
          color: #c4d201; }
      @media (min-width: 1025px) {
        .content-dans-la-region .elements-to-visit-list .element-item .wrapper-element-item {
          flex-direction: unset; } }
    @media (min-width: 1025px) {
      .content-dans-la-region .elements-to-visit-list .element-item .wrapper-element-item-reverse {
        flex-direction: row-reverse; } }

.heading-le-saviez-vous {
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: calc(17vh + 80px);
  display: flex;
  align-items: center;
  color: #FFF;
  text-align: center;
  justify-content: center;
  background-attachment: fixed;
  background-clip: unset; }
  @media (max-width: 1000px) {
    .heading-le-saviez-vous {
      background-attachment: unset; } }
  .heading-le-saviez-vous h1 {
    font-family: "mixta-sharp", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    display: block;
    position: relative;
    padding-bottom: .5rem;
    text-align: center;
    font-size: 3rem; }
    .heading-le-saviez-vous h1::after {
      content: '';
      position: absolute;
      z-index: 1;
      left: 50%;
      bottom: 0;
      height: 2px;
      width: 25%;
      background-color: #c4d201;
      text-align: center;
      margin: 0 auto;
      transform: translateX(-50%); }

.section-faq {
  padding: 4rem 0 0 0; }
  .section-faq .container {
    display: flex;
    flex-direction: column; }
    .section-faq .container h2 {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      display: block;
      position: relative;
      margin-bottom: 2rem;
      padding-bottom: .5rem; }
      .section-faq .container h2::after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 15%;
        background-color: #c4d201; }
    .section-faq .container .list-faq-items {
      display: flex;
      flex-direction: column;
      gap: 20px; }
      .section-faq .container .list-faq-items .faq-item {
        border-bottom: 1px solid #e9e9e9;
        padding-bottom: 1rem; }
        .section-faq .container .list-faq-items .faq-item .heading-faq-item {
          display: flex;
          justify-content: space-between;
          align-items: start;
          gap: 5px;
          cursor: pointer; }
          .section-faq .container .list-faq-items .faq-item .heading-faq-item h3 {
            font-weight: 400; }
          .section-faq .container .list-faq-items .faq-item .heading-faq-item img {
            max-width: 2rem;
            transition: transform 0.5s ease; }
        .section-faq .container .list-faq-items .faq-item .faq-response {
          max-height: 0;
          overflow: hidden;
          opacity: 0;
          transition: max-height 0.5s ease, opacity 0.5s ease; }
        .section-faq .container .list-faq-items .faq-item.active .faq-response {
          max-height: 5000px;
          /* Ajustez en fonction de votre contenu */
          opacity: 1; }
        .section-faq .container .list-faq-items .faq-item.active .heading-faq-item img {
          transform: rotate(45deg); }
  @media (min-width: 1025px) {
    .section-faq .container {
      flex-direction: row; }
      .section-faq .container h2 {
        flex: 1;
        height: auto;
        padding: 1rem 2rem 0 0; }
        .section-faq .container h2::after {
          top: 0; }
      .section-faq .container .list-faq-items {
        flex: 3; } }

.section-classic-group {
  padding: 4rem 0;
  height: auto;
  width: 100%;
  color: #000; }
  .section-classic-group .content-section-classic-group {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px; }
    .section-classic-group .content-section-classic-group .heading-content-section-classic-group h2 {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      display: block;
      position: relative;
      margin-bottom: 2rem;
      padding-bottom: .5rem; }
      .section-classic-group .content-section-classic-group .heading-content-section-classic-group h2::after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 15%;
        background-color: #c4d201; }
    .section-classic-group .content-section-classic-group .wrapper-img-section-classic-group {
      max-height: 20rem;
      object-fit: cover; }
      .section-classic-group .content-section-classic-group .wrapper-img-section-classic-group img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
  @media (min-width: 1025px) {
    .section-classic-group .content-section-classic-group {
      flex-direction: row;
      align-items: center;
      gap: 60px; }
      .section-classic-group .content-section-classic-group .heading-content-section-classic-group {
        flex: 3; }
      .section-classic-group .content-section-classic-group .wrapper-img-section-classic-group {
        flex: 2; } }

.heading-presse {
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: calc(17vh + 80px);
  display: flex;
  align-items: center;
  color: #FFF;
  text-align: center;
  justify-content: center;
  background-attachment: fixed;
  background-clip: unset; }
  @media (max-width: 1000px) {
    .heading-presse {
      background-attachment: unset; } }
  .heading-presse h1 {
    font-family: "mixta-sharp", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    display: block;
    position: relative;
    padding-bottom: .5rem;
    text-align: center;
    font-size: 3rem; }
    .heading-presse h1::after {
      content: '';
      position: absolute;
      z-index: 1;
      left: 50%;
      bottom: 0;
      height: 2px;
      width: 25%;
      background-color: #c4d201;
      text-align: center;
      margin: 0 auto;
      transform: translateX(-50%); }

.heading-degustation {
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-clip: unset;
  background-repeat: no-repeat;
  min-height: calc(35vh + 80px);
  padding: 5rem 0; }
  @media (max-width: 1000px) {
    .heading-degustation {
      background-attachment: unset; } }
  .heading-degustation .wrapper-content-heading-degustation {
    color: #FFF; }
    .heading-degustation .wrapper-content-heading-degustation h1 {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      display: block;
      position: relative;
      padding-bottom: .5rem;
      text-align: center;
      font-size: 3rem; }
      .heading-degustation .wrapper-content-heading-degustation h1::after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 50%;
        bottom: 0;
        height: 2px;
        width: 75px;
        background-color: #c4d201;
        text-align: center;
        margin: 0 auto;
        transform: translateX(-50%); }
    .heading-degustation .wrapper-content-heading-degustation .content-heading-degustation {
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
      padding: 4rem 0;
      gap: 32px; }
      .heading-degustation .wrapper-content-heading-degustation .content-heading-degustation .text-heading-degustation p {
        font-size: 1.5rem; }

.degustation .container {
  padding: 4rem 0; }
  .degustation .container .informations-degustation {
    font-size: 1.2rem; }
  .degustation .container h2 {
    font-family: "mixta-sharp", serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 2rem;
    font-size: 2rem; }
  .degustation .container strong {
    font-weight: 500; }
  .degustation .container .wrapper_degustation_section div form p {
    text-align: left;
    font-size: 1.5rem;
    font-weight: lighter;
    margin-bottom: 2rem; }
    .degustation .container .wrapper_degustation_section div form p label {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      padding-bottom: .5rem;
      font-size: 1.5rem; }
      .degustation .container .wrapper_degustation_section div form p label span input {
        width: 100%;
        background: none;
        height: 50px;
        color: var(--white-color);
        font-size: 1.3rem; }
      .degustation .container .wrapper_degustation_section div form p label span textarea {
        width: 100%;
        background: none;
        height: 163px;
        color: var(--white-color);
        font-size: 1.3rem;
        font-family: 'Poppins', sans-serif; }
  .degustation .container .wrapper_degustation_section .consent-div {
    margin-top: 4rem;
    margin-bottom: 1rem; }
    .degustation .container .wrapper_degustation_section .consent-div p {
      margin-bottom: 0; }
    .degustation .container .wrapper_degustation_section .consent-div .wpcf7-list-item {
      display: flex; }
    .degustation .container .wrapper_degustation_section .consent-div .consent-text {
      font-size: .9rem; }

input[type="checkbox"] {
  position: absolute;
  opacity: 0; }

.label-consent {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px; }

.label-consent .wpcf7-list-item {
  margin: 0; }

.label-consent .wpcf7-list-item .consent {
  position: relative;
  opacity: 1;
  z-index: 1;
  height: 40px;
  width: 16px; }

.label-consent .wpcf7-list-item .consent {
  position: relative;
  opacity: 1;
  z-index: 1;
  height: 40px; }

.wpforms-field input[type="text"],
.wpforms-field input[type="tel"],
.wpforms-field input[type="email"],
.wpforms-field input[type="number"],
.wpforms-field textarea {
  border: 1px solid gray;
  padding: 1rem; }

.wpforms-field input[type="text"]::placeholder,
.wpforms-field input[type="tel"]::placeholder,
.wpforms-field input[type="number"]::placeholder,
.wpforms-field input[type="email"]::placeholder,
.wpforms-field textarea::placeholder {
  font-weight: lighter; }

.wpforms-submit {
  padding: 10px 50px !important;
  background: #c4d201 !important;
  border: none !important;
  color: white !important;
  font-weight: 300 !important;
  font-size: 1.5rem !important;
  font-family: var(--main-font) !important;
  cursor: pointer !important;
  transition: 0.3s !important; }

.wpforms-field input[type="submit"]:hover {
  background: #545454; }

.wpforms-field input[type="text"]:focus,
.wpforms-field input[type="tel"]:focus,
.wpforms-field input[type="number"]:focus,
.wpforms-field input[type="email"]:focus,
.wpforms-field textarea:focus {
  outline: none;
  box-shadow: none; }

.wpcf7-list-item-label {
  display: inline-block;
  background-color: none;
  padding: 10px 20px;
  border: 1px solid grey;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  position: relative;
  width: 100%;
  text-align: center; }

input[type="checkbox"]:checked + .wpcf7-list-item-label {
  padding: 10px 20px;
  background: var(--gold-color);
  color: white;
  border: var(--gold-color);
  font-weight: 300; }

@media screen and (max-width: 659px) {
  .contact h1::after {
    width: 40px;
    top: 30px; } }

@media screen and (min-width: 660px) {
  .contact h1::after {
    width: 65px;
    top: 30px; } }

@media screen and (min-width: 769px) {
  .checkbox_offers {
    flex-direction: row; }
  .checkbox_offers .wpcf7-list-item .wpcf7-list-item-label {
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: center; } }

@media screen and (min-width: 1025px) {
  .subtitle_contact {
    font-family: var(--handwriting-font);
    color: grey;
    text-align: right;
    padding: 0 0 5rem 0;
    font-size: 4vw;
    margin-top: -2rem;
    font-weight: bolder;
    position: sticky;
    top: 15vh; }
  .wrapper_degustation_section form .container-contact {
    display: flex;
    gap: 4rem; }
  .contact-left {
    flex: 1; }
  .contact-right {
    flex: 1; }
  .wrapper_degustation_section form label {
    margin-bottom: .5rem; }
  .wrapper_degustation_section div form p {
    font-size: 1.25rem; }
  .checkbox_offers {
    flex-direction: column; }
  .checkbox_offers .wpcf7-list-item .wpcf7-list-item-label {
    min-height: min-content; }
  .contact h1::after {
    width: 100px;
    top: 30px; } }

.heading-news-archive {
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: calc(17vh + 80px);
  display: flex;
  align-items: center;
  color: #FFF;
  text-align: center;
  justify-content: center;
  background-attachment: fixed;
  background-clip: unset; }
  @media (max-width: 1000px) {
    .heading-news-archive {
      background-attachment: unset; } }
  .heading-news-archive h1 {
    font-family: "mixta-sharp", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    display: block;
    position: relative;
    padding-bottom: .5rem;
    text-align: center;
    font-size: 3rem; }
    .heading-news-archive h1::after {
      content: '';
      position: absolute;
      z-index: 1;
      left: 50%;
      bottom: 0;
      height: 2px;
      width: 25%;
      background-color: #c4d201;
      text-align: center;
      margin: 0 auto;
      transform: translateX(-50%); }

.news-archive .container {
  padding: 3rem 0 8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative; }
  .news-archive .container .news-archive-item {
    position: relative;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 520px; }
    .news-archive .container .news-archive-item .wrapper-img-item {
      height: 60%;
      width: 100%; }
      .news-archive .container .news-archive-item .wrapper-img-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .news-archive .container .news-archive-item .wrapper-content-item {
      padding: 16px;
      height: 40%;
      gap: 15px;
      position: relative;
      display: flex;
      flex-direction: column; }
      .news-archive .container .news-archive-item .wrapper-content-item h2 {
        font-family: "mixta-didone", serif;
        font-weight: 500;
        text-align: left;
        font-size: 1.75rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis; }
      .news-archive .container .news-archive-item .wrapper-content-item .read-more a {
        color: #000;
        height: 50px;
        display: flex;
        align-items: center;
        position: absolute;
        right: 15px;
        bottom: 0; }
        .news-archive .container .news-archive-item .wrapper-content-item .read-more a:before {
          content: "→";
          font-size: 1.5rem;
          width: 50px;
          height: 50px;
          color: #c4d201;
          display: flex;
          position: absolute;
          left: -50px;
          top: 0px;
          justify-content: center;
          align-items: center; }
  .news-archive .container .top-news::after {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    content: 'À LA UNE';
    background-color: #c4d201;
    transform: rotate(45deg);
    color: #FFF;
    top: 18px;
    right: -27px;
    height: 30px;
    width: 118px; }

/* Responsive Design */
@media (max-width: 768px) {
  .news-archive .container {
    grid-template-columns: repeat(1, 1fr);
    /* 1 colonne pour les petits écrans */ } }

@media (max-width: 992px) and (min-width: 569px) {
  .news-archive .container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 colonnes pour les écrans moyens */ } }

.breadcrumb-news-post {
  display: flex;
  align-items: center;
  height: 13rem; }
  .breadcrumb-news-post #breadcrumbs span a {
    color: #545454; }
    .breadcrumb-news-post #breadcrumbs span a:hover {
      text-decoration: underline; }
  .breadcrumb-news-post #breadcrumbs .breadcrumb_last {
    color: #c4d201; }

.news-post {
  padding: 0 0 4rem; }
  .news-post .content-news-post {
    display: flex;
    flex-direction: column; }
    .news-post .content-news-post .wrapper-img-news-post {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      padding-left: 5rem; }
      @media (max-width: 1025px) {
        .news-post .content-news-post .wrapper-img-news-post {
          padding-left: 0; } }
      .news-post .content-news-post .wrapper-img-news-post img {
        object-fit: cover;
        max-width: 100%;
        height: auto; }
    .news-post .content-news-post .wrapper-content-news-post {
      flex: 1;
      display: block;
      font-size: 1.2rem; }
      .news-post .content-news-post .wrapper-content-news-post h1 {
        font-family: "mixta-sharp", serif;
        font-weight: 400;
        font-style: normal;
        text-transform: uppercase;
        display: block;
        position: relative;
        padding-bottom: .5rem;
        text-align: left;
        font-size: 3rem; }
        .news-post .content-news-post .wrapper-content-news-post h1::after {
          content: '';
          position: absolute;
          z-index: 1;
          left: 0;
          bottom: 0;
          height: 2px;
          width: 100px;
          background-color: #c4d201;
          text-align: center;
          margin: 0 auto; }
      .news-post .content-news-post .wrapper-content-news-post .post-date {
        margin: 2rem 0;
        font-size: .9rem; }
    @media (min-width: 1025px) {
      .news-post .content-news-post {
        flex-direction: row-reverse;
        justify-content: space-between; } }

.heading-contact {
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../backgroundImage.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: calc(35vh + 80px);
  display: flex;
  align-items: center;
  color: #FFF;
  text-align: center;
  justify-content: center;
  background-attachment: fixed;
  background-clip: unset; }
  @media (max-width: 1000px) {
    .heading-contact {
      background-attachment: unset; } }
  .heading-contact h1 {
    font-family: "mixta-sharp", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    display: block;
    position: relative;
    padding-bottom: .5rem;
    text-align: center;
    font-size: 3rem; }
    .heading-contact h1::after {
      content: '';
      position: absolute;
      z-index: 1;
      left: 50%;
      bottom: 0;
      height: 2px;
      width: 25%;
      background-color: #c4d201;
      text-align: center;
      margin: 0 auto;
      transform: translateX(-50%); }

.contact .container {
  padding: 4rem 0; }
  .contact .container h2 {
    font-family: "mixta-sharp", serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 2rem;
    font-size: 2rem; }
  .contact .container .redirection-degustation {
    display: block;
    padding: 1rem 0 2rem; }
    .contact .container .redirection-degustation a {
      color: #c4d201; }
  .contact .container strong {
    font-weight: 500; }
  .contact .container .wrapper_contact_sections div form p {
    text-align: left;
    font-size: 1.5rem;
    font-weight: lighter;
    margin-bottom: 2rem; }
    .contact .container .wrapper_contact_sections div form p label {
      font-family: "mixta-sharp", serif;
      font-weight: 400;
      font-style: normal;
      padding-bottom: .5rem;
      font-size: 1.5rem; }
      .contact .container .wrapper_contact_sections div form p label span input {
        width: 100%;
        background: none;
        height: 50px;
        color: var(--white-color);
        font-size: 1.3rem; }
      .contact .container .wrapper_contact_sections div form p label span textarea {
        width: 100%;
        background: none;
        height: 163px;
        color: var(--white-color);
        font-size: 1.3rem;
        font-family: 'Poppins', sans-serif; }
  .contact .container .wrapper_contact_sections .consent-div {
    margin-top: 4rem;
    margin-bottom: 1rem; }
    .contact .container .wrapper_contact_sections .consent-div p {
      margin-bottom: 0; }
    .contact .container .wrapper_contact_sections .consent-div .wpcf7-list-item {
      display: flex; }
    .contact .container .wrapper_contact_sections .consent-div .consent-text {
      font-size: .9rem; }

input[type="checkbox"] {
  position: absolute;
  opacity: 0; }

.label-consent {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px; }

.label-consent .wpcf7-list-item {
  margin: 0; }

.label-consent .wpcf7-list-item .consent {
  position: relative;
  opacity: 1;
  z-index: 1;
  height: 40px;
  width: 16px; }

.label-consent .wpcf7-list-item .consent {
  position: relative;
  opacity: 1;
  z-index: 1;
  height: 40px; }

.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  border: 1px solid gray;
  padding: 1rem; }

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form textarea::placeholder {
  font-weight: lighter; }

.wpcf7-form input[type="submit"] {
  padding: 10px 50px;
  background: #c4d201;
  border: none;
  color: white;
  font-weight: 300;
  font-size: 1.5rem;
  font-family: var(--main-font);
  width: 100%;
  cursor: pointer;
  transition: .3s; }

.wpcf7-form input[type="submit"]:hover {
  background: #545454; }

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  box-shadow: none; }

.wpcf7-list-item-label {
  display: inline-block;
  background-color: none;
  padding: 10px 20px;
  border: 1px solid grey;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  position: relative;
  width: 100%;
  text-align: center; }

input[type="checkbox"]:checked + .wpcf7-list-item-label {
  padding: 10px 20px;
  background: var(--gold-color);
  color: white;
  border: var(--gold-color);
  font-weight: 300; }

@media screen and (max-width: 659px) {
  .contact h1::after {
    width: 40px;
    top: 30px; } }

@media screen and (min-width: 660px) {
  .contact h1::after {
    width: 65px;
    top: 30px; } }

@media screen and (min-width: 769px) {
  .checkbox_offers {
    flex-direction: row; }
  .checkbox_offers .wpcf7-list-item .wpcf7-list-item-label {
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: center; } }

@media screen and (min-width: 1025px) {
  .subtitle_contact {
    font-family: var(--handwriting-font);
    color: grey;
    text-align: right;
    padding: 0 0 5rem 0;
    font-size: 4vw;
    margin-top: -2rem;
    font-weight: bolder;
    position: sticky;
    top: 15vh; }
  .wrapper_contact_sections form .container-contact {
    display: flex;
    gap: 4rem; }
  .contact-left {
    flex: 1; }
  .contact-right {
    flex: 1; }
  .wrapper_contact_sections form label {
    margin-bottom: .5rem; }
  .wrapper_contact_sections div form p {
    font-size: 1.25rem; }
  .checkbox_offers {
    flex-direction: column; }
  .checkbox_offers .wpcf7-list-item .wpcf7-list-item-label {
    min-height: min-content; }
  .contact h1::after {
    width: 100px;
    top: 30px; } }

form.wpforms-form .wpforms-field-checkbox a {
  color: #c4d201 !important; }

footer {
  padding: 3rem;
  text-align: center;
  border-top: 1px solid lightgray; }
  footer .container-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem; }
    footer .container-footer .wrapper-informations-footer {
      display: flex;
      flex-direction: column;
      gap: 10px; }
      footer .container-footer .wrapper-informations-footer .logo {
        max-width: 6rem;
        margin-bottom: 1.4rem; }
      footer .container-footer .wrapper-informations-footer .informations-footer {
        font-weight: light;
        font-size: 1rem;
        display: flex;
        flex-direction: column;
        gap: 7px; }
    footer .container-footer #menu-menu-bas-de-page li a {
      font-size: 1rem; }
    footer .container-footer .wrapper-social-media-footer {
      display: flex;
      justify-content: center;
      gap: 12px; }
      footer .container-footer .wrapper-social-media-footer a {
        position: relative;
        display: block;
        width: 30px;
        height: 30px;
        border-radius: 50%; }
        footer .container-footer .wrapper-social-media-footer a img {
          height: 100%;
          width: 100%;
          object-fit: cover; }
      footer .container-footer .wrapper-social-media-footer .facebook {
        background-color: #3b5998; }
        footer .container-footer .wrapper-social-media-footer .facebook:hover {
          background-color: #254487; }
      footer .container-footer .wrapper-social-media-footer .instagram {
        background-color: #C13584; }
        footer .container-footer .wrapper-social-media-footer .instagram:hover {
          background-color: #982d6a; }
    @media (min-width: 1025px) {
      footer .container-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 3rem; } }
  footer .copyright-realisation {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: .8rem; }
    footer .copyright-realisation .realisation a {
      color: #545454; }
      footer .copyright-realisation .realisation a:hover {
        color: #c4d201; }
    @media (min-width: 1025px) {
      footer .copyright-realisation {
        flex-direction: row;
        align-items: center;
        justify-content: space-between; } }
