@font-face {
  font-family: "Mama";
  src: url("/assets/fonts/Mama.ttf") format("truetype");
}
@font-face {
  font-family: "BebasNeue";
  src: url("/assets/fonts/BebasNeue.ttf") format("truetype");
}
@font-face {
  font-family: "BabelSans";
  src: url("/assets/fonts/BabelSans.ttf") format("truetype");
}
@font-face {
  font-family: "Kenyan";
  src: url("/assets/fonts/Kenyan.otf") format("opentype");
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto.ttf") format("truetype");
}
@keyframes LinkHeaderTurn {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(4deg);
  }
}
@keyframes LinkHeaderUnTurn {
  from {
    transform: rotateZ(4deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}
@keyframes ImgMenuResponsiveTurn {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(90deg);
  }
}
@keyframes ImgMenuResponsiveUnTurn {
  from {
    transform: rotateZ(90deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}
@keyframes ShowBoxResponsive {
  from {
    transform: scaleX(0%);
  }
  to {
    transform: scaleX(100%);
  }
}
@keyframes HideBoxResponsive {
  from {
    transform: scaleX(100%);
  }
  to {
    transform: scaleX(0%);
  }
}
@keyframes ShowInfoMessage {
  from {
    transform: scale(0%);
  }
  to {
    transform: scale(100%);
  }
}
@keyframes HideInfoMessage {
  from {
    transform: scale(100%);
  }
  to {
    transform: scale(0%);
  }
}
@keyframes AppearFromTop {
  from {
    transform: scaleY(0%);
  }
  to {
    transform: scaleY(100%);
  }
}
@keyframes DisappearFromTop {
  from {
    transform: scaleY(100%);
  }
  to {
    transform: scaleY(0%);
  }
}
@keyframes Appear {
  from {
    transform: scale(0%);
  }
  to {
    transform: scale(100%);
  }
}
@keyframes Turn360 {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes AppearToRight {
  from {
    transform: scaleX(0%);
  }
  to {
    transform: scaleX(100%);
  }
}
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 14px 24px;
  background-image: url("/assets/images/webp/schizoquoi-bg5.webp");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
header > img:first-of-type {
  display: none;
  width: 48px;
  height: 48px;
  margin-right: 24px;
  filter: invert(100%);
}
header > a {
  display: block;
  text-decoration: none;
  margin-right: 24px;
}
header > a > h1 {
  color: white;
}
header > nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
}
header > nav > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
header > nav > ul > li {
  display: block;
  list-style: none;
  margin-right: 16px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header > nav > ul > li > a {
  text-decoration: none;
  color: white;
  font-family: "BebasNeue";
  font-size: 1.6em;
  transform-origin: center;
  transition-property: text-shadow;
  transition-duration: 200ms;
}
header > nav > ul > li > a:hover {
  border-bottom: 3px solid white;
  animation: 200ms ease-in-out forwards LinkHeaderTurn;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}
header > nav > ul > li > a:not(:hover) {
  animation: 200ms ease-in-out forwards LinkHeaderUnTurn;
}
header > nav > ul > li:last-of-type > a {
  border: 3px solid white;
  border-radius: 24px;
  padding: 8px 18px;
  transition-property: box-shadow;
  transition-duration: 200ms;
}
header > nav > ul > li:last-of-type > a:hover {
  text-shadow: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}
header > nav > ul > li:first-of-type {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
header > nav > ul > li:first-of-type > img {
  display: block;
  width: 32px;
  height: 32px;
  filter: invert(100%);
  margin-left: 6px;
}
header > nav > a {
  display: block;
}
header > nav > a > img {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

@media all and (max-width: 1199px) {
  header > img:first-of-type {
    display: block;
  }
  header > nav {
    display: none;
  }
}
footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 14px 24px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
  background-image: url("/assets/images/webp/schizoquoi-bg5.webp");
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
footer > p {
  width: 100%;
  text-align: center;
  color: white;
  font-family: "BabelSans";
  margin-bottom: 12px;
  font-size: 1.3em;
}
footer li {
  list-style: none;
}
footer > ul:not(:first-of-type) {
  width: max-width;
  margin: 0px 16px 0px 16px;
}
footer > ul:not(:first-of-type) > li > a {
  text-decoration: none;
  color: white;
  font-family: "BebasNeue";
  font-size: 1.3em;
}
footer > ul:not(:first-of-type) > li > a:hover {
  text-decoration: underline;
}
footer > ul:not(:first-of-type) > li:not(:last-of-type) {
  margin-bottom: 6px;
}
footer > ul:first-of-type {
  width: 100%;
  margin-bottom: 12px;
}
footer > ul:first-of-type > li > a > img {
  display: block;
  width: 32px;
  height: 32px;
  filter: invert(100%);
  margin: 0px auto;
}

@media all and (max-width: 767px) {
  footer {
    flex-direction: column;
  }
  footer > ul {
    max-width: 100%;
    text-align: center;
    margin: 0px 0px 12px 0px;
  }
  footer > ul:nth-of-type(2), footer ul:nth-of-type(3) {
    margin-bottom: 24px;
  }
}
* {
  padding: 0px;
  margin: 0px;
}

main {
  padding: 12px 24px;
}

nav.navDropDownSchizo {
  position: absolute;
  top: 100%;
  left: 0%;
  width: max-content;
  height: max-content;
  background: linear-gradient(to bottom right, #230462, #470B63);
  padding: 12px;
  z-index: 3;
  border-radius: 12px;
  border: 3px solid white;
}
nav.navDropDownSchizo > ul > li {
  list-style: none;
  margin-bottom: 8px;
}
nav.navDropDownSchizo > ul > li > a {
  font-family: "BebasNeue";
  font-size: 1.6em;
  text-decoration: none;
  color: white;
}
nav.navDropDownSchizo > ul > li > a:hover {
  text-decoration: underline;
}

div.boxMessage {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  top: 0%;
  left: 0%;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
}
div.boxMessage > p {
  font-family: "BabelSans";
  font-size: 1.3em;
  color: white;
  margin: 12px;
  border-radius: 12px;
  width: max-content;
  max-width: 100%;
  padding: 12px;
}

div#boxMenuResponsive {
  position: fixed;
  top: 0%;
  left: 0%;
  width: max-content;
  transform-origin: left;
  max-width: 80vw;
  height: 100vh;
  background: linear-gradient(to bottom right, rgba(35, 4, 98, 0.7), rgba(71, 11, 99, 0.7));
  backdrop-filter: blur(6px);
  padding: 24px;
}
div#boxMenuResponsive > img {
  display: block;
  width: 48px;
  height: 48px;
  filter: invert(100%);
  margin-left: auto;
  margin-bottom: 12px;
}
div#boxMenuResponsive > nav > ul > li {
  list-style: none;
  margin-bottom: 12px;
}
div#boxMenuResponsive > nav > ul > li > a {
  display: block;
  text-decoration: none;
  font-family: "BebasNeue";
  font-size: 1.6em;
  color: white;
}
div#boxMenuResponsive > nav > ul > li > img {
  display: none;
}
div#boxMenuResponsive > nav > ul > li:last-of-type > a {
  border: 3px solid white;
  border-radius: 24px;
  padding: 8px 18px;
  transition-property: box-shadow;
  transition-duration: 200ms;
  width: max-content;
}
div#boxMenuResponsive > nav > ul > li:last-of-type > a:hover {
  text-shadow: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}
