@charset "UTF-8";
/***** Couleur variables *****/
/***** class Boostrap avec les couleurs définies ci-haut *****/
@import "bootstrap.min.css";

/* Fonts */
@font-face {
  font-family: "Fredoka";
  src: url("../fonts/FredokaVariableFont_wdth_wght.eot");
  src: url("../fonts/FredokaVariableFont_wdth_wght.eot")
      format("embedded-opentype"),
    url("../fonts/FredokaVariableFont_wdth_wght.woff2") format("woff2"),
    url("../fonts/FredokaVariableFont_wdth_wght.woff") format("woff");
}
@font-face {
  font-family: "BreeSerif";
  src: url("../fonts/BreeSerifRegular.eot");
  src: url("../fonts/BreeSerifRegular.eot") format("embedded-opentype"),
    url("../fonts/BreeSerifRegular.woff2") format("woff2"),
    url("../fonts/BreeSerifRegular.woff") format("woff");
}
@font-face {
  font-family: "BowlbyOne";
  src: url("../fonts/BowlbyOneRegular.eot");
  src: url("../fonts/BowlbyOneRegular.eot") format("embedded-opentype"),
    url("../fonts/BowlbyOneRegular.woff2") format("woff2"),
    url("../fonts/BowlbyOneRegular.woff") format("woff");
}

@font-face {
  font-family: "FredokaBold";
  src: url("../fonts/FredokaBold.eot");
  src: url("../fonts/FredokaBold.eot") format("embedded-opentype"),
    url("../fonts/FredokaBold.woff2") format("woff2"),
    url("../fonts/FredokaBold.woff") format("woff"),
    url("../fonts/FredokaBold.ttf") format("truetype"),
    url("../fonts/FredokaBold.svg#FredokaBold") format("svg");
}


/* Loader de page */
.svg-loader {
  width: 30vh; /* Ajuste la taille du loader */
  height: 30vh; /* Ajuste la taille du loader */
  background: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

#page-content {
  opacity: 0;
  visibility: hidden;
}

#page-content.visible {
  opacity: 1;
  visibility: visible;
}

/* Loader centré */
#animated-svg-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: white !important;
  width: 30vh;
  height: 30vh;
  display: block;
  justify-content: center;
  align-items: center;
  visibility: visible;
}

/* Retour en haut */
#back-to-top {
  z-index: 99;
  position: fixed;
  bottom: 77px;
  right: 20px;
  background-color: #3f2021;
  color: white;
  border: none;
  padding: 7px 17px !important;
  border-radius: 50%;
  font-size: 23px !important;
  cursor: pointer;
  display: none; /* Caché par défaut */
  -webkit-transition: background-color 0.3s; /* Transition pour Safari */
}

#back-to-top:hover {
  background-color: #4b2729;
}

/* Cookie */
/* Style de la bannière de cookies */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  width: 60%;
  transform: translateX(-50%);
  background: #f2f2f2;
  color: white;
  padding: 15px !important;
  border-radius: 15px;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.2);
  display: block;
  z-index: 999;
  -webkit-transform: translateX(-50%); /* Ajouter le préfixe pour Safari */
  -webkit-transition: transform 0.3s ease; /* Transition pour Safari */
}

/* Style de l'icône de gestion des cookies */
#cookie-settings {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f2f2f2;
  border: 3px solid #3f2021;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  z-index: 999;
  -webkit-transition: background-color 0.3s; /* Transition pour Safari */
}

#cookie-settings:hover {
  background-color: lightgray;
}

/* Style du panneau de préférences */
#cookie-preferences {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background: white;
  padding: 15px 0;
  border-radius: 15px;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 999;
  -webkit-transition: bottom 0.3s ease; /* Transition pour Safari */
}

/* Adaptation pour les petits écrans */
@supports (-webkit-touch-callout: none) and (max-width: 768px) {
  #back-to-top {
    padding: 9px 14px !important; /* Ajuste les dimensions pour mieux s'adapter à l'écran mobile */
    font-size: 20px !important; /* Réduit la taille de l'icône */
  }

  #cookie-settings {
    padding: 12px !important; /* Ajuste l'icône pour qu'elle reste ronde mais avec un peu plus d'espace */
  }
}

/* Adaptation pour les petits écrans */
@media only screen and (max-width: 768px) {
  #cookie-banner {
    width: 80%;
  }

  #cookie-preferences {
    width: 70%;
  }
}

/* Animation */
.text-block:nth-child(odd) {
  text-align: left;
}

.text-block:nth-child(even) {
  text-align: right;
  margin-left: auto;
}

/* Nav */
.navbar .nav-item .dropdown-menu li a:hover {
  background-color: #3e6225 !important;
}

.navbar .nav-item .dropdown-menu li a {
  padding: 10px 15px;
}

.navbar .dropdown-toggle::after {
  padding: 0 !important;
  margin: 0 5px 0 5px !important;
}

@media all and (min-width: 1400px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
  }

  .navbar .nav-item:hover .nav-link {
    color: #fff;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}
.navbar {
  padding: 0 !important;
}

.navbar .navbar-brand {
  padding: 0 !important;
}

@media screen and (max-width: 991px) {
  .navbar {
    padding: 0 !important;
  }

  .navbar .navbar-brand {
    padding: 0 !important;
  }

  .navbar .navbar-brand img {
    width: 93px !important;
    height: 93px !important;
  }
}

/* CSS to display "Menu" next to the hamburger icon */
@media (max-width: 1400px) {
  .navbar-toggler {
    display: flex;
    align-items: center; /* Center the hamburger icon vertically */
    margin-right: 0; /* Optional: Adjust if needed for spacing */
  }

  .menu-label {
    color: white; /* Make the text white */
    font-size: 18px;
  }
}

/* Header */
.slogan {
  margin: 0.5em;
  font: 3rem "BowlbyOne", serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f2f2f2;
}

header {
  position: relative;
  width: 100%;
  height: 39.8em;
  padding: 3.11em 1.25em;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-slogan {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 19%;
  background-color: rgba(63, 32, 33, 0.8);
}

/* Header Mobile */
@media only screen and (max-width: 600px) {
  .slogan {
    margin: 0.5em;
    font-size: 1.6rem;
  }

  header {
    height: 25em;
    padding: 40px 15px;
  }

  .banner-slogan {
    height: 26% !important;
  }
}

/* Header Mobile md */
@media only screen and (min-width: 601px) and (max-width: 991px) {
  .banner-slogan {
    height: 29%;
  }
}

/* Header Tablette */
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .slogan {
    margin: 20px;
    font-size: 2.5rem;
  }

  header {
    height: 550px;
    padding: 50px 30px;
  }
}

/* Header Tablette */
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .banner-slogan {
    height: 28%;
  }

  header {
    height: 26.8em;
    padding: 3.11em 1.25em;
  }
}

