@charset "UTF-8";
/*!
Theme Name: Agri-Bio Energies
Theme URI: 
Author: Noémie Miele
Author URI: https://melvin.studio
Description: Agri-Bio Energies !
Version: 1.1
*/
@font-face {
  font-family: Ubuntu;
  src: url(assets/fonts/Ubuntu/Ubuntu-regular.woff2) format("woff2");
}
body {
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.title {
  font-weight: bold;
  font-size: 2.8rem;
  color: #2e2e2e;
  margin-bottom: 2rem;
  margin-top: 3.5rem;
}

.autre {
  max-width: 130px !important;
}

.icon {
  max-width: 90px !important;
}

.subtitle {
  font-weight: bold;
  font-size: clamp(1rem, 0.6818rem + 1.3576vw, 1.7rem);
  color: #3a5a40;
  position: relative;
  padding-bottom: 1.5rem;
}
.subtitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #f59e1b;
  border-radius: 2px;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease, backdrop-filter 0.3s ease;
}
.navigation__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
@media (max-width: 1065px) {
  .navigation__container {
    padding: 1.2rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .navigation__container {
    padding: 1rem;
  }
}
.navigation__container_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  z-index: 11;
}
@media (max-width: 1065px) {
  .navigation__container_logo {
    height: 6rem;
  }
}
@media (max-width: 768px) {
  .navigation__container_logo {
    height: 5rem;
  }
}
@media (max-width: 576px) {
  .navigation__container_logo {
    height: 4rem;
  }
}
.navigation__container_logo_img {
  height: 100%;
  width: auto;
}
.navigation__hamburger {
  display: none;
  cursor: pointer;
  z-index: 11;
  width: 30px;
  height: 20px;
  position: relative;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}
@media (max-width: 1065px) {
  .navigation__hamburger {
    display: block;
  }
}
.navigation__hamburger:hover {
  transform: scale(1.1);
}
.navigation__hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.navigation__hamburger span:first-child {
  top: 0;
  transform-origin: center;
}
.navigation__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
.navigation__hamburger span:last-child {
  bottom: 0;
  transform-origin: center;
}
.navigation__hamburger.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}
.navigation__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.navigation__hamburger.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}
.navigation.scrolled {
  background-color: rgba(43, 73, 38, 0.6156862745);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1065px) {
  .navigation nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #2b4926;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 10;
    overflow-y: auto;
  }
  .navigation nav.active {
    right: 0;
  }
}
.navigation nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 1065px) {
  .navigation nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.navigation nav ul li {
  font-size: 1.2rem;
  font-weight: bold;
}
@media (max-width: 1065px) {
  .navigation nav ul li {
    width: 100%;
    font-size: 1.3rem;
  }
}
@media (max-width: 576px) {
  .navigation nav ul li {
    font-size: 1.2rem;
  }
}
.navigation nav ul li.current-menu-item a::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.navigation nav ul a {
  text-decoration: none;
  color: white;
  position: relative;
  transition: all 0.1s ease-in-out;
}
@media (max-width: 1065px) {
  .navigation nav ul a {
    display: block;
    padding: 0.5rem 0;
  }
}
.navigation nav ul a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.4s ease;
}
.navigation nav ul a:hover {
  color: #ddd;
}
.navigation nav ul a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.navigation__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9;
}
@media (max-width: 1065px) {
  .navigation__overlay {
    display: block;
  }
}
.navigation__overlay.active {
  opacity: 1;
  visibility: visible;
}

footer {
  margin-top: 3rem;
  background-color: #204d1f;
  color: #ffffff;
  padding: 3rem 5% 1.5rem 5%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 2rem 15px 1rem 15px;
  }
}

#scrollTop {
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #f5a623;
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

#scrollTop:hover {
  background-color: #db8700;
  transform: scale(1.1);
}

#scrollTop:active {
  transform: scale(0.9);
}
#scrollTop:active button {
  background-color: #6dbb4d;
  border: none;
  padding: 0.8rem 1.5rem;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 1rem;
}
#scrollTop:active button:hover {
  background-color: #5ea03f;
}
@media screen and (max-width: 768px) {
  #scrollTop:active button {
    margin: 1rem auto 0 auto;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 2rem 5%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 2rem 15px;
  }
}
.footer-content .footer-section {
  max-width: 300px;
  margin-bottom: 1rem;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer-content .footer-section {
    max-width: 100%;
    text-align: center;
  }
}
.footer-content .footer-section .footer-logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer-content .footer-section .footer-logo {
    max-width: 120px;
  }
}
@media screen and (max-width: 576px) {
  .footer-content .footer-section .footer-logo {
    max-width: 100px;
  }
}
.footer-content .footer-section .menu .menu-item {
  margin-bottom: 0.5rem;
}
.footer-content .footer-section .menu .menu-item a {
  text-decoration: none;
  color: white;
}
.footer-content .footer-section .menu .menu-item a:hover {
  text-decoration: underline;
}
.footer-content .footer-section-title {
  color: #f5a623;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.footer-content .footer-address-line,
.footer-content .footer-info-link,
.footer-content .footer-contact-label,
.footer-content .footer-contact-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-content .footer-info-link:hover,
.footer-content .footer-contact-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 5%;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1rem 15px;
  }
}
.footer-bottom .footer-copyright,
.footer-bottom .footer-refont {
  margin-bottom: 0.5rem;
}
.footer-bottom .footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}
.footer-bottom .footer-legal-link {
  color: #ffffff;
  text-decoration: none;
}
.footer-bottom .footer-legal-link:hover {
  text-decoration: underline;
}

