@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
img {
  width: 100%;
}

body {
  background-color: #fbfaf9;
  font-family: "Lato";
  margin: 0;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  transition: all 0.5s ease;
}
.navigation .logo {
  width: 140px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.navigation .nav {
  width: 100%;
}
.navigation .nav ul {
  list-style-type: none;
}
.navigation .nav ul li {
  width: 25%;
  text-align: center;
  position: relative;
}
.navigation .nav ul::after {
  content: "";
  display: table;
  clear: both;
}
.navigation .nav a {
  display: block;
  text-decoration: none;
  color: black;
  border-bottom: 2px solid transparent;
  padding: 10px 0px;
}
.navigation .nav .sous {
  display: none;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  z-index: 1000;
  width: 100%;
  top: 100%;
  left: 0;
  padding: 0;
}
.navigation .nav .sous li {
  width: 100%;
  text-align: left;
}
.navigation .nav .sous a {
  padding: 10px 20px;
  font-weight: 500;
  border-bottom: none;
}
.navigation .nav .sous a:hover {
  border-bottom: none;
  background-color: rgba(200, 200, 200, 0.4);
}
.navigation .nav .menu {
  flex: none;
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: space-around;
  text-transform: uppercase;
}
.navigation .nav .menu .items {
  border-right: 1px solid black;
  padding: 5px 20px;
  cursor: pointer;
  font-size: 14px;
}
.navigation .nav .menu .items:hover {
  font-weight: 900;
}
.navigation .deroulant:hover .sous {
  display: block;
}

.navigation.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navigation.scrolled .logo {
  width: 80px;
  margin-bottom: 5px;
}

.h1 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 45px;
  padding: 15px;
  text-align: center;
}

.h2 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 35px;
  padding-bottom: 10px;
  color: rgb(165, 136, 34);
}

.groupemots {
  white-space: nowrap;
}

.texte {
  text-align: center;
  width: 50%;
  font-size: 16px;
  padding-bottom: 15px;
}

.titre-page-divers {
  font-size: 60px;
  font-weight: 300;
  text-transform: uppercase;
}

.sous-titre-page-divers {
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  color: white;
  font-style: oblique;
}

.ZONE-MARGIN-SECTION {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ZONE-EDITABLE {
  max-width: 1200px;
  flex: none;
  width: 100%;
}

.ESPACE-SECTION {
  margin-top: 55px;
}

.btn-basic {
  color: rgb(165, 136, 34);
  cursor: pointer;
  font-weight: 300;
  text-align: center;
}
.btn-basic:hover {
  text-decoration: underline;
}

.bordure-dorer {
  width: 50%;
  border-bottom: 1px solid rgba(165, 136, 34, 0.29);
}

.citation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.citation .guillemet-gauche,
.citation .guillemet-droite {
  width: 30px;
  padding-top: 70px;
}
.citation .guillemet-gauche {
  rotate: 180deg;
}
.citation .texte-citation {
  width: 70%;
  padding: 10px;
}

footer {
  border-top: 1px solid rgb(228, 228, 228);
  padding-top: 40px;
}
footer .pied-page {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
footer .pied-page .titre-pied-page {
  text-transform: uppercase;
  font-size: 12px;
  padding-bottom: 7px;
  font-weight: 500;
}
footer .pied-page ul {
  padding: 0;
}
footer .pied-page ul li {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
  list-style-position: inside;
}
footer .pied-page ul li::marker {
  color: rgb(165, 136, 34);
}
footer .pied-page .contact-pied-page {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
footer .mention-legales {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 30px;
  border-top: 1px solid rgb(228, 228, 228);
  font-size: 13px;
}/*# sourceMappingURL=commun.css.map */