/* Généraux */
html {
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

body {
  padding: 0 !important;
  background-color: #fff !important;
  -webkit-tap-highlight-color: transparent !important;
}

h2 {
  margin: 0 0 15px 0;
  font-family: "BreeSerif", serif;
  text-align: center;
  text-transform: uppercase;
  color: #3f2021;
}

h3,
h4 {
  margin: 0 0 10px 0;
  font-family: "BreeSerif", serif;
  text-align: left;
  color: #3f2021;
}

p,
label,
a.lien-modif,
section li {
  margin: 0 40px 5px 40px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.2em;
  line-height: 1.65em;
  color: #111111;
  letter-spacing: 0.025em;
}

section li:hover {
  color: none;
}

a.lien-modif {
  display: block; /* Comportement comme un paragraphe */
}

button {
  padding: 15px !important;
  font-size: 1.2em !important;
  font-family: "FredokaBold", sans-serif;
}

button a {
  text-decoration: none;
}

button span {
  font-family: "FredokaBold", sans-serif;
}

li {
  font: 1.08em "Fredoka", sans-serif;
  letter-spacing: 0.025em;
}

.navbar .nav-link:hover {
  color: lightgray !important;
}

a {
  text-underline-offset: 4px;
  font-weight: bold;
  color: #3f2021;
}

a:hover {
  color: #4b2729;
}

img {
  object-fit: cover;
}

section {
  padding: 50px 0 !important;
}

button,
li {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 991px) {
  h2 {
    margin: 0 0 15px 0 !important;
  }

  p,
  label,
  a.lien-modif,
  section li {
    margin: 5px;
    font-family: "Fredoka", sans-serif;
    font-size: 1.2em;
    line-height: 1.35em;
    color: #111111;
    letter-spacing: 0.025em;
  }
}

/* Backgrounds */
.fond-lime {
  padding: 15px 0;
  background-color: #fcfdeb;
  color: #111111;
  border: none;
}

.fond-orange {
  padding: 15px 0;
  background-color: #ed8b00;
  color: #111111;
  border: none;
}

.fond-pale-orange {
  padding: 15px 0;
  background-color: #ffd497 !important;
  color: #111111;
  border: none !important;
}

.section-nouveau:nth-child(odd) {
  padding: 15px 0;
  background-color: #ffd497 !important;
  color: #111111;
  border: none !important;
}

.section-nouveau:nth-child(even) {
  padding: 15px 0;
  background-color: #fcfdeb;
  color: #111111;
  border: none;
}

/* Texte et Liste */
.section-text {
  position: relative;
  padding: 50px 0 !important;
  background-image: url("../img/fond-corn.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.formulaire {
  position: relative;
  padding: 50px 0 163px 0 !important;
  background-image: url("../img/fond-corn.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.section-text p,
.section-text a,
.section-liste p,
.section-liste a {
  display: block;
  margin: 0 auto;
  max-width: 86%;
  text-align: left;
}

.section-liste a {
  display: inline-block;
  color: #3f2021;
  font-size: 1em;
}

.participer p a {
  display: inline;
  font-family: "Fredoka", sans-serif;
  font-size: 1em;
  line-height: 1.65em;
  color: #3f2021;
  letter-spacing: 0.025em;
}

.section-text a {
  color: inherit;
  font-weight: bold;
}

.section-text ul,
.section-liste ul,
.section-liste ol,
.section-glanage ul {
  padding-left: 0px;
  list-style-position: inside;
}

.section-liste li,
.section-text li,
.section-glanage li {
  margin: 15px auto;
  max-width: 85%;
}

.section-text h3,
.section-liste h3 {
  text-align: left;
  max-width: 86%;
  margin: 30px auto 5px auto;
}

@media screen and (min-width: 993px) and (max-width: 1024px) {
  .section-text {
    background-image: none; /* Supprime l'image sur petits écrans */
    padding: 30px 0; /* Garde un peu d'espace autour du texte */
  }

  .section-text p,
  .section-text a,
  .section-liste p,
  .section-liste a {
    margin: 5px auto;
    max-width: 90%;
    display: block; /* Assure que les liens se comportent comme des paragraphes */
    text-align: left; /* Aligne le texte à gauche */
  }

  .section-liste li,
  .section-text li,
  .section-glanage li {
    margin: 15px 5px;
    max-width: 85%;
  }

  .section-text h3,
  .section-liste h3 {
    text-align: left;
    max-width: 90%;
    margin: 30px auto 5px auto;
  }

  .section-text a {
    color: inherit;
    font-weight: bold;
  }
}

@media screen and (max-width: 992px) {
  .section-text {
    background-image: none; /* Supprime l'image sur petits écrans */
    padding: 30px 5%; /* Ajoute du padding pour éviter que le texte touche les bords */
  }

  .section-text p,
  .section-text a,
  .section-liste p,
  .section-liste a {
    max-width: 100%;
    margin: 5px;
    display: block; /* Assure que les liens se comportent comme des paragraphes */
    text-align: left; /* Aligne le texte à gauche */
  }

  .section-liste li,
  .section-text li,
  .section-glanage li {
    margin: 15px 5px;
    max-width: 100%;
  }

  .section-text h3,
  .section-liste h3 {
    padding: 0 5px 10px 5px;
    text-align: left;
    max-width: 100%;
  }

  .section-text a {
    color: inherit;
    font-weight: bold;
    margin: 0 5px;
  }
}

/* Glanage */
.section-glanage .container {
  display: flex;
}

.section-glanage img {
  margin-bottom: 10px;
  box-shadow: 15px 15px 7px rgba(0, 0, 0, 0.205);
  border-radius: 35px;
  width: 41%;
  max-width: 45%;
  min-width: 41%;
}

.section-glanage h3 {
  margin: 0 auto 10px auto;
  width: 88.5%;
}

/* Bouton glanage vers formulaires */
.section-glanage .btn-form {
  text-align: center;
}

.btn-form a {
  text-decoration: none;
}

.section-glanage button {
  margin: 25px 10px;
  padding: 10px;
  background-color: #dbe442 !important;
  font-weight: bold;
}

.section-glanage button:hover {
  background-color: #ebf358 !important;
}

.section-glanage .btn-square-md {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.281);
  border: 2px solid #3f2021;
  border-radius: 15px;
  width: 170px !important;
  max-width: 100% !important;
  max-height: 100% !important;
  height: 170px !important;
  padding: 5px;
  background-image: url("../img/icone-poire-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 1.2em;
  text-align: center;
  color: #3f2021;
}

.section-glanage .btn-square-md:hover {
  transform: translate(5px, 5px);
  box-shadow: 0px 0px 0px #babbae;
}

.section-glanage .btn-square-md span {
  z-index: 2;
}

/* Glanage Mobile */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-glanage button {
    display: block;
    margin: 20px 10px;
  }

  .section-glanage p,
  .section-glanage a.lien-modif {
    margin: 5px;
    padding: 0;
  }

  .section-glanage h3 {
    margin: 0 auto 10px auto;
    width: 98.5% !important;
  }

  .section-glanage .glanage-text {
    display: block;
    margin: auto !important;
    width: 100% !important;
  }

  .section-glanage .btn-square-md {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.281);
    border: 2px solid #3f2021;
    border-radius: 15px;
    width: 180px !important;
    max-width: 100% !important;
    max-height: 100% !important;
    height: 180px !important;
    padding: 5px;
    background-image: url("../img/poire.png") center no-repeat;
    background-size: contain;
    font-size: 1.15em;
    text-align: center;
    color: #3f2021;
  }
}

/* Glanage Mobile */
@media only screen and (max-width: 767px) {
  .section-glanage button {
    display: block;
    margin: 20px auto;
  }

  .section-glanage p,
  .section-glanage a.lien-modif {
    margin: 5px;
    padding: 0;
  }

  .section-glanage h3 {
    margin: 0 auto 10px auto;
    width: 98% !important;
  }

  .section-glanage .glanage-text {
    display: block;
    margin: auto !important;
    width: 100% !important;
  }

  .section-glanage .btn-square-md {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.281);
    border: 2px solid #3f2021;
    border-radius: 15px;
    width: 180px !important;
    max-width: 100% !important;
    max-height: 100% !important;
    height: 180px !important;
    padding: 5px;
    background-image: url("../img/poire.png") center no-repeat;
    background-size: contain;
    font-size: 1.15em;
    text-align: center;
    color: #3f2021;
  }
}

/* Glanage Lg */
@media screen and (min-width: 1025px) and (max-width: 1289px) {
  .section-glanage img {
    display: none !important;
  }

  .section-glanage .glanage-text {
    display: block;
    margin: auto;
    width: 91.6666% !important;
  }

  .section-glanage h3 {
    margin: 0 auto 10px auto;
    width: 86.5% !important;
  }

  .section-glanage p,
  .section-glanage a.lien-modif {
    display: block;
    text-align: left;
    margin: 0 auto;
    width: 86%;
  }
}

/* Glanage Md */
@media screen and (min-width: 992px) and (max-width: 1024px) {
  .section-glanage img {
    display: none !important;
  }

  .section-glanage .glanage-text {
    display: block;
    margin: auto;
    width: 75% !important;
  }

  .section-glanage h3 {
    margin: 0 auto 10px auto;
    width: 98.5% !important;
  }

  .section-glanage p,
  .section-glanage a.lien-modif {
    padding: 0;
    margin: 5px;
  }
}

/* Statistiques */
.section-stat p {
  margin: 0;
  text-align: center;
}

.image-container {
  display: block;
  margin: 15px auto;
  position: relative;
  width: 110px;
  height: 110px;
}

.image {
  position: absolute;
  width: 100%;
  height: auto;
  transition: 0.3s ease-in-out;
}

.image-1 {
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.image-2 {
  top: 10%;
  left: 10%;
  z-index: 2;
  height: 80%;
  width: 80%;
}

.image-3 {
  top: 25%;
  left: 25%;
  z-index: 3;
  height: 50%;
  width: 50%;
}

/* Statistique Mobile */
@media only screen and (max-width: 600px) {
  .item-stat {
    margin: 20px 0;
  }
}

/* Carousel et information */
.carousel {
  display: block;
  margin: 0px auto;
  height: 590px;
}

.carousel h2 {
  margin: 0;
}

.carousel-item div div,
.information-text {
  width: 90%;
  height: 530px;
}

.carousel-test img,
.information-card img {
  width: 40%;
  height: 530px;
}

.information-card {
  display: block;
  margin: auto;
  width: 80%;
}

.carousel .carousel-control-prev-icon {
  background-image: url("../img/carousel-prev.png");
  background-size: 75%;
  width: 50px;
  height: 50px;
}

.carousel .carousel-control-next-icon {
  background-image: url("../img/carousel-next.png");
  background-size: 75%;
  width: 50px;
  height: 50px;
}

.carousel-indicators [data-bs-target] {
  border-radius: 50%;
  padding: 12px !important;
  width: 0%;
  height: 0%;
  background-color: #f2f2f2;
  border: 1px solid #4a7729;
}

.carousel-indicators button.active {
  background-color: #ed8b00 !important;
  border: 1px solid #4a7729;
}

.btn-carousel {
  border: none;
  background: none;
}

.border-green {
  border-color: #4a7729 !important;
  background-color: white;
}

/* Temoignages */
.section-comment,
.benevole {
  background-image: url("../img/fond-feuille.png");
  background-size: 109%;
  background-position: center 57%;
  background-repeat: no-repeat;
}

.section-comment p {
  margin: 0 30px;
  padding: 0;
}

.section-comment h2 {
  line-height: 1.2em;
  min-height: 2.6em;
}

.saviez-vous h2 {
  line-height: 1.2em !important;
  min-height: 1.6em !important;
}

.section-comment h3 {
  margin: 0;
  font: 3em "FredokaBold", sans-serif;
}

/* Temoignages Mobile */
@media only screen and (max-width: 991px) {
  .section-comment .carousel-inner {
    overflow-x: hidden;
    width: 100%;
    margin: 0 auto;
  }

  .section-comment .carousel-item {
    margin-right: 0px;
    /* Supprime la marge à droite */
    padding-right: 0px;
    /* Supprime le padding à droite */
  }

  .section-comment .card-body,
  .section-benevole .card-body {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    max-height: 330px;
    height: 330px;
    padding: 10px;
    margin: 0px;
  }

  .section-comment p {
    line-height: 1.2em;
    margin: 5px !important;
  }

  .section-comment h2 {
    line-height: 1.2em;
    min-height: 2.7em;
  }

  .section-comment .scrollable-text {
    max-height: 67% !important;
  }

  .section-comment .card img,
  .section-benevole .card img {
    width: 100%;
    height: 270px !important;
  }

  .section-comment .card,
  .section-benevole .card {
    display: block;
    margin: auto;
    border-radius: 50px;
    width: 90%;
    height: 100%;
    background-color: none;
    box-sizing: border-box;
    /* Assure que les bordures et le padding sont inclus dans la largeur totale */
  }

  .section-comment .card-title,
  .section-benevole .card-title {
    margin: 5px 0;
    padding: 0;
  }

  .section-comment {
    background-image: none;
  }

  .border-green {
    border-color: #4a7729 !important;
  }

  .section-comment .container {
    max-width: 650px;
  }

  .m-5 {
    margin: 2rem !important;
  }

  .section-benevole .m-5 {
    margin: 1.1rem !important;
  }
}

/* Temoignages Tablette */
@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .section-comment p {
    max-height: 380px;
    overflow-y: auto;
    flex-grow: 1;
  }
}

/* Temoignages Pc */
@media only screen and (max-width: 1575px) {
  .section-comment {
    background-image: none;
  }
}

/* Evenements */
.border-orange {
  border-color: #ed8b00 !important;
  width: 100%;
}

.section-event .no-event {
  margin: 10px auto;
  width: 80%;
  height: 650px;
  border-radius: 20px;
  background-color: #ecc38a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-event .no-event p {
  font-weight: bold;
}

.section-event .card {
  border-radius: 30px;
  background-color: transparent;
}

.section-event .event-btn {
  border: none;
  box-shadow: none;
  background-color: #ed8b00 !important;
}

.section-event .event-btn:hover {
  border: none;
  box-shadow: none;
  background-color: #cf7900 !important;
}

.section-event .event-width {
  width: 29% !important;
}

.section-event .event-width .card-body,
.section-event .event-highlighted {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.section-event h5 {
  min-height: 2.4em;
  line-height: 1.2em;
}

.event-title-wave {
  position: relative;
}

.wave-left,
.wave-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
}

.wave-left {
  right: 0;
}

.wave-right {
  left: 0;
}

.small-text {
  font-size: 1.2em;
}

.section-event .plain-event {
  width: 100%;
  height: 850px;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.section-event .card-body {
  border-radius: 40px;
  background-color: white;
  /* width: 40%; */
}

.section-event .item-event,
.section-event .event-width {
  width: 75%;
  height: 96%;
}

.event-width .card {
  margin: 0 0 39px 0 !important;
}

.section-event .fond-orange {
  padding: 20px 33px !important;
}

@media screen and (min-width: 0px) and (max-width: 411px) {
    .section-event .plain-event {
        width: 100%;
        height: 844px !important;
        margin: 0;
        display: flex;
        justify-content: center;
    }
}

@media screen and (min-width: 412px) and (max-width: 489px) {
    .section-event .plain-event {
        width: 100%;
        height: 743px !important;
        margin: 0;
        display: flex;
        justify-content: center;
    }
}

@media screen and (min-width: 490px) and (max-width: 595px) {
    .section-event .plain-event {
        width: 100%;
        height: 694px !important;
        margin: 0;
        display: flex;
        justify-content: center;
    }
}

@media screen and (min-width: 596px) and (max-width: 829px) {
    .section-event .plain-event {
        width: 100%;
        height: 694px !important;
        margin: 0;
        display: flex;
        justify-content: center;
    }
}

/* Evenements Mobile */
@media screen and (min-width: 0px) and (max-width: 991px) {
  .section-event .rounded-left-md-5 {
    border-radius: 2rem 2rem 0 0;
  }

  .section-event .border-bottom-md {
    border-radius: 0 0 2rem 2rem;
  }

  .section-event .border-bottom-sm {
    border: 3px solid #000;
    border-radius: 0 0 2rem 2rem;
  }

  .section-event .border-start-md {
    border: 3px solid #000;
  }

  .section-event .card img {
    width: 100%;
    height: 49%;
  }

  .section-event .plain-event {
    width: 100%;
    height: 597px;
    margin: 0;
    display: flex;
    justify-content: center;
  }

  .event-highlighted,
  .section-event .plain-event {
    width: 95% !important;
  }

  .section-event .event-width {
    width: 95% !important;
  }

  .card-body-height {
    height: 0% !important;
  }

  .event-title-wave {
    display: none;
  }

  .section-event .card {
    margin: 15px 0 25px 0 !important;
  }

  .section-event .event-all {
    display: block;
    width: 95%;
    margin-left: auto !important;
  }

  .section-event .item-event {
    display: block;
    width: 95%;
    height: 50%;
    margin-left: auto !important;
  }

  .section-event .plain-event .card img {
    height: 100%;
  }
}

/* Evenements Pc */
@media screen and (min-width: 1314px) {
  .section-event .rounded-left-md-5 {
    border-radius: 2rem 0 0 2rem;
  }

  .section-event .border-bottom-md {
    border-radius: 0 2rem 2rem 0;
  }

  .section-event .border-end-md {
    border: 3px solid #000;
    border-left: 0px;
    border-radius: 0 2rem 2rem 0;
  }

  .section-event .border-start-md {
    border: 3px solid #000;
  }

  .section-event .border-top-right-md {
    border-radius: 0 1.6rem 0 0;
  }

  .section-event .card img {
    width: 70%;
  }

  .section-event .event-highlighted {
    height: 782px;
    width: 58%;
  }
}

/* Evenements Pc */
@media screen and (min-width: 1289px) and (max-width: 1313px) {
  .section-event .rounded-left-md-5 {
    border-radius: 2rem 0 0 2rem;
  }

  .section-event .border-bottom-md {
    border-radius: 0 2rem 2rem 0;
  }

  .section-event .border-end-md {
    border: 3px solid #000;
    border-left: 0px;
    border-radius: 0 2rem 2rem 0;
  }

  .section-event .border-start-md {
    border: 3px solid #000;
  }

  .section-event .border-top-right-md {
    border-radius: 0 1.6rem 0 0;
  }

  .section-event .card img {
    width: 70%;
  }

  .section-event .event-highlighted {
    height: 805px;
    width: 58%;
  }
}

/* Evenements Tablette Lg*/
@media screen and (min-width: 1025px) and (max-width: 1288px) {
  .section-event .event-highlighted {
    display: block;
    height: 768px;
    width: 400px;
  }

  .section-event .event-highlighted .card-body {
    padding-bottom: 25% !important;
  }

  .section-event .card img {
    width: 100%;
    height: 49%;
  }

  .section-event .plain-event .card img {
    width: 100%;
    height: 100%;
  }

  img.event-bureau {
    display: none !important;
  }

  img.event-mobile {
    display: block !important;
  }

  .section-event .rounded-left-md-5 {
    border-radius: 2rem 0 0 2rem;
  }

  .section-event .rounded-top-md-5 {
    border-radius: 2rem 2rem 0 0;
  }

  .section-event .plain-event .rounded-top-md-5 {
    border-radius: 2rem 0 0 2rem;
  }

  .section-event .plain-event .border-bottom-sm {
    border: 3px solid #000;
    border-left: 0px;
    border-radius: 0 2rem 2rem 0;
  }

  .section-event .plain-event .border-top-right-md {
    border-radius: 0 1.6rem 0 0;
  }

  .section-event .border-bottom-md {
    border-radius: 0 2rem 2rem 0;
  }

  .section-event .border-bottom-sm {
    border: 3px solid #000;
    border-radius: 0 0 2rem 2rem;
  }

  .section-event .border-start-md {
    border: 3px solid #000;
  }

  .section-event .event-width {
    width: 45% !important;
  }

  .section-event .plain-event {
    width: 100%;
    height: 850px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
  }

  .event-width .card {
    margin: 0 0 34px 0 !important;
  }
}

/* Evenements Tablette Md */
@media screen and (min-width: 992px) and (max-width: 1024px) {
  .section-event .event-highlighted {
    display: block;
    width: 400px;
    height: 768px;
  }

  .section-event .border-bottom-sm {
    border: 3px solid #000;
    border-radius: 0 0 2rem 2rem;
  }

  .section-event .card img {
    width: 100%;
    height: 49%;
  }

  .section-event .event-highlighted .card-body {
    padding-bottom: 25% !important;
  }

  .section-event .item-event {
    display: block;
    width: 97%;
    height: 50%;
    margin-left: auto !important;
  }

  .section-event .plain-event .card img {
    height: 126%;
  }

  .section-event .card img {
    width: 100%;
  }

  img.event-bureau {
    display: none !important;
  }

  img.event-mobile {
    display: block !important;
  }

  .section-event .rounded-left-md-5 {
    border-radius: 2rem 0 0 2rem;
  }

  .section-event .rounded-top-md-5 {
    border-radius: 2rem 2rem 0 0;
  }

  .section-event .border-bottom-md {
    border-radius: 0 2rem 2rem 0;
  }

  .section-event .border-bottom-sm {
    border: 3px solid #000;
    border-radius: 0 0 2rem 2rem !important;
  }

  .section-event .border-start-md {
    border: 3px solid #000;
  }

  .section-event .event-width {
    width: 45% !important;
  }

  .section-event .card-body {
    background-color: #f2f2f2;
  }

  .section-event .event-btn {
    display: block !important;
  }

  .event-width .card {
    margin: 0 0 34px 0 !important;
  }
}

/* Table Mobile Accordéon */
.accordion {
  --bs-accordion-border-color: green;
  --bs-accordion-border-width: 0px;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-focus-box-shadow: 0;
}

.frigo-partage .accordion {
  --bs-accordion-border-color: orange;
  --bs-accordion-border-width: 0px;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-focus-box-shadow: 0;
}

.tableau {
  display: block !important;
  margin: auto;
}

.accordion h5,
.table-bureau h5 {
  min-height: 0;
  line-height: normal;
}

.accordion-border-bottom {
  border-bottom: 3px solid #4a7729;
}

.frigo-partage .accordion-border-bottom {
  border-bottom: 3px solid #ed8b00;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 0, 0, 0);
  color: #3f2021;
}

.table-title {
  display: block;
  min-height: 2em;
  line-height: 1em;
}

.table-verger {
  margin-bottom: 15px;
}

.frigo-partage .table-verger .table-bureau {
  padding: 20px 15px !important;
  height: 130px;
}

.table-verger p {
  margin: 10px 0px !important;
}

h2.frigo-title {
  font-size: 1.85em;
}

.frigo-partage h3 {
  margin: 30px 0 10px 25px;
  font-size: 1.7em;
}

.table-verger h4 {
  font-size: 1.45em;
}

/* Table Pc */
@media (min-width: 992px) {
  .table-bureau {
    border: 2px solid #4a7729;
    border-radius: 1.5rem;
    background-color: white;
    margin: 0 15px;
  }

  .frigo-partage .table-bureau {
    border: 2px solid #ed8b00 !important;
    border-radius: 1.5rem;
    background-color: white;
  }

  .section-table .table-bureau {
    margin: 5px;
    width: 30%;
  }

  .table-verger .col-lg-4 {
    width: 32.2% !important;
  }
}

/* Table Tablette */
@media (min-width: 701px) and (max-width: 992px) {
  .table-bureau {
    border: 2px solid #4a7729;
    border-radius: 1.5rem;
    background-color: white;
    margin: 5px;
  }

  .table-verger .col-md-6 {
    width: 48.5% !important;
  }

  .frigo-partage .table-bureau {
    border: 2px solid #ed8b00;
    border-radius: 1.5rem;
    background-color: white;
  }

  .section-table .table-bureau {
    margin: 5px;
    width: 48%;
  }
}

/* Table Tablette */
@media (max-width: 700px) {
  .table-bureau {
    border: 2px solid #4a7729;
    border-radius: 1.5rem;
    background-color: white;
    margin: 5px;
  }

  .table-verger .col-md-6 {
    width: 48.5% !important;
  }

  .frigo-partage .table-bureau {
    border: 2px solid #ed8b00;
    border-radius: 1.5rem;
    background-color: white;
  }

  .section-table .table-bureau {
    margin: 5px;
    width: 80%;
  }
}

/* Historique */
.section-historique .container {
  max-width: 80%;
  margin: auto;
}

.timeline {
  position: relative;
  padding-left: 4rem;
  margin: 60px 0 0 0 !important;
  color: white;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 100%;
  border-radius: 15px;
  background: #3f2021;
}

.timeline-container {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-container:nth-child(odd) {
  text-align: right;
}

.timeline-container:nth-child(odd) p {
  text-align: left;
}

.timeline-container:nth-child(odd) .timeline-body {
  margin-right: 51%;
}

.timeline-container:nth-child(even) {
  text-align: left;
}

.timeline-container:nth-child(even) .timeline-body {
  margin-left: 45%;
}

.timeline-container:nth-child(odd) .timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-83%);
  top: -15px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
}

.timeline-container:nth-child(even) .timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-89%) !important;
  top: -15px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
}

