@keyframes defiler {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.bandeau-defilant {
  position: relative;
  width: 100%;
  height: 50px;
  white-space: nowrap;
  line-height: 50px;
  background-color: transparent;
  animation: defiler 10s linear infinite;
  color: #000;
  font-weight: bold;
  font-size: 30px;
  font-family: "Grandstander", cursive;
  text-align: center;
}
.conteneur-bandeau {
  width: 100%;
  overflow: hidden;
  height: 50px;
}

input {
  color: black !important;
}

/* Chrome, Opera, Safari, Edge */
input::placeholder {
  color: black;
  opacity: 1;
}

/* Firefox */
input:-moz-placeholder {
  color: black;
  opacity: 1;
}

/* Internet Explorer */
input:-ms-input-placeholder {
  color: black;
}

/* Old Firefox */
input::-moz-placeholder {
  color: black;
  opacity: 1;
}

canvas {
  margin-bottom: 50px;
}

.bg-custom-v {
  background-color: #c3e1d0;
}
.bg-custom-b {
  background-color: #b4dee5;
}
.font-personal {
  font-family: "Grandstander", cursive;
}
.font-personal-bold {
  font-weight: 700;
  font-family: "Grandstander", cursive;
}
.text-footer {
  font-family: "Grandstander", cursive;
  font-size: 20px;
}
.txt-large {
  font-size: 48px;
  font-weight: bold;
}
h2 {
  font-family: "Grandstander", cursive;
  font-weight: 800;
}
a {
  text-decoration: none;
  color: #6b08ec;
}
.image25 {
  margin-left: auto;
  margin-right: auto;
  width: 25%;
  height: auto;
}
.image33 {
  margin-left: auto;
  margin-right: auto;
  width: 33%;
  height: auto;
}
.image50 {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  height: auto;
}
.image80 {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: auto;
}
.image-section {
  max-width: 100%;
  height: auto;
}
.section-separator-vb {
  height: 100px;
  background: url("../media/sectvb.png") no-repeat center center;
  background-size: cover;
}
.section-separator-bv {
  height: 100px;
  background: url("../media/sectbv.png") no-repeat center center;
  background-size: cover;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger .line {
  background-color: black;
  height: 2px;
  border-radius: 2px;
  transition: all 0.3s;
}

#menu-toggle {
  background: none;
  /* Supprime le fond */
  border: none;
  /* Supprime le contour */
  cursor: pointer;
  padding: 0;
  /* Optionnel : Réduit l'espace autour */
  margin: 0;
}

#menu-toggle:focus {
  outline: none;
  /* Supprime le contour de focus */
}

.menu-open .line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-open .line:nth-child(2) {
  opacity: 0;
}

.menu-open .line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

#menu {
  transition: all 0.3s;
  background-color: inherit;
  flex-direction: column;
  position: absolute;
  right: 10px;
  top: 100px;
  display: none;
  z-index: 1000;
  align-items: flex-end;
  padding: 10px;
}

#menu.open {
  display: flex !important;
  background-color: #b4dee5;
  border-radius: 5%;
  border-color: #000;
  border-width: 5px; /* Remplacez 5px par l'épaisseur souhaitée */
  border-style: solid; /* Assurez-vous d'ajouter un style de bordure, comme solid */
}


#menu a {
  padding: 10px 0;
  text-align: right;
  color: black;
  display: block;
}

/* Afficher le menu classique pour les écrans md et plus */
@media (min-width: 768px) {
  #menu {
    display: flex !important;
    position: static;
    flex-direction: row;
  }
}

footer.footer {
  margin-top: auto;
  width: 100%;
}
