/**
 * @file
 * Modules styles
 *
 * Modules are reusables CSS objects (components).
 * They can be utilized
 */

/**
 * Breadcrumb
 */
.breadcrumb{
  padding:1.5em 15px;
  max-width: 1330px;
  margin: 0 auto;
  width: 100%;
}
.breadcrumb a{
  color:#afafaf;
  text-decoration: none;
 }
.breadcrumb li:before{
  content:'>';
  color:#afafaf;
  text-decoration: none;
 }

 .titre-page{
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  z-index: 4;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 270px;
 }

 .page-title{
  font-size: 1.875rem;
}
 @media screen and (min-width: 1000px) {
  .page-title{
    font-size: 3rem;
  }

  .page-node-2 .titre-page {
    right: 6%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .titre-page {
    right: 6%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}



@media screen and (min-width: 1000px) {
  .layout-sidebar-first .region-sidebar-first{
    position: sticky;
    top: 2.5rem;
    margin-bottom: 2rem;
  }
}


/**
 * Paragraphe instance de bloc
 */
.homepage-bloc-wrapper .block{
  width:33.333%;
  padding:1rem;
}

.instance-de-bloc__wrapper{
  display: flex;
  flex-direction: column-reverse;
  /* flex-wrap: wrap; */
  overflow: hidden;
  /* border-radius: 1em; */
  padding: 2rem 1rem;
  gap: 2rem;
}

@media screen and (min-width: 1024px) {
  .instance-de-bloc__wrapper{
    display: flex;
    flex-direction: row;
    padding: 5rem 0rem;
  }
  .instance-de-bloc__wrapper > :first-child {
    flex: 0 0 calc(75% - 1rem); /* 75% - 1rem pour tenir compte du gap */
    margin-bottom: 2rem; /* Ajoutez une marge basse égale à la valeur du gap */
  }

  .instance-de-bloc__wrapper > :nth-child(2) {
    flex: 0 0 calc(25% - 1rem); /* 25% - 1rem pour tenir compte du gap */
  }
}

.slick-arrow{
  position: absolute;
  width:45px;
  height:45px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  overflow: hidden;
  text-indent:-999em;
  border:none;
  padding:1em;
  z-index:6;
  background-color: transparent;
}
.slick-next{
  background-image:url(../images/arrow-right.svg);
}
.slick-prev{
  background-image:url(../images/arrow-left.svg);
}
.slick-dots{
  padding:0.25em 0 0;
  margin:0;
  text-align: right;
}
.slick-dots li{
  list-style: none;
  display: inline-block;
  width: 8px;
  height: 8px;
  overflow: hidden;
  border-radius: 50%;
  margin:0em 0.125em;
}
.slick-dots .slick-active button{
  background-color:#f36d2d;
}
.slick-dots button{
  width: 8px;
  height: 8px;
  border:none;
  background-color:#dddddd;
  text-indent: -999em;
}

@media screen and (max-width: 900px) {
  .slick-arrow{
    position: absolute;
    width:45px;
    height:45px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    overflow: hidden;
    text-indent:-999em;
    border:none;
    padding:1em;
    z-index:6;
    background-color: transparent;
  }
  .slick-dots{
    padding:0.25em 5em 0;
    margin:0;
    text-align: right;
  }
}

/**
 * Bienvenue & Slider
 */
.bloc-slider{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding:3em 0;
}
.bloc-slider__titre{
  color:#f36d2d;
  font-size: 36px;
  font-weight: bold;
  padding:0;
  margin:0;
  line-height:1em;
}
.bloc-slider__texte{
  margin:1.5em 0;
}
.bloc-slider__lien{
  background-color: #f36d2d;
  border: none;
  color: white;
  right: 3.1rem;
}
.bloc-slider__lien a{
  text-decoration: none;
  color:#fff;
  font-size: 18px;
  padding: 18px 57px;
  display: block;
}
.bloc-slider__contenu{
  width: 40%;
  text-align: right;
  padding:1em 3em 1em 0;

}
.bloc-slider__images{
  width: 60%;
  position: relative;
  text-align: left;
}
.bloc-slider__image{
  position: relative;
}
.bloc-slider__legende{
  position: absolute;
  right: 15px;
  top:2.5em;
  z-index:5;
  margin:0;
  color:#fff;
  padding:1.15em;
  max-width:210px;
  background-color:rgba(242,101,34,0.95);
}
.bloc-slider .slick-arrow{
  right:99px;
  background-color: #fff;
}
.bloc-slider .slick-next{
  bottom:28px;
}
.bloc-slider .slick-prev{
  bottom:65px;
}
.bloc-slider .slick-dots{
  text-align: center;
}
@media screen and (max-width: 1350px) {
  .bloc-slider .slick-arrow{
    right:0;
  }
}
@media screen and (max-width: 900px) {
  .bloc-slider{
    padding-top:0;
  }
  .bloc-slider__images, .bloc-slider__contenu{
    width:50%;
  }
  .bloc-slider__contenu{
    padding:1em 1em 1em 0;
  }
}
@media screen and (max-width: 700px) {
  .bloc-slider{
    flex-direction: column;
  }
  .bloc-slider__images, .bloc-slider__contenu{
    width:100%;
  }
  .bloc-slider__contenu{
    order:1;
    padding:1em 0;
    text-align: left;
  }
  .bloc-slider__images{
    order:2;
  }
  .bloc-slider__legende{
    right: 0;
    top:0;
  }
}
@media screen and (max-width: 550px) {
  .bloc-slider__legende{
    position: static;
    width: 100%;
    max-width:100%;
  }
  .bloc-slider .slick-next{
    bottom:inherit;
    top:45px;
  }
  .bloc-slider .slick-prev{
    bottom:inherit;
    top:0px;
  }
}


/**
 * Actualités & Zoom sur
 */
@media screen and (max-width: 768px) {
    .instance-de-bloc__wrapper .block-views-blockactualites-block-1 h2,
    .menu--en-un-clic h2{
    margin:0;
    text-transform: uppercase;
    font-size: 2.25em;
    font-weight: 700;
    }
    }

    .block-views-blockactualites-block-1 h2,
    .menu--en-un-clic h2{
    color:#212121;
    margin:0;
    text-transform: uppercase;
    font-size: 2.25em;
    font-weight: 700;
    }
    .more-link a{
      color: #1D836F;
      font-family: Asap;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      text-decoration: none;
    }
    .block-views-blockactualites-block-1 .more-link {
      text-align: center;
    }

    @media screen and (min-width: 600px) {
      .block-views-blockactualites-block-1 .more-link {
        text-align: left;
      }
    }

/**
 * Actualités
 */


@media screen and (max-width: 768px) {

    .instance-de-bloc__wrapper .block-views-blockactualites-block-1{
      /* background-color: #18ad8a; */
      width: 100%;
      padding:3em 1em 0em 1em;
      text-align: center;
    }
    .block-views-blockactualites-block-1 .more-link a {
      text-align: left;
      padding:1rem;
    }
    .actu-list{
    margin:0;
    padding:0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    }
    .actu-list .actu-item{
    width: 100%;
    list-style: none;
    padding:1em;
    text-align: left;
    }
    .actu-list .actu__thumb {
      text-align: center;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px){

    .instance-de-bloc__wrapper .block-views-blockactualites-block-1{
      /* background-color: #18ad8a; */
      width: 100%;
      padding:3em 1em 0em 1em;
      text-align: center;
    }
}
@media screen and (min-width: 1025px) and (max-width: 1300px){

    .actu-list .actu-item{
    width: 50%;
    list-style: none;
    padding:1em;
    text-align: left;
    }

    .actu-list .actu-item:last-child{
    width: 100%;
    list-style: none;
    padding:1em;
    text-align: left;
    }

}

.block-views-blockactualites-block-1{
  margin: 0 0;
}

.block-views-blockactualites-block-1 .more-link a{
  text-align: left;
  padding:1rem;
  text-align: left;
  padding: 1rem;
  display: inline-block;
  padding: 16px 32px;
  gap: var(--Round-corner, 10px);
  border-radius: 40px;
  border: 1px solid var(--Primary-30, #19544D);
}
.block-views-blockactualites-block-1 .more-link a:hover{
  border: 1px solid var(--Primary-30, #19544D);
  background: #19544D;
  color: white;
}
.actu-list{
  margin:0;
  padding:0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.actu-item{
  width: 25%;
  list-style: none;
  padding:1em 0;
  text-align: left;
  color: #212121;
}

.actu-item > div{
  margin : 0.5rem 0;
}

.actu__thumb {
  display: flex;
  justify-content: center;
  border: 1px solid #DCDCDC;
}

.actu__title a{
  text-decoration: none;
  color: #212121;
  font-weight: 700;
  font-size:1.25em;
  text-transform: uppercase;
}
.actu__date{
  color: #212121;
  font-size:0.875em;
}
.actu__resume{
  color: #212121;
}

@media screen and (min-width: 900px) {
  /* .block-views-blockactualites-block-1{
    margin: 4rem 0;
  } */
}


/**
 * Zoom sur
 */

.menu--en-un-clic{
  background-color: #AFD9D1;
  width: 25%;
  padding-top: 1.25rem;
  text-align: center;
  border-radius: 10px;
  height: fit-content;
  padding-bottom: 1.25rem;
}
.menu--en-un-clic ul{
  margin:0;
  padding:1rem 0 0;

}
.menu--en-un-clic .menu-item {
  position: relative;
  padding-top: 0;
}
.menu--en-un-clic .menu-item .menu_link_content{
  left: 0;
  top: 0;
  bottom: 0;
  width: 4em;
  height: 100%;
  position: absolute;
  background-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.menu--en-un-clic .menu-item .menu_link_content img{
  width: 40px;
  height: 40px;
}
.menu--en-un-clic a{
  color:#151616;
  font-weight: bold;
  text-decoration: none;
  padding: 1rem 1rem 1rem 4.2rem;
  border-top:1px solid #fff;
  display: block;
  transition:all 0.25s;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.menu--en-un-clic a:before{
  content:'';
  position: absolute;
  width: 100%;
  top:0;
  left:0;
  height:0;
  background-color:#7fa9ab;
  transition:all 0.25s;
  z-index:-1;
}
.menu--en-un-clic a:hover:before{
  height:100%;
  transition:all 0.25s;
}

.menu--en-un-clic a:after {

}
@media screen and (max-width: 1024px) {
  .menu--en-un-clic{
    background-color: #AFD9D1;
    width: 100%;
    padding:1em 0 0;
    text-align: center;
  }
}



/**
 *----------------------------------------------------------------------------------------------
 * Page actualités
 */
 .actu__thumb-page{
  width: 300px;
}
 .actu-item-page{
  width: 100%;
  list-style: none;
  padding: 1em 0 2em 0;
  text-align: left;
  font-style: normal;
 }
.actu-list-page{
  padding:0;
}
.actu-inner{
  display: flex;
  flex-direction: row;
}
.actu-list-page{
  display: flex;
  flex-direction: column;
}
.actu__content{
  display: flex;
  flex-direction: column;
  width: calc(100% - 300px);
  padding-left: 2rem;
  align-items: flex-start;
}
.actu__title-page a{
  text-decoration: none;
  color:#333;
  font-weight: 700;
  font-size:1.25em;
  text-transform: uppercase;
}
.actu__date-page{
  color:#777777;
  font-size:0.875em;
}
.actu__resume-page{
  color:#333;
}

.actu__view-page{
    background-color: #eeeeee;
    border: none;
    color: white;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    align-items: start;
}
.actu__view-page a{
  text-decoration: none;
  color:#b0b0b0;
  font-size: 18px;
  display: block;
  padding: 13px 33px;
}

@media screen and (max-width: 900px) {
    .actu__view-page {
      margin: 0 auto;
      padding: 10px;
    }
    .actu__thumb-page{
      width: 100%;
      padding-bottom: 10px;
      text-align: center;
    }
    .actu__content{
      width: 100%;
      padding: 0;
    }
    .actu-inner{
    display: flex;
    flex-direction: column;
  }

}




/**
 *----------------------------------------------------------------------------------------------
 * Page Tourisme - Menu latéral gauche
 */

 .menu-sidebar ul{
  margin:0;
  padding:0;
 }
 .menu-sidebar span{
  background-color: #F36D2D;
  color:#fff;
  margin: 0;
  display: block;
  padding:0.75rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size:1.75em;
}
.menu-sidebar .menu__item--level-0{
  display: none;
}
.menu-sidebar .menu__item--level-0.menu__item--active-trail{
  display: block;
}
.menu-sidebar a{
  background-color: #404040;
  color: #fff;
  display: block;
  padding: 0.85em;
  text-decoration: none;
}
.menu-sidebar .menu__item--level-2 a {
  padding-left: 3em;
}
.menu-sidebar .menu__item--level-3 a {
  padding-left: 5em;
}
.menu-sidebar .menu--level-0 a.is-active{
  background-color: #2d2d2d;
  color: white;
}
.menu-sidebar a:hover {
  background-color: #2d2d2d;
}
.menu-sidebar .menu__item--level-1.menu__item--expanded:not(.menu__item--active-trail) {
  display: none;
}
.menu-sidebar .submenu-wrapper {
  display: none;
}
.menu-sidebar .menu__item {
  border-bottom: 1px solid #484848;
  list-style: none;
}


/**
 *----------------------------------------------------------------------------------------------
 * Paragraphe image+texte
 */


.paragraphe-image-texte{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  padding:1.5em 0;
}
.paragraphe-image-texte--position-image-left .image-texte__image-wrapper,
.paragraphe-image-texte--position-image-right .image-texte__content{
  order:1;
}
.paragraphe-image-texte--position-image-right .image-texte__image-wrapper,
.paragraphe-image-texte--position-image-left .image-texte__content{
  order:2;
}
.paragraphe-image-texte--position-image-right .image-texte__content{
  padding-right:2em;
}
.paragraphe-image-texte--position-image-left .image-texte__content{
  padding-left:2em;
}
.image-texte__title{
  margin:0;
}
.image-texte__image-wrapper{
  padding: 0;
  margin: 0;
  width:45%;
  position: relative;
}
.image-multiple__legend{
  color:grey;
  text-align: left;
  width: 50%;
}
.image-texte__content{
  width: 55%;
}
.image-texte__image-wrapper .slick-arrow{
  top: 45%;
  transform: translateY(-50%);
}
.image-texte__image-wrapper .slick-next{
  right: 0;
}
.image-texte__image-wrapper .slick-dots .slick-active button{
  background-color:#18ad8a;
}





@media screen and (max-width: 900px) {
  .paragraphe-image-texte .image-texte__image-wrapper{
    padding: 0;
    margin: 0;
    width:100%;
    position: relative;
  }
  .paragraphe-image-texte .image-texte__content{
    padding: 0;
    margin: 0;
    width:100%;
    position: relative;
    order:2;
  }
  .paragraphe-image-texte--position-image-right .image-texte__image-wrapper{
    order:1;
    align-items: center;
  }
  .paragraphe-image-texte--position-image-right .image-texte__content{
    order:2;
    align-items: center;
  }
  .image-multiple__legend{
    text-align: center;
  }
  .image-texte__image{
    text-align: center;
  }
  .image-texte__image div, .image-multiple__image img{
    display: inline-block;
  }
}

@media screen and (max-width: 600px) {
  .image-multiple__legend{
    width:100%;
  }
}
/**
 *----------------------------------------------------------------------------------------------
 * Texte specificities
 */

.highlighted-text{
  color:#18AD8A;
  font-size:1.125em;
}
.content p{
  margin-top:0;
}
.content a{
  color:#18AD8A;
  text-decoration: none;
}
.content a:hover{
  text-decoration: underline;
}

/**
 *----------------------------------------------------------------------------------------------
 * Page Contact
 */

.contact-form-block .block-webform{
  width: 50%;
  margin: 0 auto;
  width: 400px;
}

.contact-form-block .block-webform input{
  height:34px;
  border:1px solid #dddddd;
}
.contact-form-block .form-textarea-wrapper textarea{
   border:1px solid #dddddd;
}

.block-block-contentee776348-44a9-416b-8aac-f44b3fad2df2{
  width: 50%;
}

.block-block-contentee776348-44a9-416b-8aac-f44b3fad2df2 a{
  color:black;
}

.button,
.image-button {
  margin-left: 1em;
  margin-right: 1em;
  display:flex;
  text-transform: uppercase;
  padding: 0 50px;
  border:1px solid #dddddd;
  background-color:white;
  color:#bbbbbb;
}
.button:first-child,
.image-button:first-child {
  margin-left: 0;
  margin-right: 0;
  margin-left:auto
}

.google-map{
  padding:50px 20px 70px 20px;
}


/**
 * Cookies Band
 */

 .eu-cookie-compliance-banner {
  background-color: #075146;
  border-top: #f36d2d solid 2px;
}
#popup-text h2,
#popup-text p {
  color: #fff;
}
.eu-cookie-compliance-message .find-more-button{
  text-decoration: none;
  color: #fff;
}
.eu-cookie-compliance-message .find-more-button:hover{
  text-decoration: underline;
}
.decline-button.eu-cookie-compliance-default-button {
  color: #fff;
  background: none;
  font-size: 1rem;
  font-weight: 400;
  border: 0;
  text-shadow: none;
  padding: 0;
  box-shadow: none;
}
.agree-button.eu-cookie-compliance-secondary-button {
  background: #f36d2d;
  border: #f36d2d solid 1px;
  padding: 0.5em;
  margin-right: 1em;
}
.agree-button.eu-cookie-compliance-secondary-button:hover {
  background: #18ad8a;
  color: #fff;
}


/**
 * Refonte 2023 - Paragraphe Chiffres clés
 */

.paragraphe-chiffres-cles {
  gap: 1.75rem;
}

.chiffres-cles__wrapper {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 3rem;
  z-index: 2;
  position: relative;
}

.chiffres-cles__part-left {
  background-color: #AFD9D1;
}
.chiffres-cles__part-left-inner {
  padding: 3rem 1.5rem;
}

.chiffres-cles__title {
  color: #19544D;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 36px; /* 150% */
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.chiffres-cles__text {
  display: none;
}

.chiffres-cles__blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.chiffres-cles__block-commune,
.chiffres-cles__block-habitants,
.chiffres-cles__block-creation {
  background-color: #19544D;
  border-radius: 10px;
  color: #FFF;
  text-transform: uppercase;
  padding: 2rem 1rem;
  width: 100%;
  max-width: 336px;
}

.chiffres-cles__block-commune,
.chiffres-cles__block-habitants {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 300px;
}

.chiffres-cles__block-commune img{
  width: 90px;
  height: 66px;
}
.chiffres-cles__block-habitants img{
  width: 90px;
  height: 81px;
}

.chiffres-cles__block-commune-number,
.chiffres-cles__block-habitants-number,
.chiffres-cles__block-creation-number {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 100%; /* 50px */
}

.chiffres-cles__part-right {
  background-color: #F0F2F5;
  margin-bottom: 2rem;
}

.chiffres-cles__part-right-inner {
  padding: 2.5rem 1.25rem;
}

.chiffres-cles__titre-facebook {
  color: #19544D;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 25px; /* 300% */
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.chiffres-cles__iframe-facebook {
  text-align: center;
}


@media screen and (min-width: 850px) {
  .paragraphe-chiffres-cles {
    /* background: linear-gradient(to right, #afd9d1 66%, #ffffff 66%); */
    margin: 3rem 0;
    position: relative;
    /* margin-right: 2rem; */
    overflow: hidden;
  }
  .paragraphe-chiffres-cles::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 68%;
    height: 100%;
    background-color: #afd9d1; /* Couleur de fond */
    z-index: -1; /* Placez-le en arrière de l'élément principal */
    border-top-right-radius: 20px; /* Rayon pour le coin supérieur droit */
    border-bottom-right-radius: 20px; /* Rayon pour le coin inférieur droit */
  }

  .chiffres-cles__blocks {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .chiffres-cles__block-commune,
  .chiffres-cles__block-habitants,
  .chiffres-cles__block-creation {
    padding: 1rem;
    max-width: inherit;
    align-self: stretch;
    flex: 1 0 26%;
    max-width: 300px;
  }

  .chiffres-cles__block-commune,
  .chiffres-cles__block-habitants {
    min-width: 300px;
  }

  .chiffres-cles__wrapper {
    flex-direction: row;
    gap: 0;
    padding-bottom: 3rem;
  }

  .chiffres-cles__text {
    display: inherit;
  }
  .chiffres-cles__part-left {
    background-color: inherit;
  }

  .chiffres-cles__title{
    font-size: 2.25rem;
  }
  .chiffres-cles__text{
    color: #212121;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    max-width: 650px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .chiffres-cles__block-creation-text {
    max-width: 160px;
  }

  .chiffres-cles__part-right {
    border-radius: 10px;
    margin-bottom: inherit;
  }
  .chiffres-cles__part-right-inner {
    padding: 1.5rem 0.5rem;
  }
}

@media screen and (min-width: 1250px) {
  .paragraphe-chiffres-cles::after {
    content: '';
    position: absolute;
    top: 0;
    right: -240px;
    background-image: url(../images/image-before-footer.svg);
    background-repeat: no-repeat;
    height: 475px;
    width: 475px;
  }
  .chiffres-cles__wrapper {
    gap: inherit;
  }
  .chiffres-cles__part-right-inner {
    padding: 2.5rem 1.25rem;
  }
  .chiffres-cles__blocks {
    flex-wrap: inherit;
  }
  .chiffres-cles__block-commune,
  .chiffres-cles__block-habitants,
  .chiffres-cles__block-creation {
    flex: inherit;
  }
}


/**
 * Refonte 2023 - Paragraphe En un clic
 */

/* .paragraphe-en-un-clic {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 } */

 .en-un-clic__wrapper {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center; */
  gap: 16px;
  flex-wrap: wrap;
  padding: 1rem;
  padding-bottom: 0;
}


.en-un-clic__wrapper {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.en-un-clic__wrapper a {
  width: 30%;
  flex-grow: 1;
  min-height: 120px;
  box-sizing: border-box;
  margin: 0 5px 10px;
  justify-content: space-between;
  text-align: center;
}




.en-un-clic__wrapper__title {
  color: var(--Neutral-80, #212121);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 54px; /* 150% */
  text-transform: uppercase;
  padding: 0 1rem;
  margin-top: 1.5rem;
}


.paragraphe-en-un-clic {
  /* padding: 20px; */
  text-align: center;
  border-radius: 10px;
  align-self: stretch;
  min-height: 177px;
  line-height: 23px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  transition: background 0.3s ease; /* Ajoute une transition pour une animation fluide */
}


.paragraphe-en-un-clic--blue {
  background-color: #AFD9D1;
}
.paragraphe-en-un-clic--green {
  background-color: #CDDD6C;
}
.paragraphe-en-un-clic--orange {
  background-color: #EA895B;
}
.paragraphe-en-un-clic--green-grey {
  background-color: #7fa9ab;
}
.paragraphe-en-un-clic--green-olive {
  background-color: #64a38c;
}

.paragraphe-en-un-clic--blue:hover {
  background-color: rgb(176, 217, 210, 0.7);
}
.paragraphe-en-un-clic--green:hover {
  background-color: rgb(206, 221, 110, 0.7);
}
.paragraphe-en-un-clic--orange:hover {
  background-color: rgb(234, 137, 93, 0.7);
}
.paragraphe-en-un-clic--green-grey:hover {
  background-color: rgb(127, 169, 171, 0.7);
}
.paragraphe-en-un-clic--green-olive:hover {
  background-color: rgb(100, 163, 140, 0.7);
}

@media (min-width: 1000px) {
  .paragraphe-en-un-clic {
    min-height: 130px;
  }
}


.en-un-clic__wrapper a{
  text-decoration: none;
}

.en-un-clic__title {
  color: #151616;
  text-align: center;
  font-family: Calibri;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 850px) {
  .en-un-clic__wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: calc(33% - 1.5rem) calc(33% - 1.5rem) calc(33% - 1.5rem) ;
  }

  .en-un-clic__wrapper a {
    width: inherit;
    flex-grow: inherit;
    min-height: inherit;
    box-sizing: inherit;
    margin: inherit;
    justify-content: inherit;
    text-align: inherit;
  }
}

@media (min-width: 1000px) {

  .en-un-clic__wrapper{
    display: grid;
    grid-template-rows: 1fr;
    gap: 2rem 2rem;
    /* grid-template-areas:
      "a b c d"
      "e f g h i"; */
  }
  .en-un-clic__wrapper--4{
    grid-template-columns: calc(33% - 1.5rem) calc(25% - 1.5rem) calc(16.67% - 1.5rem) calc(25% - 1.5rem);
  }
  .en-un-clic__wrapper--5{
    grid-template-columns: calc(25% - 1.5rem) calc(16.67% - 1.5rem) calc(16% - 1.5rem) calc(16.67% - 1.5rem) calc(25% - 1.5rem);
  }
}

@media (min-width: 1350px) {
  .en-un-clic__wrapper {
    padding: 1rem 0;
  }
  .en-un-clic__wrapper__title {
    padding: 0;
    margin-top: 3rem;
  }
}


/**
 * Refonte 2023 - Slider actualites homepage
 */

.actu-wrapper .tns-controls{
  display: flex;
  align-items: center;
  justify-content: center;
}

.actu-wrapper .tns-controls::before {
  content: "ACTUALITÉS";
  color: #212121;
  margin: 0;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 700;
  margin-right: 1rem;
}

@media (min-width: 650px) {
  .actu-wrapper .tns-controls::before {
    font-size: 2.25em;
    margin-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .actu-wrapper .tns-controls{
    justify-content: inherit;
  }
}
@media (min-width: 1024px) and (max-width: 1300px){
  .actu-wrapper .tns-controls::before {
    margin-left: 1rem;
  }
}

.actu-wrapper .tns-outer button[data-controls="prev"],
.actu-wrapper .tns-outer button[data-controls="next"] {
  all: unset;
  text-indent: -10000px;
  overflow: hidden;
  width: 38px;
  height: 38px;
  margin: 0 0.5rem;
}
.actu-wrapper .tns-outer button[data-controls="prev"] {
  background: url(../images/arrow-slider-left.svg);
}

.actu-wrapper .tns-outer button[data-controls="next"] {
  background: url(../images/arrow-slider-right.svg);
}


/**
 * Refonte 2023 - Slider header homepage
 */

 .bloc-header-wrapper .tns-outer .tns-controls{
  z-index: 5;
  position: relative;
}


.bloc-header-wrapper .tns-outer button[data-controls="prev"],
.bloc-header-wrapper .tns-outer button[data-controls="next"] {
  display: none;
}

@media (min-width: 1000px) {
  .bloc-header-wrapper .tns-outer button[data-controls="prev"],
  .bloc-header-wrapper .tns-outer button[data-controls="next"] {
    display: inherit;
    all: unset;
    text-indent: -10000px;
    overflow: hidden;
    width: 48px;
    height: 48px;
    margin: 0 0.5rem;
    position: absolute;
  }
  .bloc-header-wrapper .tns-outer button[data-controls="prev"] {
    background: url(../images/arrow-slider-homepage-left.svg);
    top: 22rem;
    left: 3rem;
  }
  .bloc-header-wrapper .tns-outer button[data-controls="next"] {
    background: url(../images/arrow-slider-homepage-right.svg);
    top: 22rem;
    right: 3rem;
  }
}

.node__date {
  text-align: right;
  color: #afafaf;
}