.timeline .image-3 {
  top: 25%;
  left: 25%;
  z-index: 3;
  height: 50%;
  width: 50%;
}

.timeline-body {
  background: #f2f2f2;
  border: 3px solid #4a7729;
  border-radius: 15px;
  padding: 20px 20px 15px 20px;
  box-shadow: 1px 3px 9px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-title {
  margin-bottom: 1.4rem;
}

.section-historique .badge {
  background: #ed8b00;
  padding: 4px 8px !important;
  border-radius: 3px;
  font-size: 0.8em !important;
  font-weight: bold;
  color: #3f2021;
}

.section-recette .badge,
.section-liste .badge {
  background: #ed8b00;
  padding: 4px 8px !important;
  border-radius: 3px;
  font-size: 1.1em !important;
  font-weight: bold;
  color: #3f2021;
}

.timeline-subtitle {
  font-weight: 300;
  font-style: italic;
  opacity: 0.4;
  margin-top: 16px;
}

@media only screen and (max-width: 1400px) {
  .timeline::before {
    background: none;
  }

  .timeline-body,
  .timeline-body p {
    margin: 0 !important;
  }

  .timeline {
    display: block;
    padding: 0 !important;
    margin: 60px auto 0 auto !important;
  }

  .timeline h4 {
    text-align: left;
  }

  .section-historique .container {
    max-width: 100%;
    margin: auto;
  }

  .timeline-container .timeline-body {
    display: block;
    margin: 2rem auto;
  }

  .timeline-container {
    display: flex;
    justify-content: center;
  }

  .timeline-icon {
    margin-left: auto;
    margin-right: auto;
    display: none;
  }

  .timeline .col-lg-10 {
    width: 84.3333%;
    padding: 0;
  }

  .timeline-container:nth-child(odd) .timeline-body {
    margin-right: 0;
  }

  .timeline-container:nth-child(even) .timeline-body {
    margin-left: 0;
  }

  .text-block:nth-child(even) {
    margin: 0 0 48px 0 !important;
  }

  .text-block:nth-child(odd) {
    margin: 0 0 48px 0 !important;
  }
}

/* Historique Mobile */
@media only screen and (max-width: 992px) {
  .timeline .container p {
    margin: 0 5px;
  }
}

/* Galerie */
.gallery-item {
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Partenaires, Producteur, Recette Et Equipe */
.section-partenaire .card-title,
.section-recette .card-title,
.section-producteur .card-title {
  display: block;
  min-height: 2em;
  line-height: 1.2em;
  font-size: 1.3em;
}

.section-recette .equipe .card-title {
  display: block;
  min-height: 1.5em;
  line-height: 1.2em;
  font-size: 1.3em;
}

.benevole img {
  margin: 0 48px 10px 0;
  box-shadow: 15px 15px 7px rgba(0, 0, 0, 0.205);
  border-radius: 35px;
  width: 38% !important;
  max-width: 41% !important;
  min-width: 38% !important;
}

.benevole .glanage-text {
  width: 54%;
}

.section-partenaire .row,
.section-recette .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.section-partenaire .card,
.section-producteur .card,
.section-recette .card {
  border-radius: 2em;
  border: 3px solid #4a7729;
  margin: 2px auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section-partenaire .card-body,
.section-producteur .card-body,
.section-recette .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.section-recette .card-body {
  border: 3px solid #4a7729;
  border-width: 0 3px 3px 3px;
}

.section-recette .card {
  border: none;
}

.other-equipe .card-title {
  display: block;
  min-height: 1.4em;
  line-height: 1.2em;
  font-size: 1.3em;
}

.other-equipe .card-body {
  border-radius: 0 !important;
  border: none;
}

.other-equipe .card {
  border-radius: 30px !important;
  border: 3px solid #4a7729;
}

.other-equipe img {
  border-radius: 30px;
  width: 90%;
}

.section-partenaire .card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px; /* Hauteur fixe mais ajustable selon le design */
  overflow: hidden; /* Cache tout débordement */
}

.section-partenaire .card-img img {
  max-width: 83%;
  max-height: 83%;
  width: auto;
  height: auto;
  object-fit: contain; /* Empêche la déformation et garde toute l'image visible */
}

.section-recette .card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 141px;
  padding: 116px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-repeat: no-repeat;
}

.section-partenaire .card-body,
.section-producteur .card-body {
  background-color: #f2f2f2;
}

.section-partenaire .card-body p {
  margin: 10px 5px;
  font-size: 1em;
  text-align: left;
}

.section-recette .card-body p,
.section-text .card-body p {
  margin: 7px 0;
  font-size: 1em;
  text-align: left;
  max-width: 100% !important;
}

.section-partenaire .btn-standard,
.section-producteur .btn-standard,
.section-recette .btn-standard {
  padding: 20px auto;
}

h3.ingredient {
  padding: 15px 40px 5px 40px !important;
}

@media only screen and (min-width: 993px) and (max-width: 1399px) {
  h3.ingredient {
    padding: 15px 40px 5px 40px !important;
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .section-producteur .card-body .producteur-adresse p {
    min-height: 3.6em !important;
    line-height: 1.2em !important;
  }

  h3.ingredient {
    padding: 15px 0 5px 0 !important;
    margin: 5px;
  }
}

@media only screen and (min-width: 455px) and (max-width: 767px) {
  h3.ingredient {
    padding: 15px 0 5px 0 !important;
    margin: 5px;
  }
}

@media only screen and (max-width: 454px) {
  .section-producteur .card-body .producteur-adresse p {
    min-height: 3.6em !important;
    line-height: 1.2em !important;
  }

  h3.ingredient {
    padding: 15px 0 5px 0 !important;
    margin: 5px;
  }
}

/* Formulaire */
.section-formulaire .information-inputs label {
  margin: 0 0 5px 0 !important;
}

.section-formulaire label {
  margin: -5px 5px;
}

.section-formulaire .small-input {
  width: 150px !important;
}

/* Style de base pour tous les checkboxes et radios */
#cookie-preferences input[type="radio"],
#cookie-preferences input[type="checkbox"] {
  appearance: none; /* Supprime le style par défaut */
  width: 18px;
  height: 18px;
  border-radius: 4px; /* Ajoute un léger arrondi */
  background-color: white;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: 2px solid #4a7729; /* Bordure par défaut (vert) */
}

/* Style lorsqu'ils sont cochés (par défaut : vert) */
#cookie-preferences input[type="radio"]:checked,
#cookie-preferences input[type="checkbox"]:checked {
  background-color: #66a738;
  border-color: #4a7729;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25);
}

