.background-Footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Couleur noire avec une opacité de 0.5 */
}

.positionRelative {
  position: relative;
}

.footerTitle {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  text-align: center;
  font-size: 16px;
}

.footerTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background-color: #c39e36;
}

.footerTitle::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 2px;
  z-index: 1;
}

.background-Footer a {
  color: #fff !important;
}

.background-Footer a:hover {
  color: #c39e36 !important;
  text-decoration-line: underline !important;
  text-decoration-style: solid !important;
  text-decoration-color: #c39e36 !important;
}

.linearColor {
  color: linear-gradient(45deg, #c39e36, white);
}

.background-Footer {
  position: relative;
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  background-color: #000 !important;
}