/* ===== Style de base pour tout le site ===== */
:root {
  --blue: rgb(100, 155, 199);
  --dark-blue: rgb(70, 110, 145);
  --blue-light: rgba(100, 155, 199, 0.15);
  --grey: #828282;
  --light-grey: #ececec;
  --dark-text: rgb(40, 40, 40);
  --legal-blue: rgb(60, 100, 140);
  --disabled-blue: #7baedc;
  --white: #ffffff;
  --text: rgb(40, 40, 40);
  --border: rgba(100, 155, 199, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* =========== Soulignage =========== */
.section-header {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.style3 {
  padding-bottom: 1px;
}

.section-header.style3:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  margin: 0 auto;
  height: 1px;
  width: 95%;
  max-width: 200px;
  background-color: rgb(50, 80, 120);
}

.section-header.style3:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  height: 5px;
  width: 55px;
  background-color: rgb(50, 80, 120);
  z-index: 1;
}
/* ========= Fin Soulignage ========= */


/* Animation vague */
.waves > use {
  animation: move-forever 2s -2s linear infinite;
}
.waves > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 6s;
}
.waves > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 3s;
}
@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}