/* Ajouter un check visible pour tous les checkboxes cochés */
#cookie-preferences input[type="checkbox"]::before {
  content: "✔"; /* Ajoute une coche */
  font-size: 14px;
  font-weight: bold;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; /* Caché par défaut */
}

/* Afficher la coche lorsque la case est cochée */
#cookie-preferences input[type="checkbox"]:checked::before {
  opacity: 1;
}

/* Désactiver la case à cocher */
#cookie-preferences input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
  background-color: #66a738 !important;
  border-color: #4a7729 !important;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25) !important;
}

input[type="radio"],
input[type="checkbox"] {
  border: 2px solid #4a7729 !important;
}

.section-formulaire fieldset:nth-child(odd) input[type="radio"]:checked,
.section-formulaire fieldset:nth-child(odd) input[type="checkbox"]:checked {
  background-color: gray !important;
  border-color: #111111 !important;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25) !important;
}

.section-formulaire fieldset:nth-child(odd) input[type="radio"],
.section-formulaire fieldset:nth-child(odd) input[type="checkbox"] {
  border: 2px solid #111111 !important;
}

.section-formulaire p {
  margin: 5px 0;
}

.section-formulaire .border-green {
  border: 3px solid #4a7729 !important;
}

.section-formulaire fieldset:nth-child(odd) {
  background-color: #4a7729;
  color: white;
}

