:root {
  --bleu: #4e4f87;
  --vert: #7C8458;
  --orange: #ED891D;
  --back: #FFFFFF;
  --border-color: #f3f3f3;
  --text-header: #747b7f;
}

@font-face {
  font-family: "Aller";
  src: url("https://finorga.legconcept.fr/font/Aller_Std_Rg.ttf");
}
@font-face {
  font-family: "Aller-light";
  src: url("https://finorga.legconcept.fr/font/Aller_Std_Lt.ttf");
}
@font-face {
  font-family: "Archivo";
  src: url("https://finorga.legconcept.fr/font/Archivo-Regular.ttf");
}
html {
  font-size: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
html body {
  margin: 0;
  font-size: 0.8em;
  font-family: "Archivo";
}
html body > .centre {
  position: relative;
  background-color: var(--back);
  border-top: none;
  border-bottom: none;
}
html body > .centre > header {
  height: 60px;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: var(--border-color);
  box-sizing: border-box;
  padding: 10px;
  display: flex;
}
html body > .centre > header > ul {
  list-style: none;
  display: flex;
  gap: 20px;
  color: var(--text-header);
}
html body > .centre > header > ul > li {
  display: flex;
  gap: 5px;
}
html body > .centre > header > ul > li > span {
  align-self: center;
  margin-top: 5px;
  font-size: 1.2em;
}
html body > .centre > header > ul > li > img {
  height: 15px;
}
html body > .centre > nav {
  width: 100%;
  height: 60px;
  font-size: 16px;
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: 0px 30px;
  box-sizing: border-box;
}
html body > .centre > nav > ul {
  margin: 0px;
  padding: 0px;
  height: 100%;
  list-style: none;
  background-color: var(--back);
  position: relative;
  z-index: 10;
  display: flex;
}
html body > .centre > nav > ul > li {
  display: flex;
  padding: 0px 10px;
}
html body > .centre > nav > ul > li > a {
  align-self: center;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
html body > .centre > nav > ul > li.select > a {
  color: var(--bleu);
}
html body > .centre > nav > div {
  display: flex;
  align-items: center;
}
html body > .centre > nav > div > img {
  height: 40px;
}