div#boxMenuResponsive > nav > a > img {
  max-width: 128px;
  max-height: 128px;
  border-radius: 50%;
}

h1 {
  font-family: "Mama";
  font-size: 2.6em;
}

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

h2 {
  font-size: 2.1em;
}

h3 {
  font-size: 1.7em;
}

p, label, input, textarea, li, pre, td, th {
  font-family: "BabelSans";
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

main > section {
  width: 50%;
  margin: 0px auto;
}
main > section > h2,
main > section h3 {
  text-align: center;
  font-family: "BebasNeue";
  color: #230462;
}
main > section > div:first-of-type {
  width: 200px;
  height: 10px;
  margin: 8px auto 12px auto;
  background-color: black;
  border-radius: 24px;
  background: linear-gradient(to right, #230462, #470B63);
}
main > section > p {
  font-family: "BabelSans";
  margin-bottom: 12px;
  font-size: 1.2em;
}
main > section > p > a {
  text-decoration: none;
  color: #230462;
  font-weight: bold;
}
main > section > p > a:hover {
  text-decoration: underline;
}
main > section > p.txt-danger {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 12px;
  padding: 12px;
  color: white;
  font-weight: bold;
  background: linear-gradient(to right, #230462, #470B63);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}
main > section > p.txt-danger > img {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  filter: invert(100%);
}
main > section > img {
  display: block;
  width: 100%;
  border-radius: 24px;
}
main > section > ul {
  text-align: center;
}
main > section > ul > li {
  display: block;
  list-style: none;
}
main > section > ul > li > a {
  font-family: "BabelSans";
  text-decoration: none;
  color: purple;
  font-size: 1.2em;
}
main > section > ul > li > a:hover {
  text-decoration: underline;
}
main > section > ul > li > a:not(:last-of-type) {
  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%;
    margin: 0px;
  }
}
main > section > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  main > section > ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 767px) {
  main > section > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

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