.section-formulaire fieldset:nth-child(odd) label,
.section-formulaire fieldset:nth-child(odd) p,
.section-formulaire fieldset:nth-child(odd) a {
  background-color: #4a7729;
  color: #f2f2f2;
}

.section-formulaire fieldset:nth-child(even) {
  background-color: #f2f2f2;
}

.section-formulaire .mode-paiement label {
  width: 45%;
}

.section-formulaire .mode-paiement div {
  margin: 0;
  padding: 0;
}

.section-formulaire .paiement-form {
  margin: 0 5px;
}

.section-formulaire button {
  width: 25%;
  margin: 30px auto 10px auto !important;
}

.section-formulaire button:hover {
  color: #3f2021;
}

.section-formulaire ul {
  padding: 0;
}

.section-formulaire li {
  margin-left: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-formulaire .mode-paiement label {
    width: 43%;
  }

  .section-formulaire button {
    width: 245px;
    margin: 30px auto 10px auto !important;
  }
}

@media only screen and (max-width: 991px) {
  .section-formulaire .paiement-form {
    margin: 5px auto 0 auto;
    width: 50% !important;
  }

  .section-formulaire .mode-paiement {
    text-align: center;
  }

  .section-formulaire .mode-paiement label {
    width: 30%;
    margin-top: 5px;
  }

  .section-formulaire button {
    width: 245px;
    margin: 30px auto 10px auto !important;
  }
}