.home .header {
  position: relative;
  overflow: hidden;
  height: 45rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.home .header__overlay {
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  background-color: rgba(0, 0, 0, 0.3411764706);
}
.home .header__overlay_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.home .header__overlay_container_texte {
  display: flex;
  justify-content: center;
  width: 100%;
}
.home .header__overlay_container_texte_img {
  width: 35rem;
  max-width: 100%;
  height: auto;
}
.home .header__overlay_container_button {
  background-color: #f59f16;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 0.75em 1.25em;
  border-radius: 10px;
  margin-top: 4.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.home .header__overlay_container_button:hover {
  background-color: #fcc874;
  transform: scale(1.03);
}
@media (max-width: 1200px) {
  .home .header {
    height: 40rem;
  }
  .home .header__overlay_container_texte_img {
    width: 30rem;
  }
}
@media (max-width: 992px) {
  .home .header {
    height: 35rem;
  }
  .home .header__overlay_container_texte_img {
    width: 25rem;
  }
  .home .header__overlay_container_button {
    margin-top: 3.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .home .header {
    height: 30rem;
  }
  .home .header__overlay {
    padding-top: 2rem;
  }
  .home .header__overlay_container {
    padding-top: 2rem;
  }
  .home .header__overlay_container_texte_img {
    width: 20rem;
  }
  .home .header__overlay_container_button {
    margin-top: 3rem;
    padding: 0.6em 1em;
  }
}
@media (max-width: 576px) {
  .home .header {
    height: 25rem;
  }
  .home .header__overlay {
    padding-top: 1.5rem;
  }
  .home .header__overlay_container {
    padding-top: 1.5rem;
  }
  .home .header__overlay_container_texte_img {
    width: 16rem;
  }
  .home .header__overlay_container_button {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    padding: 0.5em 0.8em;
  }
}
@media (max-width: 375px) {
  .home .header {
    height: 20rem;
  }
  .home .header__overlay {
    padding-top: 1rem;
  }
  .home .header__overlay_container {
    padding-top: 1rem;
  }
  .home .header__overlay_container_texte_img {
    width: 14rem;
  }
  .home .header__overlay_container_button {
    margin-top: 2rem;
    font-size: 0.85rem;
    padding: 0.4em 0.7em;
  }
}
.home .main {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.home .main__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 2.8rem;
  color: #2e2e2e;
  margin-bottom: 2.5rem;
  margin-top: 3.5rem;
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .home .main__title {
    font-size: 2.4rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .home .main__title {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 576px) {
  .home .main__title {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}
.home .main__text-green {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: #6ab55e;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .home .main__text-green {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .home .main__text-green {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .home .main__text-green {
    font-size: 1.1rem;
  }
}
.home .main__text-orange {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: #f59f16;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .home .main__text-orange {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 768px) {
  .home .main__text-orange {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .home .main__text-orange {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
}
.home .main__text-dark-green {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #306928;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .home .main__text-dark-green {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 768px) {
  .home .main__text-dark-green {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .home .main__text-dark-green {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
}
.home .main__button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  background-color: #6ab55e;
  color: white;
  padding: 0.75em 1.25em;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .home .main__button {
    font-size: 1rem;
    padding: 0.7em 1.1em;
  }
}
@media (max-width: 768px) {
  .home .main__button {
    font-size: 0.95rem;
    padding: 0.65em 1em;
  }
}
@media (max-width: 576px) {
  .home .main__button {
    font-size: 0.9rem;
    padding: 0.6em 0.9em;
  }
}
.home .main__button:hover {
  background-color: #92df86;
  transform: scale(1.03);
}
.home .main__box {
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  margin: 3rem auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 992px) {
  .home .main__box {
    padding: 2rem;
    margin: 2.5rem auto;
  }
}
@media (max-width: 768px) {
  .home .main__box {
    padding: 2rem;
    margin: 2.5rem auto;
    flex-direction: column;
    align-items: stretch;
  }
}
.home .main__box-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #5D819D;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .home .main__box-icon {
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.home .main__box-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .main__box-content {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .home .main__box-content {
    width: 100%;
  }
}
.home .main__box-comment {
  margin: 0;
  font-size: 1.2rem;
  color: #3A5A40;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 768px) {
  .home .main__box-comment {
    font-size: 1.1rem;
    text-align: left;
  }
}
.home .main__box-author {
  margin-top: 2rem;
  text-align: right;
  color: #666;
  font-size: 14px;
}
@media (max-width: 768px) {
  .home .main__box-author {
    text-align: right;
  }
}
.home .stats-container {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .home .stats-container {
    gap: 40px;
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .home .stats-container {
    gap: 30px;
    max-width: 700px;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .home .stats-container {
    gap: 25px;
    max-width: 500px;
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  .home .stats-container {
    gap: 20px;
    padding: 0 15px;
    justify-content: space-between;
  }
}
.home .stat-box {
  background-color: #f4a623;
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 230px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  margin: 2rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1200px) {
  .home .stat-box {
    width: 200px;
    height: 200px;
    margin: 1.5rem 0;
  }
}
@media (max-width: 992px) {
  .home .stat-box {
    width: calc(50% - 15px);
    height: 180px;
    padding: 15px;
    margin: 1.2rem 0;
  }
}
@media (max-width: 768px) {
  .home .stat-box {
    width: calc(50% - 12.5px);
    height: 160px;
    padding: 12px;
    margin: 1rem 0;
  }
}
@media (max-width: 576px) {
  .home .stat-box {
    width: calc(50% - 10px);
    height: 140px;
    padding: 10px;
    margin: 0.8rem 0;
  }
}
.home .stat-box__icon {
  width: 65px;
  height: auto;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}
@media (max-width: 1200px) {
  .home .stat-box__icon {
    width: 60px;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 992px) {
  .home .stat-box__icon {
    width: 55px;
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 768px) {
  .home .stat-box__icon {
    width: 50px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 576px) {
  .home .stat-box__icon {
    width: 45px;
    margin-bottom: 0.4rem;
  }
}
.home .stat-count {
  font-size: 40px;
  font-weight: bold;
  color: white;
  margin-bottom: 0.8rem;
  line-height: 1;
}
@media (max-width: 1200px) {
  .home .stat-count {
    font-size: 36px;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 992px) {
  .home .stat-count {
    font-size: 32px;
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 768px) {
  .home .stat-count {
    font-size: 28px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 576px) {
  .home .stat-count {
    font-size: 24px;
    margin-bottom: 0.4rem;
  }
}
.home .stat-text {
  font-size: 14px;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 1200px) {
  .home .stat-text {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .home .stat-text {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .home .stat-text {
    font-size: 11px;
  }
}
@media (max-width: 576px) {
  .home .stat-text {
    font-size: 10px;
  }
}
.home .news-grid {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1200px) {
  .home .news-grid {
    max-width: 1100px;
    margin: 3.5rem auto;
    gap: 1.8rem;
  }
}
@media (max-width: 992px) {
  .home .news-grid {
    max-width: 900px;
    margin: 3rem auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .home .news-grid {
    max-width: 700px;
    margin: 2.5rem auto;
    gap: 1.2rem;
    padding: 0.8rem;
  }
}
@media (max-width: 576px) {
  .home .news-grid {
    max-width: 100%;
    margin: 2rem auto;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.5rem;
  }
}
.home .news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
.home .news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.home .news-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .home .news-image {
    height: 260px;
  }
}
@media (max-width: 992px) {
  .home .news-image {
    height: 240px;
  }
}
@media (max-width: 768px) {
  .home .news-image {
    height: 220px;
  }
}
@media (max-width: 576px) {
  .home .news-image {
    height: 200px;
  }
}
.home .news-image__featured {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.home .news-image__featured:hover {
  transform: scale(1.05);
}
.home .news-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #fff, #f8f9fa);
}
@media (max-width: 992px) {
  .home .news-content {
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .home .news-content {
    padding: 1.2rem;
  }
}
.home .news-content__date {
  font-size: 0.9rem;
  color: #636e72;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .home .news-content__date {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }
}
.home .news-content__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3436;
  line-height: 1.3;
  transition: color 0.3s ease;
  margin: 0;
}
@media (max-width: 992px) {
  .home .news-content__title {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .home .news-content__title {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .home .news-content__title {
    font-size: 1.1rem;
  }
}
.home .news-content__title:hover {
  color: #0984e3;
}
.home .video {
  width: 100%;
  max-width: 400px;
  margin: 3rem auto;
  text-align: center;
}
@media (max-width: 576px) {
  .home .video {
    max-width: 300px;
    margin: 2rem auto;
  }
}
.home .video__title {
  margin-bottom: 1rem;
  text-align: center;
}
.home .video__video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-template-la-demarche-page .header {
  position: relative;
  overflow: hidden;
  height: 45rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-template-la-demarche-page .header__overlay {
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.page-template-la-demarche-page .header__overlay_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.page-template-la-demarche-page .header__overlay_container_texte {
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-template-la-demarche-page .header__overlay_container_texte_img {
  font-size: 7rem;
  color: #6ab55e;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .header {
    height: 40rem;
  }
  .page-template-la-demarche-page .header__overlay_container_texte_img {
    font-size: 6rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .header {
    height: 35rem;
  }
  .page-template-la-demarche-page .header__overlay_container_texte_img {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .header {
    height: 30rem;
  }
  .page-template-la-demarche-page .header__overlay {
    padding-top: 2rem;
  }
  .page-template-la-demarche-page .header__overlay_container {
    padding-top: 2rem;
  }
  .page-template-la-demarche-page .header__overlay_container_texte_img {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .header {
    height: 25rem;
  }
  .page-template-la-demarche-page .header__overlay {
    padding-top: 1.5rem;
  }
  .page-template-la-demarche-page .header__overlay_container {
    padding-top: 1.5rem;
  }
  .page-template-la-demarche-page .header__overlay_container_texte_img {
    font-size: 3rem;
  }
}
@media (max-width: 375px) {
  .page-template-la-demarche-page .header {
    height: 20rem;
  }
  .page-template-la-demarche-page .header__overlay {
    padding-top: 1rem;
  }
  .page-template-la-demarche-page .header__overlay_container {
    padding-top: 1rem;
  }
  .page-template-la-demarche-page .header__overlay_container_texte_img {
    font-size: 2.5rem;
  }
}
.page-template-la-demarche-page .main {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.page-template-la-demarche-page .main .demarche__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 2.8rem;
  color: #2e2e2e;
  margin-bottom: 2.5rem;
  margin-top: 3.5rem;
  text-align: center;
  width: 100%;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .main .demarche__title {
    font-size: 2.6rem;
    margin-bottom: 2.3rem;
    margin-top: 3.2rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .main .demarche__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .main .demarche__title {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .main .demarche__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
  }
}
.page-template-la-demarche-page .main .demarche__subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: #234a1c;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .main .demarche__subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .main .demarche__subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .main .demarche__subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
}
.page-template-la-demarche-page .main .demarche__intro {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  color: #7dbf73;
  padding-bottom: 3rem;
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .main .demarche__intro {
    font-size: 0.95rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .main .demarche__intro {
    font-size: 0.9rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .main .demarche__intro {
    font-size: 0.85rem;
    padding-bottom: 1.5rem;
  }
}
.page-template-la-demarche-page .demarche__objectives {
  display: flex;
  gap: 60px;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .demarche__objectives {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .demarche__objectives {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .demarche__objectives {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .demarche__objectives {
    gap: 10px;
  }
}
.page-template-la-demarche-page .objectives-box {
  background-color: #6ab55e;
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 230px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .objectives-box {
    width: 200px;
    height: 200px;
    padding: 15px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .objectives-box {
    width: 180px;
    height: 180px;
    padding: 12px;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .objectives-box {
    width: 160px;
    height: 160px;
    padding: 10px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.page-template-la-demarche-page .objectives-box__icon {
  width: 70px;
  height: auto;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .objectives-box__icon {
    width: 60px;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .objectives-box__icon {
    width: 50px;
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .objectives-box__icon {
    width: 40px;
    margin-bottom: 0.5rem;
  }
}
.page-template-la-demarche-page .objectives-box__text {
  font-size: 17px;
  color: white;
  font-weight: bold;
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .objectives-box__text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .objectives-box__text {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .objectives-box__text {
    font-size: 13px;
  }
}
.page-template-la-demarche-page .graphique {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 2rem;
}
.page-template-la-demarche-page .graphique__sustainability {
  font-size: 1.5em;
  color: #faa61e;
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: bold;
}
.page-template-la-demarche-page .graphique__quantity {
  font-size: 1.5em;
  color: #faa61e;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: bold;
}
.page-template-la-demarche-page .graphique__boite {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-template-la-demarche-page .graphique__boite {
    flex-direction: column;
  }
}
.page-template-la-demarche-page .graphique__image {
  flex: 1;
  order: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 4rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .graphique__image {
    gap: 3.5rem;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .graphique__image {
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .graphique__image {
    gap: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .graphique__image {
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.page-template-la-demarche-page .graphique__image_icon {
  display: block;
  width: 8rem;
  height: auto;
  object-fit: contain;
  margin: 0;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .graphique__image_icon {
    width: 7rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .graphique__image_icon {
    width: 6rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .graphique__image_icon {
    width: 5rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .graphique__image_icon {
    width: 4rem;
  }
}
.page-template-la-demarche-page .graphique__stat {
  flex: 1;
  order: 2;
  text-align: left;
}
.page-template-la-demarche-page .graphique__paragraphe {
  flex: 1;
  order: 2;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .page-template-la-demarche-page .graphique {
    padding: 0 1.5rem;
  }
  .page-template-la-demarche-page .graphique__sustainability, .page-template-la-demarche-page .graphique__quantity {
    font-size: 1.4em;
    margin-bottom: 1.5rem;
  }
  .page-template-la-demarche-page .graphique__boite {
    gap: 1.5rem;
  }
  .page-template-la-demarche-page .graphique__stat {
    font-size: 1.1em;
  }
  .page-template-la-demarche-page .graphique__paragraphe {
    font-size: 0.95em;
  }
}
@media screen and (max-width: 992px) {
  .page-template-la-demarche-page .graphique {
    padding: 0 1.2rem;
  }
  .page-template-la-demarche-page .graphique__sustainability, .page-template-la-demarche-page .graphique__quantity {
    font-size: 1.3em;
    margin-bottom: 1.2rem;
  }
  .page-template-la-demarche-page .graphique__boite {
    gap: 1.2rem;
  }
  .page-template-la-demarche-page .graphique__stat {
    font-size: 1em;
  }
  .page-template-la-demarche-page .graphique__paragraphe {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  .page-template-la-demarche-page .graphique {
    padding: 0 1rem;
  }
  .page-template-la-demarche-page .graphique__sustainability, .page-template-la-demarche-page .graphique__quantity {
    font-size: 1.2em;
    margin-bottom: 1rem;
  }
  .page-template-la-demarche-page .graphique__boite {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .page-template-la-demarche-page .graphique__stat {
    font-size: 0.95em;
  }
  .page-template-la-demarche-page .graphique__paragraphe {
    font-size: 0.85em;
  }
}
@media screen and (max-width: 576px) {
  .page-template-la-demarche-page .graphique {
    padding: 0 0.8rem;
  }
  .page-template-la-demarche-page .graphique__sustainability, .page-template-la-demarche-page .graphique__quantity {
    font-size: 1.1em;
    margin-bottom: 0.8rem;
  }
  .page-template-la-demarche-page .graphique__boite {
    gap: 0.8rem;
  }
  .page-template-la-demarche-page .graphique__stat {
    font-size: 0.9em;
  }
  .page-template-la-demarche-page .graphique__paragraphe {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 375px) {
  .page-template-la-demarche-page .graphique {
    padding: 0 0.6rem;
  }
  .page-template-la-demarche-page .graphique__sustainability, .page-template-la-demarche-page .graphique__quantity {
    font-size: 1em;
    margin-bottom: 0.6rem;
  }
  .page-template-la-demarche-page .graphique__boite {
    gap: 0.6rem;
  }
  .page-template-la-demarche-page .graphique__stat {
    font-size: 0.85em;
  }
  .page-template-la-demarche-page .graphique__paragraphe {
    font-size: 0.75em;
  }
}
.page-template-la-demarche-page .cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}
.page-template-la-demarche-page .cards__titre {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .cards__titre {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .cards__titre {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .cards__titre {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .cards__titre {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
}
.page-template-la-demarche-page .cards__boite-card {
  display: flex;
  gap: 5rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 50px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .cards__boite-card {
    gap: 4rem;
    margin-top: 40px;
    padding: 0 18px;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .cards__boite-card {
    gap: 3rem;
    margin-top: 35px;
    padding: 0 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .cards__boite-card {
    gap: 2rem;
    margin-top: 30px;
    padding: 0 12px;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .cards__boite-card {
    gap: 1.5rem;
    margin-top: 25px;
    padding: 0 10px;
  }
}
.page-template-la-demarche-page .cards__boite-card_inside {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .cards__boite-card_inside {
    padding: 35px;
    min-width: 260px;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .cards__boite-card_inside {
    padding: 30px;
    min-width: 240px;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .cards__boite-card_inside {
    padding: 25px;
    min-width: 220px;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .cards__boite-card_inside {
    padding: 20px;
    min-width: 200px;
  }
}
.page-template-la-demarche-page .cards__boite-card_inside__title {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5px;
  font-weight: bold;
  font-size: clamp(1rem, 0.6818rem + 1.3576vw, 1.7rem);
  color: #3a5a40;
}
.page-template-la-demarche-page .cards__boite-card_inside__text {
  color: #333;
  font-size: 1em;
  line-height: 1.6;
  margin-top: 20px;
  font-family: "Arial", sans-serif;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .cards__boite-card_inside__text {
    font-size: 0.95em;
    margin-top: 18px;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .cards__boite-card_inside__text {
    font-size: 0.9em;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .cards__boite-card_inside__text {
    font-size: 0.85em;
    margin-top: 14px;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .cards__boite-card_inside__text {
    font-size: 0.8em;
    margin-top: 12px;
  }
}
.page-template-la-demarche-page .cards__boite-card_inside__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .cards__boite-card_inside__icons {
    gap: 1.8rem;
    margin-top: 18px;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .cards__boite-card_inside__icons {
    gap: 1.5rem;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .cards__boite-card_inside__icons {
    gap: 1.2rem;
    margin-top: 14px;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .cards__boite-card_inside__icons {
    gap: 1rem;
    margin-top: 12px;
  }
}
.page-template-la-demarche-page .cards__boite-card_inside__icon {
  display: block;
  max-width: 50px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .cards__boite-card_inside__icon {
    max-width: 45px;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .cards__boite-card_inside__icon {
    max-width: 40px;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .cards__boite-card_inside__icon {
    max-width: 35px;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .cards__boite-card_inside__icon {
    max-width: 30px;
  }
}
.page-template-la-demarche-page .implantation {
  padding: 40px 0;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .implantation {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .implantation {
    padding: 25px 0;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .implantation {
    padding: 20px 0;
  }
}
.page-template-la-demarche-page .implantation h2 {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .implantation h2 {
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .implantation h2 {
    margin-bottom: 1.6rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .implantation h2 {
    margin-bottom: 1.4rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .implantation h2 {
    margin-bottom: 1.2rem;
  }
}
.page-template-la-demarche-page .implantation__content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 0 15px;
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .implantation__content {
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .implantation__content {
    gap: 15px;
    margin-top: 1.8rem;
    padding: 0 5px;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .implantation__content {
    gap: 10px;
    margin-top: 1.5rem;
    padding: 0 5px;
  }
}
.page-template-la-demarche-page .implantation__content_text, .page-template-la-demarche-page .implantation__content_map {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
}
@media (min-width: 993px) {
  .page-template-la-demarche-page .implantation__content_text, .page-template-la-demarche-page .implantation__content_map {
    width: calc(50% - 20px);
    max-width: 580px;
  }
}
@media (min-width: 1201px) {
  .page-template-la-demarche-page .implantation__content_text, .page-template-la-demarche-page .implantation__content_map {
    width: calc(50% - 20px);
  }
}
.page-template-la-demarche-page .implantation__content_text {
  text-align: left;
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .implantation__content_text {
    text-align: center;
  }
}
.page-template-la-demarche-page .implantation__content_text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .implantation__content_text p {
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .implantation__content_text p {
    font-size: 0.9rem;
    margin-bottom: 1.3rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .implantation__content_text p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .implantation__content_text p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
}
.page-template-la-demarche-page .implantation__content_text h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #3a5a40;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .implantation__content_text h3 {
    font-size: 1.2rem;
    margin-top: 1.4rem;
    margin-bottom: 0.9rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .implantation__content_text h3 {
    font-size: 1.15rem;
    margin-top: 1.3rem;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .implantation__content_text h3 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .implantation__content_text h3 {
    font-size: 1.05rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
  }
}
.page-template-la-demarche-page .implantation__content_text ul {
  font-size: 1rem;
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 1.5rem;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .implantation__content_text ul {
    font-size: 0.95rem;
    padding-left: 18px;
    margin-bottom: 1.4rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .implantation__content_text ul {
    font-size: 0.9rem;
    padding-left: 16px;
    margin-bottom: 1.3rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .implantation__content_text ul {
    font-size: 0.85rem;
    padding-left: 14px;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .implantation__content_text ul {
    font-size: 0.8rem;
    padding-left: 12px;
    margin-bottom: 1rem;
  }
}
.page-template-la-demarche-page .implantation__content_text ul li {
  margin-bottom: 0.5rem;
  color: black;
}
.page-template-la-demarche-page .implantation__content_map iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .implantation__content_map iframe {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .implantation__content_map iframe {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .implantation__content_map iframe {
    height: 250px;
  }
}
.page-template-la-demarche-page .implantation__btn-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .implantation__btn-container {
    margin-top: 2.5rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .implantation__btn-container {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .implantation__btn-container {
    margin-top: 1.8rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .implantation__btn-container {
    margin-top: 1.5rem;
  }
}
.page-template-la-demarche-page .implantation__btn-container .btn {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  background-color: #6ab55e;
  color: white;
  padding: 0.75em 1.25em;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
@media (max-width: 1200px) {
  .page-template-la-demarche-page .implantation__btn-container .btn {
    font-size: 1.05rem;
    padding: 0.7em 1.2em;
  }
}
@media (max-width: 992px) {
  .page-template-la-demarche-page .implantation__btn-container .btn {
    font-size: 1rem;
    padding: 0.65em 1.15em;
  }
}
@media (max-width: 768px) {
  .page-template-la-demarche-page .implantation__btn-container .btn {
    font-size: 0.95rem;
    padding: 0.6em 1.1em;
  }
}
@media (max-width: 576px) {
  .page-template-la-demarche-page .implantation__btn-container .btn {
    font-size: 0.9rem;
    padding: 0.55em 1em;
  }
}
.page-template-la-demarche-page .implantation__btn-container .btn:hover {
  background-color: #92df86;
  transform: scale(1.03);
}

.page-template-vos-interlocuteurs-page .header {
  position: relative;
  overflow: hidden;
  height: 45rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-template-vos-interlocuteurs-page .header__overlay {
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.page-template-vos-interlocuteurs-page .header__overlay_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.page-template-vos-interlocuteurs-page .header__overlay_container_texte {
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-template-vos-interlocuteurs-page .header__overlay_container_texte_img {
  font-size: 7rem;
  color: #f59e1b;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .page-template-vos-interlocuteurs-page .header {
    height: 40rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay_container_texte_img {
    font-size: 6rem;
  }
}
@media (max-width: 992px) {
  .page-template-vos-interlocuteurs-page .header {
    height: 35rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay_container_texte_img {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .page-template-vos-interlocuteurs-page .header {
    height: 30rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay {
    padding-top: 2rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay_container {
    padding-top: 2rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay_container_texte_img {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .page-template-vos-interlocuteurs-page .header {
    height: 25rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay {
    padding-top: 1.5rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay_container {
    padding-top: 1.5rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay_container_texte_img {
    font-size: 3rem;
  }
}
@media (max-width: 375px) {
  .page-template-vos-interlocuteurs-page .header {
    height: 20rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay {
    padding-top: 1rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay_container {
    padding-top: 1rem;
  }
  .page-template-vos-interlocuteurs-page .header__overlay_container_texte_img {
    font-size: 2.5rem;
  }
}
.page-template-vos-interlocuteurs-page h1.title {
  font-weight: bold;
  font-size: 2.8rem;
  color: #2e2e2e;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
}
.page-template-vos-interlocuteurs-page h1.title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #156657;
}
@media (max-width: 992px) {
  .page-template-vos-interlocuteurs-page h1.title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .page-template-vos-interlocuteurs-page h1.title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.page-template-vos-interlocuteurs-page .partners-carousel {
  overflow: hidden;
  background-color: #fff;
  position: relative;
  padding: 4rem 0;
}
@media (max-width: 1200px) {
  .page-template-vos-interlocuteurs-page .partners-carousel {
    padding: 5rem 0;
  }
}
@media (max-width: 992px) {
  .page-template-vos-interlocuteurs-page .partners-carousel {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .page-template-vos-interlocuteurs-page .partners-carousel {
    padding: 3rem 0;
  }
}
@media (max-width: 576px) {
  .page-template-vos-interlocuteurs-page .partners-carousel {
    padding: 2rem 0;
  }
}
@media (max-width: 400px) {
  .page-template-vos-interlocuteurs-page .partners-carousel {
    padding: 1.5rem 0;
  }
}
.page-template-vos-interlocuteurs-page .partners-carousel .carousel-track {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 8rem);
  min-width: 200%;
  animation: bounce-scroll 50s linear infinite;
  position: relative;
}
.page-template-vos-interlocuteurs-page .partners-carousel .carousel-track::before, .page-template-vos-interlocuteurs-page .partners-carousel .carousel-track::after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.page-template-vos-interlocuteurs-page .partners-carousel .carousel-track::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.page-template-vos-interlocuteurs-page .partners-carousel .carousel-track::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.page-template-vos-interlocuteurs-page .partners-carousel .carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: clamp(130px, 20vw, 250px);
  height: clamp(130px, 20vw, 250px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s;
}
.page-template-vos-interlocuteurs-page .partners-carousel .carousel-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}
.page-template-vos-interlocuteurs-page .partners-carousel .no-underline {
  text-decoration: none;
}
.page-template-vos-interlocuteurs-page .partners-carousel img {
  width: clamp(80px, 14vw, 180px);
  height: clamp(80px, 14vw, 180px);
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.page-template-vos-interlocuteurs-page .partners-carousel img:hover {
  transform: scale(1.15);
}
.page-template-vos-interlocuteurs-page .partners-carousel .partner-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
  text-decoration: none;
  margin: 0;
  padding: 0.3rem 0.6rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}
@keyframes bounce-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.page-template-vos-interlocuteurs-page .section {
  padding: 0 0 2rem 0;
}
.page-template-vos-interlocuteurs-page .section .title {
  margin-bottom: 4rem;
  text-align: center;
  color: #2e2e2e;
  position: relative;
  padding-bottom: 1.5rem;
}
.page-template-vos-interlocuteurs-page .section .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #f5a422;
}
.page-template-vos-interlocuteurs-page .section .content {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1200px;
}
.page-template-vos-interlocuteurs-page .section .text {
  color: #333;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.page-template-vos-interlocuteurs-page .section .intro {
  color: #156657;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}
.page-template-vos-interlocuteurs-page .section .quote {
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  margin: 3rem auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
}
.page-template-vos-interlocuteurs-page .section .quote .quote-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #5D819D;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.page-template-vos-interlocuteurs-page .section .quote .quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-vos-interlocuteurs-page .section .quote .quote-content {
  flex-grow: 1;
}
.page-template-vos-interlocuteurs-page .section .quote .quote-text {
  margin: 0;
  font-size: 1.2rem;
  color: #3A5A40;
  line-height: 1.6;
  font-weight: bold;
}
.page-template-vos-interlocuteurs-page .section .quote .author {
  margin-top: 2rem;
  text-align: right;
  color: #666;
  font-size: 14px;
  font-style: italic;
}
@media (max-width: 992px) {
  .page-template-vos-interlocuteurs-page .section {
    padding: 0 0 5rem 0;
  }
  .page-template-vos-interlocuteurs-page .section .content {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .page-template-vos-interlocuteurs-page .section {
    padding: 0 0 4rem 0;
  }
  .page-template-vos-interlocuteurs-page .section .content {
    padding: 0 1rem;
  }
  .page-template-vos-interlocuteurs-page .section .intro {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .page-template-vos-interlocuteurs-page .section .text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .page-template-vos-interlocuteurs-page .section .quote {
    padding: 2rem;
    margin: 2.5rem auto;
    flex-direction: column;
    align-items: stretch;
  }
  .page-template-vos-interlocuteurs-page .section .quote .quote-avatar {
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
  .page-template-vos-interlocuteurs-page .section .quote .quote-content {
    width: 100%;
  }
  .page-template-vos-interlocuteurs-page .section .quote .quote-text {
    font-size: 1.1rem;
    text-align: left;
  }
  .page-template-vos-interlocuteurs-page .section .quote .author {
    text-align: right;
  }
}
.page-template-vos-interlocuteurs-page .section-heading {
  text-align: center;
  font-size: 2em;
  color: #3a5a40;
  margin: 40px 0 30px 0;
  font-weight: bold;
  position: relative;
  padding-bottom: 1.5rem;
}
.page-template-vos-interlocuteurs-page .section-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #f5a422;
}
.page-template-vos-interlocuteurs-page .public-structures {
  padding: 4rem 0;
}
.page-template-vos-interlocuteurs-page .public-structures .section-heading {
  text-align: center;
  margin: 0 0 3rem 0;
}
.page-template-vos-interlocuteurs-page .public-structures .structures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-template-vos-interlocuteurs-page .public-structures .structure-item {
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-template-vos-interlocuteurs-page .public-structures .structure-item:hover {
  transform: translateY(-5px);
}
.page-template-vos-interlocuteurs-page .public-structures .structure-link {
  display: block;
  text-decoration: none;
  height: 100%;
  color: inherit;
}
.page-template-vos-interlocuteurs-page .public-structures .structure-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.3s ease;
}
.page-template-vos-interlocuteurs-page .public-structures .structure-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.page-template-vos-interlocuteurs-page .public-structures .structure-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem;
  height: 100%;
}
.page-template-vos-interlocuteurs-page .public-structures .structure-content .text-content {
  text-align: center;
}
.page-template-vos-interlocuteurs-page .public-structures .structure-content .text-content .structure-name {
  font-size: 1.6rem;
  color: #1e1e1e;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.page-template-vos-interlocuteurs-page .public-structures .structure-content .text-content .structure-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #f5a422;
}
.page-template-vos-interlocuteurs-page .public-structures .structure-content .text-content .structure-description {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
}
.page-template-vos-interlocuteurs-page .public-structures .structure-content .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.page-template-vos-interlocuteurs-page .public-structures .structure-content .logo-container img {
  max-width: 160px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .page-template-vos-interlocuteurs-page .public-structures .public-structures {
    padding: 3rem 0;
  }
  .page-template-vos-interlocuteurs-page .public-structures .public-structures .structure-content {
    padding: 2rem;
  }
  .page-template-vos-interlocuteurs-page .public-structures .public-structures .structure-content .text-content .structure-name {
    font-size: 1.4rem;
  }
  .page-template-vos-interlocuteurs-page .public-structures .public-structures .structure-content .text-content .structure-description {
    font-size: 1rem;
  }
}
.page-template-vos-interlocuteurs-page .entreprise-card {
  padding: 2rem 0;
  background-color: #ffffff;
}
.page-template-vos-interlocuteurs-page .entreprise-card .section-heading {
  margin: 40px 0 30px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease forwards;
}
@media (max-width: 992px) {
  .page-template-vos-interlocuteurs-page .entreprise-card .section-heading {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .page-template-vos-interlocuteurs-page .entreprise-card .section-heading {
    margin-bottom: 2.5rem;
  }
}
.page-template-vos-interlocuteurs-page .entreprise-card .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-template-vos-interlocuteurs-page .entreprise-card .team-member {
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.5s ease forwards;
}
.page-template-vos-interlocuteurs-page .entreprise-card .team-member:nth-child(1) {
  animation-delay: 0.2s;
}
.page-template-vos-interlocuteurs-page .entreprise-card .team-member:nth-child(2) {
  animation-delay: 0.4s;
}
.page-template-vos-interlocuteurs-page .entreprise-card .team-member:nth-child(3) {
  animation-delay: 0.6s;
}
.page-template-vos-interlocuteurs-page .entreprise-card .member-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
.page-template-vos-interlocuteurs-page .entreprise-card .member-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.page-template-vos-interlocuteurs-page .entreprise-card .member-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-vos-interlocuteurs-page .entreprise-card .member-content {
  text-align: center;
  width: 100%;
}
.page-template-vos-interlocuteurs-page .entreprise-card .member-name {
  font-size: 1.5rem;
  color: #2e2e2e;
  margin-bottom: 1rem;
  font-weight: 600;
}
.page-template-vos-interlocuteurs-page .entreprise-card .member-role {
  font-size: 1.1rem;
  color: #156657;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.page-template-vos-interlocuteurs-page .entreprise-card .member-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .page-template-vos-interlocuteurs-page .entreprise-card {
    padding: 5rem 0;
  }
  .page-template-vos-interlocuteurs-page .entreprise-card .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .page-template-vos-interlocuteurs-page .entreprise-card .member-icon {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 768px) {
  .page-template-vos-interlocuteurs-page .entreprise-card {
    padding: 4rem 0;
  }
  .page-template-vos-interlocuteurs-page .entreprise-card .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  .page-template-vos-interlocuteurs-page .entreprise-card .member-card {
    padding: 1.5rem;
  }
  .page-template-vos-interlocuteurs-page .entreprise-card .member-icon {
    width: 80px;
    height: 80px;
  }
  .page-template-vos-interlocuteurs-page .entreprise-card .member-name {
    font-size: 1.3rem;
  }
  .page-template-vos-interlocuteurs-page .entreprise-card .member-role {
    font-size: 1rem;
  }
  .page-template-vos-interlocuteurs-page .entreprise-card .member-description {
    font-size: 0.9rem;
  }
}
.page-template-vos-interlocuteurs-page .team-member-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-vos-interlocuteurs-page .team-member-description {
  display: flex;
  align-items: center;
  padding: 1.2rem 3rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  position: relative;
  border-left: 3px solid #156657;
}
.page-template-vos-interlocuteurs-page .team-member-description-text {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .page-template-vos-interlocuteurs-page .team-member-description-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

.page-template-la-methanisation-page .header {
  position: relative;
  overflow: hidden;
  height: 45rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-template-la-methanisation-page .header__overlay {
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.page-template-la-methanisation-page .header__overlay_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.page-template-la-methanisation-page .header__overlay_container_texte {
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-template-la-methanisation-page .header__overlay_container_texte_img {
  font-size: 7rem;
  color: #f59e1b;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .page-template-la-methanisation-page .header {
    height: 40rem;
  }
  .page-template-la-methanisation-page .header__overlay_container_texte_img {
    font-size: 6rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .header {
    height: 35rem;
  }
  .page-template-la-methanisation-page .header__overlay_container_texte_img {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .header {
    height: 30rem;
  }
  .page-template-la-methanisation-page .header__overlay {
    padding-top: 2rem;
  }
  .page-template-la-methanisation-page .header__overlay_container {
    padding-top: 2rem;
  }
  .page-template-la-methanisation-page .header__overlay_container_texte_img {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .header {
    height: 25rem;
  }
  .page-template-la-methanisation-page .header__overlay {
    padding-top: 1.5rem;
  }
  .page-template-la-methanisation-page .header__overlay_container {
    padding-top: 1.5rem;
  }
  .page-template-la-methanisation-page .header__overlay_container_texte_img {
    font-size: 3rem;
  }
}
@media (max-width: 375px) {
  .page-template-la-methanisation-page .header {
    height: 20rem;
  }
  .page-template-la-methanisation-page .header__overlay {
    padding-top: 1rem;
  }
  .page-template-la-methanisation-page .header__overlay_container {
    padding-top: 1rem;
  }
  .page-template-la-methanisation-page .header__overlay_container_texte_img {
    font-size: 2.5rem;
  }
}
.page-template-la-methanisation-page .metha {
  text-align: center;
}
.page-template-la-methanisation-page .metha__title {
  font-weight: bold;
  font-size: 2.8rem;
  color: #2e2e2e;
  margin-bottom: 2.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 1200px) {
  .page-template-la-methanisation-page .metha__title {
    font-size: 2.5rem;
    margin-bottom: 2.2rem;
    margin-top: 3rem;
  }
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .metha__title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    margin-top: 2.8rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .metha__title {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .metha__title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
  }
}
@media (max-width: 375px) {
  .page-template-la-methanisation-page .metha__title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    margin-top: 1.8rem;
  }
}
.page-template-la-methanisation-page .metha__paragraphe {
  color: #156657;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 2rem;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .metha__paragraphe {
    font-size: 1.1rem;
    max-width: 90%;
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .metha__paragraphe {
    font-size: 1.1rem;
    max-width: 95%;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .metha__paragraphe {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
}
.page-template-la-methanisation-page .metha__schema {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 2rem;
  align-items: center;
  display: flex;
  justify-content: center;
}
.page-template-la-methanisation-page .metha__schema-img {
  width: 1100px;
  height: auto;
  display: block;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .metha__schema {
    max-width: 90%;
    margin-top: 1.8rem;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .metha__schema {
    max-width: 95%;
    margin-top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .metha__schema {
    margin-top: 1.2rem;
  }
}
.page-template-la-methanisation-page .enjeux {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-template-la-methanisation-page .enjeux__boite-card {
  display: flex;
  gap: 5rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 50px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .enjeux__boite-card {
    gap: 3rem;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .enjeux__boite-card {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
}
.page-template-la-methanisation-page .enjeux__boite-card_inside {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .enjeux__boite-card_inside {
    width: 100%;
    max-width: 500px;
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .enjeux__boite-card_inside {
    padding: 20px;
  }
}
.page-template-la-methanisation-page .enjeux__boite-card_inside__title {
  color: #1f735f;
  font-size: 1.4em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .enjeux__boite-card_inside__title {
    font-size: 1.2em;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .enjeux__boite-card_inside__title {
    font-size: 1.1em;
  }
}
.page-template-la-methanisation-page .enjeux__boite-card_inside__text {
  color: #333;
  font-size: 1em;
  line-height: 1.6;
  margin-top: 20px;
  font-family: "Arial", sans-serif;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .enjeux__boite-card_inside__text {
    font-size: 0.95em;
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .enjeux__boite-card_inside__text {
    font-size: 0.9em;
    margin-top: 10px;
  }
}
.page-template-la-methanisation-page .enjeux__boite-card_inside__icon {
  display: block;
  margin: 20px auto 0;
  max-width: 50px;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .enjeux__boite-card_inside__icon {
    max-width: 40px;
    margin: 15px auto 0;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .enjeux__boite-card_inside__icon {
    max-width: 35px;
    margin: 10px auto 0;
  }
}
.page-template-la-methanisation-page .enjeux__boite-card2 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  align-items: stretch;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .enjeux__boite-card2 {
    gap: 1.5rem;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .enjeux__boite-card2 {
    gap: 1rem;
    padding: 0 10px;
  }
}
.page-template-la-methanisation-page .enjeux__boite-card2_inside {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside {
    min-width: 250px;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside {
    min-width: 220px;
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside {
    min-width: 100%;
    padding: 20px;
  }
}
.page-template-la-methanisation-page .enjeux__boite-card2_inside__title {
  color: #1f735f;
  font-size: 1.4em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5px;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside__title {
    font-size: 1.2em;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside__title {
    font-size: 1.1em;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside__title {
    font-size: 1em;
  }
}
.page-template-la-methanisation-page .enjeux__boite-card2_inside__text {
  color: #333;
  font-size: 1em;
  line-height: 1.6;
  margin-top: 20px;
  font-family: "Arial", sans-serif;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside__text {
    font-size: 0.95em;
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside__text {
    font-size: 0.9em;
    margin-top: 12px;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside__text {
    font-size: 0.85em;
    margin-top: 10px;
  }
}
.page-template-la-methanisation-page .enjeux__boite-card2_inside__icon {
  display: block;
  margin: 20px auto 0;
  max-width: 50px;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside__icon {
    max-width: 45px;
    margin: 15px auto 0;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside__icon {
    max-width: 40px;
    margin: 12px auto 0;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .enjeux__boite-card2_inside__icon {
    max-width: 35px;
    margin: 10px auto 0;
  }
}
.page-template-la-methanisation-page .new-section {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .new-section {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .new-section {
    padding: 0 10px;
  }
}
@media (max-width: 576px) {
  .page-template-la-methanisation-page .new-section {
    padding: 0 5px;
  }
}
.page-template-la-methanisation-page .quote-block {
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  margin: 3rem auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .quote-block {
    padding: 2rem;
    margin: 2.5rem auto;
  }
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .quote-block {
    padding: 2rem;
    margin: 2.5rem auto;
    flex-direction: column;
    align-items: stretch;
  }
}
.page-template-la-methanisation-page .quote-block__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #5D819D;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .quote-block__icon {
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-template-la-methanisation-page .quote-block__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-la-methanisation-page .quote-block__content {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .quote-block__content {
    width: 100%;
  }
}
.page-template-la-methanisation-page .quote-block__text {
  margin: 0;
  font-size: 1.2rem;
  color: #3A5A40;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .quote-block__text {
    font-size: 1.1rem;
    text-align: left;
  }
}
.page-template-la-methanisation-page .quote-block__attribution {
  margin-top: 2rem;
  text-align: right;
  color: #666;
  font-size: 14px;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .quote-block__attribution {
    text-align: right;
  }
}
.page-template-la-methanisation-page .section-title {
  text-align: center;
  font-size: 2em;
  color: #306928;
  margin: 40px 0 30px 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .section-title {
    font-size: 1.7em;
    margin: 30px 0 20px 0;
  }
}
.page-template-la-methanisation-page .organic-sources {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}
@media (max-width: 992px) {
  .page-template-la-methanisation-page .organic-sources {
    flex-direction: column;
    gap: 30px;
  }
}
.page-template-la-methanisation-page .organic-sources__illustration {
  flex: 1;
  text-align: center;
}
.page-template-la-methanisation-page .organic-sources__illustration-img {
  max-width: 100%;
  height: auto;
}
.page-template-la-methanisation-page .organic-sources__text {
  flex: 1;
}
.page-template-la-methanisation-page .organic-sources__text__paragraph {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
}
.page-template-la-methanisation-page .organic-sources__text__list {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
  padding-left: 20px;
  list-style-type: disc;
}
.page-template-la-methanisation-page .organic-sources__text__list-item {
  margin-bottom: 5px;
  color: #3a5a40;
}
.page-template-la-methanisation-page .organic-sources__text__small-text {
  font-size: 0.8em;
  color: #666;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .organic-sources {
    margin: 30px 0;
  }
  .page-template-la-methanisation-page .organic-sources__text__paragraph, .page-template-la-methanisation-page .organic-sources__text__list, .page-template-la-methanisation-page .organic-sources__text__small-text {
    font-size: 0.9em;
  }
}
.page-template-la-methanisation-page .section-subtitle {
  text-align: center;
  font-size: 1.8em;
  color: #306928;
  font-weight: bold;
  margin: 50px 0 20px 0;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .section-subtitle {
    font-size: 1.5em;
    margin: 40px 0 15px 0;
  }
}
.page-template-la-methanisation-page .section-description {
  text-align: center;
  font-size: 1em;
  color: #333;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .section-description {
    font-size: 0.9em;
    margin-bottom: 20px;
  }
}
.page-template-la-methanisation-page .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
  width: 100%;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }
}
.page-template-la-methanisation-page .benefits-grid__card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(48, 105, 40, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(48, 105, 40, 0.1);
}
.page-template-la-methanisation-page .benefits-grid__card__title {
  font-size: 1.2em;
  color: #306928;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .page-template-la-methanisation-page .benefits-grid__card__title {
    font-size: 1.1em;
  }
}
.page-template-la-methanisation-page .benefits-grid__card_icon {
  max-width: 60px;
  height: auto;
  margin-bottom: 15px;
}

.page-template-faq-page .header {
  position: relative;
  overflow: hidden;
  height: 45rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-template-faq-page .header__overlay {
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.page-template-faq-page .header__overlay_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.page-template-faq-page .header__overlay_container_texte {
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-template-faq-page .header__overlay_container_texte_img {
  font-size: 7rem;
  color: #6ab55e;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .page-template-faq-page .header {
    height: 40rem;
  }
  .page-template-faq-page .header__overlay_container_texte_img {
    font-size: 6rem;
  }
}
@media (max-width: 992px) {
  .page-template-faq-page .header {
    height: 35rem;
  }
  .page-template-faq-page .header__overlay_container_texte_img {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .page-template-faq-page .header {
    height: 30rem;
  }
  .page-template-faq-page .header__overlay {
    padding-top: 2rem;
  }
  .page-template-faq-page .header__overlay_container {
    padding-top: 2rem;
  }
  .page-template-faq-page .header__overlay_container_texte_img {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .page-template-faq-page .header {
    height: 25rem;
  }
  .page-template-faq-page .header__overlay {
    padding-top: 1.5rem;
  }
  .page-template-faq-page .header__overlay_container {
    padding-top: 1.5rem;
  }
  .page-template-faq-page .header__overlay_container_texte_img {
    font-size: 3rem;
  }
}
@media (max-width: 375px) {
  .page-template-faq-page .header {
    height: 20rem;
  }
  .page-template-faq-page .header__overlay {
    padding-top: 1rem;
  }
  .page-template-faq-page .header__overlay_container {
    padding-top: 1rem;
  }
  .page-template-faq-page .header__overlay_container_texte_img {
    font-size: 2.5rem;
  }
}
.page-template-faq-page .block {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  font-size: 1rem;
  margin-top: 2rem;
}
.page-template-faq-page .message {
  background: #6ab55e;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  max-width: 500px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .page-template-faq-page .message {
    padding: 30px;
    width: 95%;
  }
}
@media (max-width: 576px) {
  .page-template-faq-page .message {
    padding: 20px;
    width: 100%;
  }
}
.page-template-faq-page .message h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #306928;
}
@media (max-width: 768px) {
  .page-template-faq-page .message h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .page-template-faq-page .message h1 {
    font-size: 2rem;
  }
}
.page-template-faq-page .message p {
  font-size: 1.2rem;
  margin: 10px 0;
  line-height: 1.5;
  color: #fff;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .page-template-faq-page .message p {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  .page-template-faq-page .message p {
    font-size: 1rem;
  }
}
.page-template-faq-page .message a {
  display: block;
  margin-top: 20px;
}
.page-template-faq-page .message a img {
  max-width: 120px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}
@media (max-width: 576px) {
  .page-template-faq-page .message a img {
    max-width: 100px;
  }
}
.page-template-faq-page .message a img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.page-template-faq-page .faq-container {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-template-faq-page h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #007BFF;
}
.page-template-faq-page .faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  cursor: pointer;
}
.page-template-faq-page .faq-question {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-template-faq-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #555;
  margin-top: 10px;
}
.page-template-faq-page .faq-item.active .faq-answer {
  max-height: 500px;
}
.page-template-faq-page .faq-item.active .arrow {
  transform: rotate(180deg);
}
.page-template-faq-page .arrow {
  transition: transform 0.3s ease;
}

.page-template-contact-page .header {
  position: relative;
  overflow: hidden;
  height: 45rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-template-contact-page .header__overlay {
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.page-template-contact-page .header__overlay_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.page-template-contact-page .header__overlay_container_texte {
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-template-contact-page .header__overlay_container_texte_img {
  font-size: 7rem;
  color: #6ab55e;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .page-template-contact-page .header {
    height: 40rem;
  }
  .page-template-contact-page .header__overlay_container_texte_img {
    font-size: 6rem;
  }
}
@media (max-width: 992px) {
  .page-template-contact-page .header {
    height: 35rem;
  }
  .page-template-contact-page .header__overlay_container_texte_img {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .page-template-contact-page .header {
    height: 30rem;
  }
  .page-template-contact-page .header__overlay {
    padding-top: 2rem;
  }
  .page-template-contact-page .header__overlay_container {
    padding-top: 2rem;
  }
  .page-template-contact-page .header__overlay_container_texte_img {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .page-template-contact-page .header {
    height: 25rem;
  }
  .page-template-contact-page .header__overlay {
    padding-top: 1.5rem;
  }
  .page-template-contact-page .header__overlay_container {
    padding-top: 1.5rem;
  }
  .page-template-contact-page .header__overlay_container_texte_img {
    font-size: 3rem;
  }
}
@media (max-width: 375px) {
  .page-template-contact-page .header {
    height: 20rem;
  }
  .page-template-contact-page .header__overlay {
    padding-top: 1rem;
  }
  .page-template-contact-page .header__overlay_container {
    padding-top: 1rem;
  }
  .page-template-contact-page .header__overlay_container_texte_img {
    font-size: 2.5rem;
  }
}
.page-template-contact-page .contact-section {
  text-align: center;
}
.page-template-contact-page .contact-section .intro {
  color: #146C43;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: bold;
}
.page-template-contact-page .contact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
  padding-bottom: 5rem;
}
.page-template-contact-page .card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 280px;
  padding: 20px;
  text-align: center;
}
.page-template-contact-page .card .icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #f90;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
.page-template-contact-page .card h3 {
  color: #06845C;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
.page-template-contact-page .card .email,
.page-template-contact-page .card .address {
  color: #f90;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
}
.page-template-contact-page .form-confirmation-message {
  max-width: 500px;
  margin: 20px auto;
  font-size: 1rem;
  color: #146C43;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .page-template-contact-page .form-confirmation-message {
    font-size: 0.9rem;
  }
}
.page-template-contact-page .form-legal-notice {
  max-width: 500px;
  margin: 10px auto;
  font-size: 12px;
  color: #777;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .page-template-contact-page .form-legal-notice {
    font-size: 11px;
    padding: 0 10px;
  }
}
.page-template-contact-page .title_form {
  text-align: center;
  margin-bottom: 3rem;
}
.page-template-contact-page .bloc_form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  margin: 2rem auto;
  max-width: 1400px;
}
.page-template-contact-page .bloc_form .frm_form {
  flex: 1 0 60%;
  max-width: 1100px;
}
.page-template-contact-page .bloc_form .logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.page-template-contact-page .bloc_form .logo-container .img_logo, .page-template-contact-page .bloc_form .logo-container .img_logo2 {
  max-width: 200px;
  height: auto;
}
.page-template-contact-page .bloc_form .logo-container .img_logo2 {
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-template-contact-page .bloc_form {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .page-template-contact-page .bloc_form .frm_form {
    width: 100%;
    max-width: none;
    margin-bottom: 2rem;
  }
  .page-template-contact-page .bloc_form .logo-container {
    gap: 1.5rem;
  }
  .page-template-contact-page .bloc_form .logo-container .img_logo, .page-template-contact-page .bloc_form .logo-container .img_logo2 {
    max-width: 150px;
  }
}

.page-template-actualits-page .header {
  position: relative;
  overflow: hidden;
  height: 45rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-template-actualits-page .header__overlay {
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.page-template-actualits-page .header__overlay_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.page-template-actualits-page .header__overlay_container_texte {
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-template-actualits-page .header__overlay_container_texte_img {
  font-size: 7rem;
  color: #6ab55e;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .page-template-actualits-page .header {
    height: 40rem;
  }
  .page-template-actualits-page .header__overlay_container_texte_img {
    font-size: 6rem;
  }
}
@media (max-width: 992px) {
  .page-template-actualits-page .header {
    height: 35rem;
  }
  .page-template-actualits-page .header__overlay_container_texte_img {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .page-template-actualits-page .header {
    height: 30rem;
  }
  .page-template-actualits-page .header__overlay {
    padding-top: 2rem;
  }
  .page-template-actualits-page .header__overlay_container {
    padding-top: 2rem;
  }
  .page-template-actualits-page .header__overlay_container_texte_img {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .page-template-actualits-page .header {
    height: 25rem;
  }
  .page-template-actualits-page .header__overlay {
    padding-top: 1.5rem;
  }
  .page-template-actualits-page .header__overlay_container {
    padding-top: 1.5rem;
  }
  .page-template-actualits-page .header__overlay_container_texte_img {
    font-size: 3rem;
  }
}
@media (max-width: 375px) {
  .page-template-actualits-page .header {
    height: 20rem;
  }
  .page-template-actualits-page .header__overlay {
    padding-top: 1rem;
  }
  .page-template-actualits-page .header__overlay_container {
    padding-top: 1rem;
  }
  .page-template-actualits-page .header__overlay_container_texte_img {
    font-size: 2.5rem;
  }
}
.page-template-actualits-page .news-grid {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .page-template-actualits-page .news-grid {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-template-actualits-page .news-grid {
    padding: 0 1rem;
    gap: 1rem;
  }
}
.page-template-actualits-page .news-grid .news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: auto;
  min-height: 200px;
  text-decoration: none;
  color: inherit;
}
.page-template-actualits-page .news-grid .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .page-template-actualits-page .news-grid .news-card {
    min-height: 180px;
  }
}
@media (max-width: 768px) {
  .page-template-actualits-page .news-grid .news-card {
    min-height: 160px;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .page-template-actualits-page .news-grid .news-card {
    flex-direction: column;
    min-height: auto;
  }
}
.page-template-actualits-page .news-grid .news-card .news-image {
  width: 300px;
  height: 200px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .page-template-actualits-page .news-grid .news-card .news-image {
    width: 250px;
    height: 180px;
  }
}
@media (max-width: 768px) {
  .page-template-actualits-page .news-grid .news-card .news-image {
    width: 100%;
    height: 200px;
  }
}
@media (max-width: 576px) {
  .page-template-actualits-page .news-grid .news-card .news-image {
    height: 180px;
  }
}
.page-template-actualits-page .news-grid .news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-actualits-page .news-grid .news-card .news-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(to right, #fff, #f8f9fa);
}
@media (max-width: 768px) {
  .page-template-actualits-page .news-grid .news-card .news-content {
    padding: 1.2rem;
  }
}
@media (max-width: 576px) {
  .page-template-actualits-page .news-grid .news-card .news-content {
    padding: 1rem;
  }
}
.page-template-actualits-page .news-grid .news-card .news-content .news-date {
  font-size: 0.9rem;
  color: #6ab55e;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-template-actualits-page .news-grid .news-card .news-content .news-date {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }
}
.page-template-actualits-page .news-grid .news-card .news-content .news-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3436;
  line-height: 1.3;
  margin: 0 0 1rem 0;
}
@media (max-width: 992px) {
  .page-template-actualits-page .news-grid .news-card .news-content .news-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .page-template-actualits-page .news-grid .news-card .news-content .news-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .page-template-actualits-page .news-grid .news-card .news-content .news-title {
    font-size: 1.1rem;
  }
}
.page-template-actualits-page .news-grid .news-card .news-content .news-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #636e72;
  margin: 0 0 1rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
@media (max-width: 992px) {
  .page-template-actualits-page .news-grid .news-card .news-content .news-text {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .page-template-actualits-page .news-grid .news-card .news-content .news-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
.page-template-actualits-page .news-grid .news-card .news-content .read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #6ab55e;
  font-weight: 600;
  transition: color 0.3s ease;
}
.page-template-actualits-page .news-grid .news-card .news-content .read-more:hover {
  color: #5a9e4e;
}
.page-template-actualits-page .texte_actu {
  text-align: center;
  color: #3a5a40;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
@media (max-width: 1200px) {
  .page-template-actualits-page .texte_actu {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    margin-top: 3.5rem;
  }
}
@media (max-width: 992px) {
  .page-template-actualits-page .texte_actu {
    font-size: 1.3rem;
    margin-bottom: 1.6rem;
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .page-template-actualits-page .texte_actu {
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 576px) {
  .page-template-actualits-page .texte_actu {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
  }
}

.page-template-mention-lgales-page .header {
  position: relative;
  overflow: hidden;
  height: 45rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-template-mention-lgales-page .header__overlay {
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.page-template-mention-lgales-page .header__overlay_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.page-template-mention-lgales-page .header__overlay_container_texte {
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-template-mention-lgales-page .header__overlay_container_texte_img {
  font-size: 7rem;
  color: #f59e1b;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .page-template-mention-lgales-page .header {
    height: 40rem;
  }
  .page-template-mention-lgales-page .header__overlay_container_texte_img {
    font-size: 6rem;
  }
}
@media (max-width: 992px) {
  .page-template-mention-lgales-page .header {
    height: 35rem;
  }
  .page-template-mention-lgales-page .header__overlay_container_texte_img {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .page-template-mention-lgales-page .header {
    height: 30rem;
  }
  .page-template-mention-lgales-page .header__overlay {
    padding-top: 2rem;
  }
  .page-template-mention-lgales-page .header__overlay_container {
    padding-top: 2rem;
  }
  .page-template-mention-lgales-page .header__overlay_container_texte_img {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .page-template-mention-lgales-page .header {
    height: 25rem;
  }
  .page-template-mention-lgales-page .header__overlay {
    padding-top: 1.5rem;
  }
  .page-template-mention-lgales-page .header__overlay_container {
    padding-top: 1.5rem;
  }
  .page-template-mention-lgales-page .header__overlay_container_texte_img {
    font-size: 3rem;
  }
}
@media (max-width: 375px) {
  .page-template-mention-lgales-page .header {
    height: 20rem;
  }
  .page-template-mention-lgales-page .header__overlay {
    padding-top: 1rem;
  }
  .page-template-mention-lgales-page .header__overlay_container {
    padding-top: 1rem;
  }
  .page-template-mention-lgales-page .header__overlay_container_texte_img {
    font-size: 2.5rem;
  }
}
.page-template-mention-lgales-page .legal-title {
  font-size: 2rem;
  color: #146C43;
  text-align: left;
  margin-bottom: 40px;
}
.page-template-mention-lgales-page .legal-section-title {
  font-size: 1.5rem;
  color: #06845C;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
}
.page-template-mention-lgales-page .legal-address-title {
  font-size: 1.2rem;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}
.page-template-mention-lgales-page .legal-text,
.page-template-mention-lgales-page .legal-address,
.page-template-mention-lgales-page .legal-hosting-address {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.page-template-mention-lgales-page .legal-address,
.page-template-mention-lgales-page .legal-hosting-address {
  white-space: pre-wrap;
}
@media screen and (max-width: 768px) {
  .page-template-mention-lgales-page .legal-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .page-template-mention-lgales-page .legal-section-title {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-template-mention-lgales-page .legal-address-title {
    font-size: 1.1rem;
    margin-top: 15px;
    margin-bottom: 8px;
  }
  .page-template-mention-lgales-page .legal-text,
  .page-template-mention-lgales-page .legal-address,
  .page-template-mention-lgales-page .legal-hosting-address {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

.single-derniere-actualites .header {
  position: relative;
  overflow: hidden;
  height: 45rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.single-derniere-actualites .header__overlay {
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.single-derniere-actualites .header__overlay_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.single-derniere-actualites .header__overlay_container_texte {
  display: flex;
  justify-content: center;
  width: 100%;
}
.single-derniere-actualites .header__overlay_container_texte_img {
  font-size: 7rem;
  color: #6ab55e;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .single-derniere-actualites .header {
    height: 40rem;
  }
  .single-derniere-actualites .header__overlay_container_texte_img {
    font-size: 6rem;
  }
}
@media (max-width: 992px) {
  .single-derniere-actualites .header {
    height: 35rem;
  }
  .single-derniere-actualites .header__overlay_container_texte_img {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .single-derniere-actualites .header {
    height: 30rem;
  }
  .single-derniere-actualites .header__overlay {
    padding-top: 2rem;
  }
  .single-derniere-actualites .header__overlay_container {
    padding-top: 2rem;
  }
  .single-derniere-actualites .header__overlay_container_texte_img {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .single-derniere-actualites .header {
    height: 25rem;
  }
  .single-derniere-actualites .header__overlay {
    padding-top: 1.5rem;
  }
  .single-derniere-actualites .header__overlay_container {
    padding-top: 1.5rem;
  }
  .single-derniere-actualites .header__overlay_container_texte_img {
    font-size: 3rem;
  }
}
@media (max-width: 375px) {
  .single-derniere-actualites .header {
    height: 20rem;
  }
  .single-derniere-actualites .header__overlay {
    padding-top: 1rem;
  }
  .single-derniere-actualites .header__overlay_container {
    padding-top: 1rem;
  }
  .single-derniere-actualites .header__overlay_container_texte_img {
    font-size: 2.5rem;
  }
}
.single-derniere-actualites .actualite-detail {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  line-height: 1.7;
  color: #333;
}
@media (max-width: 768px) {
  .single-derniere-actualites .actualite-detail {
    margin: 2rem auto;
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .single-derniere-actualites .actualite-detail {
    margin: 1.5rem auto;
    padding: 1.5rem;
  }
}
.single-derniere-actualites .actualite-detail .actualite-header {
  margin-bottom: 2.5rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}
.single-derniere-actualites .actualite-detail .actualite-header .actualite-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .single-derniere-actualites .actualite-detail .actualite-header .actualite-title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .single-derniere-actualites .actualite-detail .actualite-header .actualite-title {
    font-size: 1.8rem;
  }
}
.single-derniere-actualites .actualite-detail .actualite-header .actualite-date {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}
.single-derniere-actualites .actualite-detail .actualite-image {
  width: 100%;
  height: 400px;
  margin: 2.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .single-derniere-actualites .actualite-detail .actualite-image {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .single-derniere-actualites .actualite-detail .actualite-image {
    height: 250px;
  }
}
.single-derniere-actualites .actualite-detail .actualite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-derniere-actualites .actualite-detail .actualite-content {
  width: 100%;
  padding: 0;
  margin: 0;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  word-break: break-word;
}
@media (max-width: 768px) {
  .single-derniere-actualites .actualite-detail .actualite-content .actualite-text {
    font-size: 1rem;
  }
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text p:last-child {
  margin-bottom: 0;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text h2, .single-derniere-actualites .actualite-detail .actualite-content .actualite-text h3, .single-derniere-actualites .actualite-detail .actualite-content .actualite-text h4 {
  color: #212529;
  margin: 2rem 0 1rem 0;
  font-weight: 700;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text h2 {
  font-size: 1.8rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text h3 {
  font-size: 1.5rem;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text h4 {
  font-size: 1.3rem;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text ul, .single-derniere-actualites .actualite-detail .actualite-content .actualite-text ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text a {
  color: #007bff;
  text-decoration: underline;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text a:hover {
  color: #0056b3;
}
.single-derniere-actualites .actualite-detail .actualite-content .actualite-text blockquote {
  border-left: 4px solid #007bff;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
  background: #f8f9fa;
  border-radius: 0 4px 4px 0;
}

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