.fondVertSombre {
  background-color: #005D31;
}

.fondVertClair {
  background-color: #9ED8A4;
}

.fondCanard {
  background-color: #65BBA7;
}

.fondBleuCiel {
  background-color: #AEE6F4;
}

.fondBlanc {
  background-color: #FFFFFF;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2%;
}
header picture img {
  max-width: 100px;
}
header h2 {
  font-family: "pacifico, sans-serif";
  font-size: 3rem;
  color: #FFFFFF;
}
header .connect a {
  font-family: "inter, sans-serif";
  color: white;
  font-size: 1rem;
  text-decoration: none;
}

nav {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 20px;
}
nav .breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
nav .breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
}
nav .breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: #999;
  font-weight: normal;
}
nav .breadcrumb li[aria-current=page] {
  color: #333;
  font-weight: 500;
}
nav .breadcrumb li[aria-current=page]::after {
  content: none;
}
nav .breadcrumb a {
  text-decoration: none;
  color: #0066cc;
  transition: color 0.2s ease;
}
nav .breadcrumb a:hover {
  color: #004499;
  text-decoration: underline;
}
nav .breadcrumb ul {
  display: flex;
  flex-direction: row;
  width: 860px;
  height: 70px;
  border-radius: 30px;
  justify-content: space-between;
}
nav .burger {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 5px;
  width: 80px;
  height: 40px;
  border-radius: 10px;
}
nav .menuPrincipal {
  display: none;
  border-radius: 30px;
  padding: 10px;
}
nav .menuPrincipal.display {
  display: block;
  position: absolute;
  right: 110px;
  z-index: 99999;
}
nav .menuPrincipal li {
  border-radius: 20px;
  padding: 5px 10px;
  margin: 15px;
  box-shadow: 3px 3px black;
  list-style: none;
}
nav .menuPrincipal li a {
  text-decoration: none;
  color: black;
}
nav .menuPrincipal li:hover {
  box-shadow: 5px 5px black;
}

@media screen and (min-width: 800px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  nav .burger {
    display: none;
  }
  nav .menuPrincipal {
    display: flex;
    flex-direction: row;
    width: 860px;
    height: 70px;
    border-radius: 30px;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    padding: 0 20px;
    margin: 0 0 20px 0;
  }
  nav .menuPrincipal li {
    border-radius: 20px;
    padding: 5px 10px;
    box-shadow: 3px 3px black;
  }
  nav .menuPrincipal li a {
    text-decoration: none;
    color: black;
  }
  nav .menuPrincipal li:hover {
    box-shadow: 5px 5px black;
  }
}
#footerNav {
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 10px;
}
#footerNav p {
  font-family: "inter, sans-serif";
  color: white;
  font-size: 1rem;
}
#footerNav p a {
  font-family: "inter, sans-serif";
  color: white;
  font-size: 1rem;
  text-decoration: none;
}
#footerNav ul {
  display: flex;
  flex-direction: row;
}
#footerNav ul li {
  list-style-type: none;
  margin: 5px;
}
#footerNav ul li a {
  font-family: "inter, sans-serif";
  color: white;
  font-size: 1rem;
  text-decoration: none;
}

.notification-popup {
  position: fixed;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #9ED8A4;
  color: black;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 400px;
  font-family: "inter, sans-serif";
  color: black;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
}
.notification-popup.show {
  opacity: 1;
  visibility: visible;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#asso {
  padding: 120px 80px;
}
#asso article {
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  padding: 120px;
}
#asso article h1, #asso article h2 {
  text-align: center;
}
#asso article p {
  margin: 10px 0 30px;
}
#asso article ul {
  list-style-type: none;
  padding-bottom: 30px;
  padding-left: 30px;
}

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