@media only screen and (max-width: 768px) {
  .form-check-input,
  .btn-check {
    width: 25px;
    height: 25px;
  }

  .form-check-label {
    margin: 4px 15px !important;
  }

  .form-check {
    display: flex;
    margin: 5px 0;
  }
}

/* Evenements */
#calendar {
  max-width: 1140px;
  margin: 50px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Fredoka", sans-serif;
}

.fc-event {
  color: white !important;
  border: none !important;
  padding: 5px;
  border-radius: 5px;
  opacity: 0.9;
}

.fc .fc-daygrid-day-number,
.fc .fc-col-header-cell-cushion {
  color: #000;
  text-decoration: none;
  font-size: 1em;
}

.fc .fc-col-header-cell-cushion {
  color: #4a7729;
  text-transform: capitalize;
}

a.fc-daygrid-event {
  font-size: 1.1em;
}

.fc .fc-toolbar-title {
  text-transform: capitalize;
}

.fc-daygrid-event {
  display: block;
}

#calendar button {
  margin: 0 5px 0 5px;
  padding: 9px !important;
  border: none;
  border-radius: 10px;
  background-color: #3f2021;
  box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.527);
}

.fc .fc-toolbar .fc-toolbar-chunk:nth-child(odd) {
  width: 30%;
}

