@font-face {
  font-family: "Nasalization";
  src: url("/assets/fonts/Nasalization.otf") format("opentype");
}
@font-face {
  font-family: "Conthrax";
  src: url("/assets/fonts/Conthrax.otf") format("opentype");
}
@font-face {
  font-family: "Garet";
  src: url("/assets/fonts/Garet.otf") format("opentype");
}
@keyframes SlideLeft {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes SlideRight {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes Appear {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes Disappear {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
}
header a {
  transition-property: color;
  transition-duration: 250ms;
}
header a:hover {
  color: red;
}
header > img#imgResponsive {
  display: none;
  width: 48px;
  height: 48px;
  filter: invert(100%);
  margin-right: 16px;
}
header > a {
  color: white;
  text-decoration: none;
}
header > nav {
  margin-left: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header > nav > a {
  display: block;
  color: white;
  text-decoration: none;
  font-family: "Conthrax";
  font-size: 1.4em;
  margin-right: 22px;
}
header > img#imgGoToConnexion {
  display: block;
  width: 48px;
  height: 48px;
  margin-left: auto;
  filter: invert(100%);
}
header > a#linkToProfil {
  display: block;
  margin-left: auto;
}
header > a#linkToProfil > img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

div#container_menu_responsive {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 2;
  min-width: max-content;
  width: 30vw;
  max-width: 75vw;
  height: 100vh;
  background-color: black;
  color: white;
  transform: scaleX(0);
  transform-origin: left;
  padding: 16px;
}
div#container_menu_responsive > * {
  margin-bottom: 8px;
}
div#container_menu_responsive > img {
  display: block;
  width: 32px;
  height: 32px;
  filter: invert(100%);
  margin-left: auto;
}
div#container_menu_responsive > nav > a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  font-family: "Conthrax";
  font-size: 1.4em;
}

@media all and (max-width: 767px) {
  header > img#imgResponsive {
    display: block;
  }
  header > img#imgGoToConnexion {
    display: none;
  }
  header > nav {
    display: none;
  }
  header > a > img {
    display: none;
  }
}
footer {
  padding: 16px;
}
footer > p {
  text-align: center;
  color: white;
}
footer > nav {
  margin-top: 24px;
}
footer > nav > a {
  display: block;
  color: white;
  text-decoration: none;
  text-align: center;
  margin-bottom: 6px;
  transition-property: color;
  transition-duration: 250ms;
}
footer > nav > a:hover {
  color: red;
}

* {
  padding: 0px;
  margin: 0px;
}

body {
  background-image: url("/assets/img/illustrations/bg1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

div.infoMessage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  position: fixed;
  top: 0%;
  z-index: 2;
  box-sizing: border-box;
}
div.infoMessage > p {
  width: max-content;
  margin: 0px auto;
  color: white;
  margin: 14px;
  padding: 8px 14px;
  border-radius: 6px;
}

main {
  padding: 0px 16px;
}

select {
  appearance: base-select;
}

h1 {
  font-family: "Nasalization";
  font-size: 2.6em;
  color: white;
}

h2, h3 {
  font-family: "Conthrax";
}

p, button, input, a, label, textarea, td, th, select, option, pre {
  font-family: "Garet";
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  h1 {
    font-size: 2.3em;
  }
}
@media all and (max-width: 767px) {
  h1 {
    font-size: 2em;
  }
}
main > section {
  width: 50%;
  margin: 14px auto;
  color: white;
}
main > section > h2 {
  text-align: center;
  margin-bottom: 14px;
}
main > section > table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 3px solid white;
  margin: 8px 0px;
}
main > section > table > thead {
  border-bottom: 3px solid white;
}
main > section > table td, main > section > table th {
  padding: 6px 12px;
}
main > section > address {
  font-style: normal;
  margin: 8px 0px;
}
main > section a {
  text-decoration: none;
}
main > section > p {
  margin-bottom: 10px;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  main > section {
    width: 80%;
  }
}
@media all and (max-width: 767px) {
  main > section {
    width: 100%;
  }
}

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