@charset "UTF-8";
:root {
  --p-color: #0f1927;
  --s-color: #FFFFFF;
  --back-dark-color: #0f1927;
  --bleu: #4470B4;
  --orange: #DC911B;
  --vert: #6AA842;
}

/* from… */
/* to… */
/* from… to… */
/* at… */
header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  background-color: var(--s-color);
  transition: all 0.5s ease-in-out;
}
header::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  height: 1px;
  width: 0;
  bottom: 0;
  border-bottom: thin solid var(--p-color);
  transition: all 0.5s ease-out;
  opacity: 0;
}
header > h1 {
  letter-spacing: 10pt;
}
header div#logo {
  width: 100%;
}
header div#logo > img {
  width: 150px;
  margin: 0;
  margin-top: 30px;
  margin-left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-out;
}
header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
header nav ul > li {
  padding: 10px;
}
header nav ul > li > a {
  text-decoration: none;
  color: var(--p-color);
  letter-spacing: 2pt;
  font-size: 1.1em;
  font-weight: 300;
}
header nav ul > li > a:hover {
  font-weight: 700;
}
header.header-alt {
  flex-direction: row;
  justify-content: left;
  gap: 50px;
  height: 100px;
}
header.header-alt::after {
  width: 100%;
  opacity: 1;
}
header.header-alt > h1 {
  margin: 0;
  height: 0;
  overflow: hidden;
  display: none;
}
header.header-alt > div#logo {
  width: 100px;
}
header.header-alt > div#logo > img {
  margin-left: 20px;
  transform: translateX(0);
  width: 100px;
  margin-top: 0;
}

footer {
  background-color: var(--back-dark-color);
  min-height: 200px;
  padding: 50px;
  width: 100%;
  display: flex;
}
footer > #lien-agence {
  width: 160px;
  text-align: right;
}
footer > #logo-footer {
  width: 100px;
  position: relative;
}
footer > #logo-footer > img {
  width: 80%;
}
footer a {
  text-decoration: none;
  color: var(--s-color);
  background-color: var(--orange);
  padding: 10px 30px;
  padding-left: 40px;
  border-radius: 10px;
  font-variant: small-caps;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}
footer a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 10px;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
footer a.tel::after {
  background-image: url(/icones/phone2.svg?color=FFFFFF);
}
footer a.mail::after {
  background-image: url(/icones/mail1.svg?color=FFFFFF);
}

html {
  font-size: 100%;
  font-family: "Roboto", sans-serif;
}
html body {
  margin: 0;
  font-size: 0.8em;
  color: var(--p-color);
}
html body * {
  box-sizing: border-box;
}
html body main {
  font-size: 1em;
  min-height: 1000px;
  padding-top: 212px;
}
html body h1 {
  font-weight: 400;
  font-size: 2.5em;
}