/* Media */
.section-media .btn {
  margin: 15px 10px !important;
}

.section-media img,
.galerie-item {
  border-radius: 15px;
}

.section-media .swal2-close {
  font-size: 3em;
}

/* Dernière section */
.bottom-section {
  position: relative;
  padding-bottom: 160px !important;
  background-image: url("../img/bureau-carotte.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.benevole {
  position: relative;
  padding-bottom: 160px !important;
  background-image: url("../img/bureau-carotte.png"),
    url("../img/fond-feuille.png");
  background-size: contain, 109%; /* Remplit toute la largeur */
  background-position: bottom, center 40%;
  background-repeat: no-repeat;
}

/* Temoignages Tablette */
@media only screen and (max-width: 1520px) {
  .benevole {
    position: relative;
    padding-bottom: 160px !important;
    background-image: url("../img/bureau-carotte.png");
    background-size: contain; /* Remplit toute la largeur */
    background-position: bottom;
    background-repeat: no-repeat;
  }
}

/* Temoignages Pc */
@media only screen and (max-width: 1575px) {
  .section-comment {
    background-image: none;
  }
}

/* Dernière section Mobile */
@media only screen and (min-width: 834px) and (max-width: 992px) {
  .bottom-section {
    position: relative;
    padding-bottom: 265px !important;
    background-image: url("../img/mobile-carotte.png");
    background-size: contain; /* Ajuste l’image pour qu’elle colle bien */
    background-position: bottom;
    background-repeat: no-repeat;
  }
}

/* Dernière section Mobile */
@media only screen and (max-width: 835px) {
  .bottom-section {
    position: relative;
    padding-bottom: 220px !important;
    background-image: url("../img/mobile-carotte.png");
    background-size: contain; /* Ajuste l’image pour qu’elle colle bien */
    background-position: bottom;
    background-repeat: no-repeat;
  }
}

/* Credit */
.credit {
  margin: 5rem 0 0 0;
}

/* Footer */
footer {
  position: relative;
  overflow: visible;
  padding: 50px 20px 5px 20px;
  background-color: #3f2021;
  background-image: url("../img/footer-racine.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 68%;
  color: white;
}

footer p,
footer a {
  margin: 0;
  color: white;
}

footer a:hover {
  color: lightgray;
}

footer .footer-essentials p {
  margin-top: 5px;
}

h2.footer {
  text-transform: uppercase;
  text-align: left;
  font-size: 2em;
  color: #dbe442;
}

.mx-1 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

/* Footer Mobile */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  footer {
    background-size: 100%;
  }

  .mx-1 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .footer-info div {
    display: block;
    margin: auto;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    background-size: 100%;
  }

  .mx-1 {
    text-align: center !important;
  }

  h2.footer {
    text-align: center;
  }

  .footer-info {
    display: flex;
    justify-content: center;
    margin: auto;
  }

  footer div.logo a img {
    width: 230px !important;
    height: 230px !important;
  }
}

/* Personalisé */
.bold-text {
  font-family: "FredokaBold", sans-serif;
  font-weight: 900;
}

.brown-text {
  color: #3f2021;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

/* Bouton Et Popup */
.btn-standard,
.swal2-cancel {
  position: relative;
  z-index: 2;
  display: block;
  margin: 30px auto;
  border: 2px solid #3f2021 !important;
  border-radius: 15px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.466);
  background-color: #dbe442 !important;
  text-align: center;
  font-weight: bold;
  color: #3f2021 !important;
}

.btn-standard:hover,
.swal2-cancel:hover {
  transform: translate(3px, 3px) !important;
  box-shadow: 0px 0px 0px;
  border: 2px solid #3f2021 !important;
  background-color: #ebf358 !important;
  color: #3f2021 !important;
}

.button {
  text-decoration: none;
}

.btn-outline,
.swal2-confirm {
  position: relative;
  z-index: 2;
  display: block;
  margin: 30px 20px;
  border: 2px solid #dbe442;
  border-radius: 15px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.466) !important;
  background-color: #3f2021;
  text-align: center;
  font-weight: bold;
  color: #dbe442;
}

.btn-outline:hover,
.swal2-confirm:hover {
  transform: translate(5px, 5px) !important;
  box-shadow: 0px 0px 0px;
  border: 2px solid #dbe442;
  background-color: #4b2729;
  color: #dbe442;
}

button.btn-outline:active,
button.swal2-confirm:active {
  background-color: #4b2729;
}

.swal2-popup {
  border-radius: 15px !important;
}

.swal2-html-container {
  text-align: left !important;
}

.swal2-actions {
  margin: 0 auto;
  padding: 0 auto;
}

/* Swal2 */
.swal2-title {
  font-family: "FredokaBold", sans-serif;
  color: #000;
  font-weight: normal;
  text-transform: capitalize;
}

.swal2-html-container {
  font-family: "Fredoka", sans-serif;
}

/* Texte scrollable mobile */
.scrollable-text {
  overflow-y: auto;
  flex-grow: 1;
  max-height: 65%;
  margin-bottom: 25px !important;
}

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