/*
Comment everything not useful for the current project
*/
/* --- Base --- */
/* --- * --- */
* {
  box-sizing: border-box; }

/* --- Body --- */
body {
  margin: 0;
  background-color: #fff; }

/*Font-face declaration example*/
html {
  font-size: 62.5%;
  /* 10px */
  font-size: calc(1em * 0.625);
  /* fix */ }

body {
  font-family: "filson-pro", Arial, sans-serif, Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.25; }

/* --- Layout --- */
.wrapper {
  margin: 0 auto;
  max-width: 990px;
  width: 100%; }

@media (max-width: 990px) {
  .wrapper {
    padding: 0 20px;
    width: 100%; } }
header {
  padding: 2rem 0;
  background-color: #2A3B98; }
  header .wrapper {
    display: flex;
    justify-content: space-between; }
    header .wrapper > div {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      max-width: 70%; }
  header h1 {
    margin-bottom: 0; }
  header .logo {
    width: 20rem; }
  header h2 {
    font-size: 3.2rem;
    color: #FFDE00;
    font-weight: 800; }
    header h2 span {
      display: block;
      font-size: 80%;
      font-weight: 500; }
  header nav {
    text-align: right; }
    header nav,
    header nav a {
      color: #fff; }
    header nav a:hover {
      color: #FFDE00; }
    header nav img {
      width: 3.2rem; }
  @media (max-width: 990px) {
    header .wrapper {
      display: block;
      text-align: center; }
      header .wrapper > div {
        margin-top: 3rem;
        max-width: 100%; }
    header nav {
      margin-top: 3rem;
      text-align: center; } }

footer {
  display: flex;
  align-items: flex-end;
  min-height: 30rem;
  padding-bottom: 3rem;
  background-color: #2A3B98;
  background: #FFDE00 url(../img/footer-bg.svg) top 3rem center no-repeat;
  background-size: cover; }
  footer button {
    color: #fff;
    font-size: 1.4rem; }

.mentions {
  font-size: 1.4rem;
  overflow: scroll; }
  .mentions h2 {
    font-size: 2.4rem; }
  .mentions h3 {
    margin-top: 1.6rem;
    font-size: 1.8rem; }

body.is-active {
  overflow: hidden; }

main > section {
  padding: 3rem 0;
  background-color: #FFDE00;
  border: 8px solid #2A3B98; }
  main > section:nth-child(even) {
    background-color: #2A3B98;
    border-color: #FFDE00; }
    main > section:nth-child(even),
    main > section:nth-child(even) a {
      color: #fff; }

/* --- Components --- */
/* --- Nav --- */
nav a {
  text-decoration: none; }

h2 {
  font-size: 4rem; }

h3 {
  font-size: 2.6rem; }

ol,
ul {
  margin: 20px 0;
  padding-left: 0; }

ul {
  list-style-type: none; }
  ul ul {
    margin-left: 20px; }

/* Forms */
input,
textarea,
select,
button {
  font-size: 1em;
  vertical-align: middle; }

/* Labels */
label {
  display: block; }

/* Inputs */
input,
textarea,
select {
  padding: 10px;
  width: 100%;
  border: 1px solid #2A3B98; }

[type="radio"] + label,
[type="checkbox"] + label {
  display: inline-block; }

/* Textarea */
textarea {
  resize: vertical; }

input[type="submit"],
button {
  cursor: pointer; }

button {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer; }

#qui .wrapper > h3 {
  margin-top: 3.2rem;
  margin-bottom: 1.6rem; }
#qui .video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0; }
#qui .video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute; }
#qui ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 2rem;
  margin-bottom: 0; }
#qui li:first-of-type {
  grid-column: 2 / 4; }
#qui li h3 {
  min-height: 6rem;
  margin-bottom: 0;
  padding: 0 .4rem;
  font-size: 2rem;
  text-align: center;
  background-color: #fff; }
#qui li img {
  max-width: 100%;
  border: 8px solid #fff; }
#qui .bordered {
  margin-top: 3.2rem;
  padding: 3.2rem;
  border: 8px solid #2A3B98; }
  #qui .bordered img {
    margin-bottom: 1.6rem; }
  #qui .bordered span,
  #qui .bordered strong {
    display: inline-block;
    padding: .8rem;
    background-color: #fff; }
@media (max-width: 990px) {
  #qui ul {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #qui li:nth-of-type(2) {
    display: none; }
  #qui li:first-of-type {
    grid-column: 1 / 3;
    text-align: center; } }
@media (max-width: 580px) {
  #qui ul {
    grid-template-columns: minmax(0, 1fr); }
  #qui li:first-of-type {
    grid-column: 1 / 2; } }

.dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.75);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease-out; }
  .dialog.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto; }
  .dialog-container {
    width: 100%;
    max-width: 77rem;
    margin: auto;
    transform: translateY(-1em) scale(0.95);
    background-color: white;
    transition: transform .25s ease-out; }
  .dialog.is-active .dialog-container {
    transform: translateY(0) scale(1); }
  .dialog-header {
    padding: .8rem 2rem 0;
    text-align: right;
    background-color: #fff; }
    .dialog-header button {
      padding: .8rem;
      color: #FFDE00;
      background-color: #2A3B98;
      border: none; }
  .dialog-content {
    padding: 2rem;
    font-size: 1.6rem; }
  .dialog-trigger {
    padding: 0;
    overflow: hidden;
    border: none;
    background: none; }
    .dialog-trigger:hover, .dialog-trigger:focus {
      text-decoration: none; }
  .dialog a {
    color: #2A3B98; }

#programme img {
  width: 8rem; }
#programme h3 {
  color: #FFDE00; }
#programme ul > li:not(:first-of-type) {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #FFDE00; }
#programme ul > li > div {
  display: flex;
  align-items: center; }
  #programme ul > li > div img {
    margin-right: 2rem; }
#programme ol {
  margin-bottom: 3.2rem;
  padding-left: 2.2rem; }
  #programme ol + a {
    display: flex;
    align-items: center; }
    #programme ol + a::before {
      content: '';
      flex-shrink: 0;
      display: block;
      width: 2.4rem;
      height: 2.4rem;
      margin-right: 1.2rem;
      background: url(../img/icon-document.svg) 0 0 no-repeat;
      background-size: contain; }
@media (max-width: 990px) {
  #programme ol + a::before {
    align-self: flex-start; } }

#contact ul {
  margin-bottom: 0; }
#contact li:not(:first-of-type) {
  margin-top: 2rem; }
#contact button {
  padding: 1.2rem;
  color: #fff;
  background-color: #2A3B98;
  border: 1px solid #000; }
#contact .form-error-message {
  margin-top: .8rem;
  font-size: 1.4rem;
  color: #2A3B98; }
  #contact .form-error-message img {
    width: 2.4rem; }
#contact .form-button-error {
  margin-top: 2.4rem;
  color: #2A3B98; }

.merci {
  text-align: center; }

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