@charset "UTF-8";
/*--- bases ---*/
/*variable*/
:root {
  --rouge: hsl(10, 79.7%, 44.5%);
  --rougeHover:hsl(10, 70.7%, 40.5%);
  --gris: hsl(0, 7%, 16.9%);
  --gris2: hsl(240, 4%, 14.7%);
  --grisPale: hsl(0, 0%, 26%);
  --noir: hsl(0, 0%, 0%);
  --fondGris: hsl(0, 0%, 97%);
}

/*////[Reset du code HTML]
________________________________________________________*/
/*[Le document en général]*/
html {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  scroll-behavior: smooth;
}

/*[Affecte tous les enfants]*/
*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

/*[Reset des liens]*/
a, a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/*[Reset des listes à l'intérieur d'un nav]*/
nav ul {
  list-style: none;
}

img {
  display: block;
}

.invisible {
  display: none !important;
}

/*////[Mixin multiple breakpoint]
________________________________________________________*/
/*--- interface ---*/
/*////[Grille mobile]
________________________________________________________*/
div.interface {
  display: grid;
  grid-template-areas: "header" "activites" "promo" "calendrier" "horaire" "comite" "instructeurs" "footer" "affiliations";
}

/*////[Affectation des zones]
________________________________________________________*/
header {
  grid-area: "header";
}

section#activites {
  grid-area: "activites";
}

section#calendrier {
  grid-area: "calendrier";
}

section#reclame {
  grid-area: "promo";
}

section#horaire {
  grid-area: "horaire";
}

section#comite {
  grid-area: "comite";
}

section#instructeurs {
  grid-area: "instructeurs";
}

footer {
  grid-area: "footer";
}

section#affiliations {
  grid-area: "affiliations";
}

/*Grille desktop*/
/*sous-grille contenu*/
/*////[Structure du header des sections]
________________________________________________________*/
#activites > header, #reclame > header, #horaire > header, #calendrier > header, #affiliations > header {
  margin-bottom: 1.6em;
  margin-top: 3.6em;
  padding: 0.8em;
  text-align: center;
}
#activites > header > h2, #reclame > header > h2, #horaire > header > h2, #calendrier > header > h2, #affiliations > header > h2 {
  font-size: 1.8em;
  margin-bottom: 0.4em;
}
#activites > header > p, #reclame > header > p, #horaire > header > p, #calendrier > header > p, #affiliations > header > p {
  line-height: 1.6em;
  font-size: 0.9em;
}
#activites > div.contenuCentre, #reclame > div.contenuCentre, #horaire > div.contenuCentre, #calendrier > div.contenuCentre, #affiliations > div.contenuCentre {
  padding: 1.4em;
}

/*////[Titres rouge]
________________________________________________________*/
#activites h2, #horaire h2, #instructeurs h2, #calendrier h2 {
  color: var(--rouge);
}
#activites > p, #horaire > p, #instructeurs > p, #calendrier > p {
  color: var(--grisPale);
}

/*////[Titre blanc]
________________________________________________________*/
#reclame h2, #reclame p, #comite h2, #comite p, #affiliations h2, #affiliations p {
  color: #fff;
}

/*////[Breakpoint 620px;]
________________________________________________________*/
@media (min-width: 620px) {
  #activites > header, #reclame > header, #horaire > header, #calendrier > header {
    width: 70%;
  }
}
/*////[Breakpoint 960px;]
________________________________________________________*/
@media (min-width: 960px) {
  #activites > header, #reclame > header, #horaire > header, #calendrier > header {
    width: 40%;
  }
}
/*////[Structure du header]
________________________________________________________*/
div.interface > header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3em;
  position: relative;
}

/*////[Zone du logo]
________________________________________________________*/
div.zoneLogo {
  display: none;
}

/*////[titre]
________________________________________________________*/
div.interface > header > h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 25%;
  width: 60%;
  z-index: 800;
  text-align: center;
  color: #fff;
  font-weight: 500;
}
div.interface > header > h1 > span {
  background-color: var(--rouge);
  padding: 0.5em;
  font-size: 0.46em;
}
div.interface > header > h1 > p {
  font-size: 0.8em;
  margin-top: 1em;
  line-height: 1.4em;
}

/*////[Background hero]
________________________________________________________*/
div.hero {
  margin-top: -0.2em;
  width: 100%;
  height: 380px;
  background-image: url(../images/hero/hero-500.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--gris);
  filter: blur(2px) grayscale(94%);
  z-index: 1;
}

/*////[Séparation fin header]
________________________________________________________*/
div.separation {
  margin-top: -0.2em;
  width: 100%;
  min-height: 2em;
  background-color: var(--gris);
  z-index: 500;
}

/*////[Breakpoint 700px;]
________________________________________________________*/
@media (min-width: 700px) {
  div.interface > header h1 {
    width: 400px;
  }
  div.interface > header h1 span {
    font-size: 0.6em;
  }
  div.interface > header h1 p {
    line-height: 1.6em;
  }
  div.hero {
    height: 480px;
    background-image: url(../images/hero/hero-700.jpg);
  }
}
/*////[Breakpoint 920px;]
________________________________________________________*/
@media (min-width: 920px) {
  div.hero {
    background-image: url(../images/hero/hero-920.jpg);
  }
}
/*////[Breakpoint 1024px;]
________________________________________________________*/
@media (min-width: 1024px) {
  div.interface > header {
    margin-top: 0;
  }
  div.zoneLogo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--gris);
    width: 100%;
    height: 115px;
    z-index: 150;
  }
  div.zoneLogo div.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 30px;
    left: calc(50vw - 120px);
    padding-top: 10px;
    height: 190px;
    width: 240px;
    background-color: #fff;
  }
  div.zoneLogo div.logo img {
    width: 148px;
  }
  div.interface > header > h1 {
    position: absolute;
    top: 60%;
    margin: auto 0;
    width: 60%;
    z-index: 800;
    text-align: center;
    color: #fff;
    font-weight: 500;
  }
}
/*////[Breakpoint 1220px;]
________________________________________________________*/
@media (min-width: 1220px) {
  div.hero {
    height: 640px;
    background-image: url(../images/hero/hero-1200.jpg);
  }
}
/*////[Breakpoint 1800px;]
________________________________________________________*/
@media (min-width: 1800px) {
  div.hero {
    height: 820px;
    background-image: url(../images/hero/hero-1800.jpg);
  }
}
/*////[Breakpoint 2200px;]
________________________________________________________*/
@media (min-width: 2200px) {
  div.hero {
    height: 980px;
    background-image: url(../images/hero/hero-2200.jpg);
  }
}
/*////[Breakpoint 3000px;]
________________________________________________________*/
@media (min-width: 3000px) {
  div.hero {
    background-image: url(../images/hero/hero-3000.jpg);
  }
}
/*////[Bouton menu mobile]
________________________________________________________*/
div.enteteNavMobile {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 3em;
  padding: 0.5rem;
  background-color: var(--rouge);
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
  z-index: 2000;
}

div.enteteNavMobile div.logoSticky {
  flex: 0 0 100px;
  margin-left: 0.5rem;
}
div.enteteNavMobile div.logoSticky > img {
  width: 100px;
}

#logoNav {
  flex: 0 0 100px;
  margin: 0 0.8rem;
}
#logoNav > img {
  width: 90px;
}

#navBar:not(.sticky) #logoNav {
  display: none;
}

@media (max-width: 1023.9px) {
  #logoNav {
    display: none;
  }
}

i.menu-mobile {
  flex: 0 0 28px;
  font-size: 28px;
  margin-left: auto;
  margin-right: 0.5rem;
  color: #fff;
  text-align: center;
  outline: none;
  cursor: pointer;
}
i.menu-mobile:hover {
  color: var(--gris);
}

/*////[Panneau navigation principale - mobile]
________________________________________________________*/
#navBar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  padding: 1.2em;
  z-index: 1000;
  top: 0;
  background-color: var(--rouge);
  color: #fff;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
  transition: height 1.2s;
  overflow: hidden;
  white-space: nowrap;
}
#navBar ul {
  margin-top: 2.6em;
}
#navBar ul li {
  margin: 0.5em 0;
  padding: 0.5em;
  font-size: 1.4em;
  text-align: center;
}
#navBar ul li:hover {
  background-color: var(--rougeHover);
}

/*////[Breakpoint 720px;] LANDSCAPE
________________________________________________________*/
@media (orientation: landscape) and (max-width: 740px) {
  #navBar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-height: 100%;
  }
  #navBar ul {
    margin-top: 2.8em;
  }
  #navBar ul li {
    font-size: 1em;
  }
  .nav-open {
    height: 100%;
  }
}
/*////[Breakpoint 1024px;] DESKTOP
________________________________________________________*/
@media (min-width: 1024px) {
  #navBar.sticky {
    position: fixed;
    justify-content: flex-start;
    top: 0;
    max-width: 100vw;
    margin-top: 0;
    padding-left: 64px;
    padding-right: 64px;
    z-index: 10000;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
  }
  #navBar.sticky > ul {
    margin-left: auto;
  }
  #navBar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 40%;
    max-width: 868px;
    color: inherit;
    background-color: var(--rouge);
    overflow: inherit;
    margin: auto 0;
    padding: 6px;
  }
  #navBar ul {
    margin-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #navBar ul li {
    margin: 0.4em;
    padding: 0.5em;
    font-size: 0.96em;
    text-align: center;
    color: #fff;
  }
  #navBar ul li:hover {
    background-color: var(--rougeHover);
  }
}
/*////[Breakpoint 1200px;] DESKTOP
________________________________________________________*/
@media (min-width: 1200px) {
  #navBar.sticky {
    padding-left: 96px;
    padding-right: 96px;
  }
}
/*////[Breakpoint 1800px;] DESKTOP
________________________________________________________*/
@media (min-width: 1800px) {
  #navBar.sticky {
    padding-left: 256px;
    padding-right: 256px;
  }
}
/* Tous mobiles */
@media screen and (max-width: 1023.9px) {
  #navBar {
    background-color: var(--gris);
  }
  #navBar:not(.nav-open) {
    height: 0px;
  }
  #navBar.nav-open {
    height: 485px;
  }
}
/*hero*/
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
  background-image: url(../images/texture/fond.png);
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken;
  color: #fff;
  padding: 2.8em;
}
footer div.image > img {
  width: 10em;
}

footer .iconeFooter, footer div.contenu ul #facebook:before {
  display: block;
  position: absolute;
  left: 12px;
  content: " ";
  background-repeat: no-repeat;
  background-size: 28px 28px;
  height: 28px;
  width: 28px;
}

footer div.contenu {
  margin-top: 2.8em;
}
footer div.contenu ul li {
  position: relative;
  text-align: center;
}
footer div.contenu ul li div.info {
  margin-bottom: 0.3em;
}
footer div.contenu ul #adresse .info {
  margin-bottom: 0.3em;
}
footer div.contenu ul #adresse .info:first-of-type {
  font-size: 0.9em;
  margin-bottom: 1.2em;
}
footer div.contenu ul #facebook {
  position: relative;
  margin-top: 2em;
  left: 12px;
}
footer div.contenu ul #facebook:before {
  top: -2px;
  background-image: url("../images/svg/info/facebook.svg");
}
footer div.contenu ul #facebook:before:hover {
  color: var(--rouge);
}
footer div.contenu ul #facebook a {
  color: var(--blanc);
}
footer div.contenu ul #facebook a:hover {
  color: var(--rouge);
}

/*navigation footer*/
section#affiliations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  background-color: var(--gris);
}
section#affiliations .contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section#affiliations a {
  width: 10em;
  margin: 0.8em 0;
}
section#affiliations a img {
  width: 10em;
  padding: 0.6em;
}
section#affiliations a:hover {
  background-color: hsl(0, 5%, 19.9%);
}
section#affiliations > .copyright {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.8em;
  font-weight: 300;
  text-align: center;
}

/*////[Breakpoint 700px;]
________________________________________________________*/
@media (min-width: 700px) {
  section#affiliations .contenu {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    max-width: 90%;
  }
  section#affiliations .contenu > a {
    margin: 2em;
  }
}
/*////[Structure du header]
________________________________________________________*/
section#activites {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 2em;
}
section#activites .contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
}

article.activite {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 2.8em;
}
article.activite > img {
  flex: 0 0 20%;
  height: 60px;
}

article.activite:first-child {
  margin-top: 0;
}

div.infoActivite {
  margin-left: auto;
  flex: 0 0 70%;
  text-align: left;
}
div.infoActivite > div.titreActivite {
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 0.2em;
}
div.infoActivite > p.descActivite {
  font-weight: 400;
  font-size: 0.8em;
  line-height: 1.6em;
  color: var(--grisPale);
  text-align: justify;
}

/*////[Breakpoint 700px;]
________________________________________________________*/
@media (min-width: 700px) {
  section#activites {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2em;
  }
  section#activites .contenu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: inherit;
    max-width: calc(100% - 1em);
    flex-wrap: wrap;
  }
  article.activite:first-child {
    margin: 0.8em;
  }
  article.activite {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 300px;
    max-width: calc(50% - 0.72em);
    height: 360px;
    margin: 0.8em;
  }
  article.activite > img {
    flex: 0 0 40%;
    height: 80px;
  }
  article.activite .infoActivite {
    text-align: center;
    padding: 0.8em;
  }
  article.activite .infoActivite > div.titreActivite {
    height: 44px;
    margin-bottom: 0.4em;
  }
  article.activite .infoActivite > p.descActivite {
    font-size: 0.96em;
  }
}
/*////[Breakpoint 960px;]
________________________________________________________*/
@media (min-width: 960px) {
  section#activites .contenu {
    max-width: calc(80% - 1em);
  }
  article.activite {
    height: 280px;
  }
}
/*////[Breakpoint 1080px;]
________________________________________________________*/
@media (min-width: 1100px) {
  section#activites .contenu {
    max-width: calc(90% - 1em);
  }
  article.activite {
    height: 360px;
    flex: 1 0 278px;
    max-width: calc(31% - 0.72em);
  }
}
/*////[Breakpoint 1480px;]
________________________________________________________*/
@media (min-width: 1480px) {
  article.activite {
    flex: 0 0 22%;
  }
}
/*////[Structure du header des sections]
________________________________________________________*/
section#instructeurs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
section#instructeurs > header {
  margin: 1.6em 0 3.6em 0;
  padding: 0.8em;
  text-align: center;
}
section#instructeurs > header > h2 {
  font-size: 1.8em;
  margin-bottom: 0.4em;
}
section#instructeurs > header > p {
  line-height: 1.6em;
  font-size: 0.9em;
}

div.description {
  padding: 0.8em;
  padding-bottom: 2em;
  color: #fff;
  text-align: center;
  min-width: 100%;
}
div.description .nom {
  font-size: 1.6em;
}
div.description .grade {
  font-size: 0.8em;
}
div.description .cv {
  position: relative;
  margin-top: 2em;
}
div.description .cv > ul {
  margin-left: 1em;
  text-align: left;
  font-size: 1em;
}
div.description .cv > ul li {
  padding: 0.2em 0;
}
div.description .cv ul > li:before {
  content: "-   ";
  text-indent: -10px;
  position: absolute;
  left: 8px;
}

#gilles .description {
  width: 360px;
  background-color: var(--gris);
}

#nath {
  margin-top: 2em;
}
#nath .description {
  background-color: var(--gris2);
}

/*////[Breakpoint 960px;]
________________________________________________________*/
@media (min-width: 960px) {
  section#instructeurs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  section#instructeurs > header {
    margin: 0 0 0 0;
  }
  section#instructeurs #nath {
    margin-top: 0;
  }
  #instructeurs div.description {
    height: 390px;
  }
}
/*////[Breakpoint 1200px;]
________________________________________________________*/
@media (min-width: 1200px) {
  section#instructeurs {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  section#instructeurs > header {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 0;
  }
  section#instructeurs > header p {
    width: 70%;
  }
  section#instructeurs #gilles {
    margin-left: auto;
  }
  section#instructeurs #nath {
    margin-top: 0;
  }
  #instructeurs div.description {
    height: 390px;
  }
}
section#comite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 2em;
}
section#comite .intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--rouge);
}
section#comite .intro > header {
  margin-bottom: 0.6em;
  margin-top: 3.6em;
  padding: 0.8em;
  text-align: center;
}
section#comite .intro > header > h2 {
  font-size: 1.8em;
  margin-bottom: 0.4em;
}
section#comite .intro .contenu {
  width: 70%;
}
section#comite .intro > .fleche {
  width: 50px;
  position: relative;
  bottom: -25px;
}

#comite section.intro article.contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  padding: 1em;
}
#comite section.intro article.contenu img {
  width: 10em;
  margin: 0.4em;
}
#comite section.intro article.contenu p {
  margin-top: 0.8em;
  text-align: justify;
  line-height: 1.6em;
  font-size: 1em;
}
#comite section.intro article.contenu p:first-of-type {
  margin-top: 2.6em;
}

#comite section.contenu {
  display: none;
}

section.conseil {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3em;
}
section.conseil > header h3 {
  font-size: 1.4em;
  color: var(--rouge);
  text-align: center;
}
section.conseil .membre {
  margin-top: 2em;
  text-align: center;
}
section.conseil .membre:first-of-type {
  margin-top: 0.8em;
}
section.conseil .membre .nom {
  font-size: 1.4em;
  font-weight: 600;
}
section.conseil .membre .titre {
  font-size: 1em;
  color: var(--grisPale);
}

/*////[Breakpoint 960px;]
________________________________________________________*/
@media (min-width: 960px) {
  section#comite {
    padding-bottom: 0;
  }
  #comite section.intro article.contenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #comite section.intro article.contenu p {
    margin: 1em;
    line-height: 1.6em;
    text-align: justify;
  }
  #comite section.intro article.contenu p:last-of-type {
    margin-top: 1.6em;
  }
  #comite section.intro article.contenu div.presentation {
    margin-left: 1.6em;
    width: 60%;
  }
  #comite section.intro article.contenu div.presentation p {
    margin: 1em;
    line-height: 1.6em;
    text-align: justify;
  }
  #comite section.intro article.contenu div.presentation p:last-of-type {
    margin-top: 1.6em;
  }
  #comite section.intro article.contenu img {
    width: 14em;
    margin: 0.4em;
  }
  #comite section.contenu {
    width: 90%;
    margin-top: 2em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  #comite section.contenu article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 50%;
    margin: 2em 0;
  }
  #comite section.contenu article div.zoneImg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 260px;
  }
  #comite section.contenu article div.zoneImg img {
    width: 220px;
  }
  #comite section.contenu article .volet {
    width: 18em;
    color: var(--rouge);
    font-size: 1.2em;
    font-weight: 700;
    border: 3px solid var(--rouge);
    text-align: center;
    margin-top: 1em;
    padding: 0.6em;
  }
  #comite section.contenu article > .mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.8em;
    text-align: center;
  }
  #comite section.contenu article > .mission > .titre {
    font-size: 1.8em;
    font-weight: 700;
  }
  #comite section.contenu article > .mission ul {
    width: 70%;
    list-style-type: none;
  }
  #comite section.contenu article > .mission ul > li {
    margin: 1em 0;
    font-size: 1.2em;
  }
  #comite section.contenu > .ckl {
    border-left: 2px solid rgba(46, 40, 40, 0.05);
  }
  section.conseil {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0.2em;
    padding: 3em 1em;
    background-color: var(--rouge);
    width: 100%;
  }
  section.conseil > header h3 {
    color: #fff;
  }
  section.conseil article.contenu {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
    width: 80%;
  }
  section.conseil article.contenu .membre {
    margin-top: 2em;
    margin: 2em 0.3em 0.3em 0.3em;
    text-align: center;
  }
  section.conseil article.contenu .membre:first-of-type {
    margin-top: 2em;
  }
  section.conseil article.contenu .membre .nom {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.2em;
  }
  section.conseil article.contenu .membre .titre {
    margin-top: 1em;
    font-size: 1em;
    color: #fff;
  }
}
/*////[Breakpoint 1200px;]
________________________________________________________*/
@media (min-width: 1200px) {
  #comite section.intro > article.contenu {
    width: 960px;
  }
  #comite > section.contenu {
    width: 1080px;
  }
}
/*////[Breakpoint 1500px;]
________________________________________________________*/
@media (min-width: 1500px) {
  section.conseil article.contenu {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
    width: 1200px;
  }
}
/*////[Structure de l'horaire]
________________________________________________________*/
section#horaire {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--fondGris);
  padding-bottom: 4em;
}
section#horaire > div.contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1em;
}

/*////[Information des cours]
________________________________________________________*/
article.categorie {
  margin-top: 1.6em;
  width: 100%;
}
article.categorie > div.titreCategorie {
  padding: 0.5em;
  text-transform: uppercase;
  background-color: var(--gris);
  color: #fff;
  font-weight: 600;
  text-align: center;
}
article.categorie > div.emplacement {
  margin-top: 0.8em;
  color: var(--rouge);
  font-size: 1.4em;
  text-align: center;
}

article.categorie:first-child {
  margin-top: 0;
}

div.plageHoraire {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
div.plageHoraire .horaire {
  margin-top: 0.4em;
}
div.plageHoraire .horaire:nth-child(2) {
  margin: 0 16px;
}
div.plageHoraire .horaire .jour {
  text-align: center;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--gris);
}
div.plageHoraire .horaire .heure {
  text-align: center;
}

/*////[Breakpoint 700px;]
________________________________________________________*/
@media (min-width: 700px) {
  article.categorie {
    width: 70%;
  }
}
/*////[Breakpoint 1080px;]
________________________________________________________*/
@media (min-width: 1080px) {
  section#horaire > div.contenu {
    max-width: 1000px;
  }
  section#horaire {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 6em;
  }
  section#horaire > div.contenu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 0 1em;
  }
  article.categorie:first-child {
    margin-top: 0;
  }
  article.categorie {
    margin-top: 0;
  }
  article.categorie > div.titreCategorie {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 0.8em;
    height: 5em;
  }
  article.categorie > div.emplacement {
    margin-top: 1.8em;
    color: var(--rouge);
    font-size: 1em;
    text-align: center;
  }
  article.categorie .plageHoraire {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  article.categorie .plageHoraire .horaire {
    margin: 0.8em 0;
  }
}
@media (min-width: 1600px) {
  section#horaire > div.contenu {
    max-width: 1200px;
  }
}
/*////[Structure de la zone pub]
________________________________________________________*/
#reclame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--noir);
  padding-bottom: 2em;
}

#reclame div.contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*////[Icone]
________________________________________________________*/
#reclame div.image > img {
  width: 10em;
}

/*////[Contenu pub]
________________________________________________________*/
#reclame article.infoPromo {
  text-align: center;
  width: 80%;
}
#reclame article.infoPromo .promo {
  padding: 0.5em;
  margin-top: 0.8em;
  background-color: var(--rouge);
  text-align: center;
  font-size: 1.4em;
}
#reclame article.infoPromo .kimono {
  margin-top: 0.8em;
  font-size: 1.2em;
  text-align: center;
}
#reclame article.infoPromo .target {
  margin-top: 1.6em;
  font-size: 0.8em;
  text-align: center;
}

/*////[Breakpoint 700px;]
________________________________________________________*/
@media (min-width: 700px) {
  #reclame {
    padding-bottom: 4em;
  }
  #reclame div.contenu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 660px;
  }
  #reclame div.contenu div.image {
    flex: 0 0 40%;
  }
  #reclame div.contenu div.image img {
    width: 14em;
  }
  #reclame div.contenu article.infoPromo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 45%;
  }
  #reclame div.contenu article.infoPromo p.target {
    width: 90%;
    line-height: 1.2em;
  }
}
/*////[Structure d'un évènement]
________________________________________________________*/
section#calendrier {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 3em;
}
section#calendrier > div.contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
}

article.event {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 220px;
  width: 100%;
  margin-top: 3em;
}
article.event:first-of-type {
  margin-top: 0.8em;
}

.annuler {
  position: relative;
  color: #999;
}
.annuler img {
  filter: grayscale(100%);
}
.annuler .date {
  z-index: 100;
  background-color: #bbb !important;
}
.annuler .tag {
  z-index: 800;
  position: absolute;
  top: 90px;
  left: 55px;
  opacity: 1;
  transform: rotate(-35deg);
  color: var(--rouge);
  font-size: 4em;
  font-weight: 700;
  text-transform: uppercase;
}

/*////[Date]
________________________________________________________*/
#calendrier div.date {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 64px;
  max-width: 64px;
  height: 100%;
  padding: 1.2em;
  background-color: var(--rouge);
  color: #fff;
}
#calendrier div.date > .jour {
  margin: 0 auto;
  margin-top: 0.2em;
  font-size: 1.2em;
  text-align: center;
  line-height: 0.8em;
  height: 40%;
}
#calendrier div.date > .mois {
  width: 40%;
  transform: rotate(-90deg);
  font-size: 0.88em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/*////[Information]
________________________________________________________*/
#calendrier div.eventInfo {
  margin-left: 1.1em;
  text-align: left;
}
#calendrier div.eventInfo > div.titreEvent {
  font-size: 1.2em;
  font-weight: 800;
  line-height: 1.18em;
}
#calendrier div.eventInfo > div.lieuEvent {
  margin-top: 0.4em;
  font-size: 0.96em;
}
#calendrier div.eventInfo > p.descEvent {
  margin-top: 0.8em;
  text-align: justify;
}

/*////[Photo]
________________________________________________________*/
#calendrier div.img {
  display: none;
}

/*////[Breakpoint 620px;]
________________________________________________________*/
@media (min-width: 620px) {
  article.event {
    width: 80%;
  }
}
/*////[Breakpoint 720px;]
________________________________________________________*/
@media (min-width: 720px) {
  .annuler .tag {
    font-size: 3.4em;
    top: 90px;
    left: 220px;
  }
  #calendrier div.img {
    min-width: 290px;
    display: block;
  }
  article.event {
    width: 90%;
    margin-top: 4em;
    height: auto;
    position: relative;
  }
  #calendrier div.date {
    display: block;
    position: absolute;
    min-width: 110px;
    top: 100px;
    left: 180px;
    height: auto;
    text-align: left;
    padding: 0.8em;
  }
  #calendrier div.date > .jour {
    margin-top: 0.5em;
    font-size: 1.2em;
    text-align: left;
    min-width: 30px;
    line-height: 0.8em;
    font-weight: 700;
  }
  #calendrier div.date > .mois {
    transform: rotate(0deg);
    font-size: 0.88em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.8em;
    font-weight: 300;
  }
}
/*////[Breakpoint 980px;]
________________________________________________________*/
@media (min-width: 980px) {
  article.event {
    width: 70%;
  }
}
/*////[Breakpoint 1200px;]
________________________________________________________*/
@media (min-width: 1200px) {
  section#calendrier {
    padding-bottom: 3em;
  }
  section#calendrier > div.contenu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
  }
  #calendrier div.contenu {
    width: 90%;
    flex-wrap: wrap;
    padding: 0;
  }
  article.event {
    width: inherit;
    flex: 0 0 45%;
    margin: 1.4em;
  }
  article.event:first-of-type {
    margin-top: 3em;
  }
}
div.avertissement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  bottom: 0;
  z-index: 5000;
  width: 100%;
  height: 300px;
  padding: 2em;
  border: 6px #000 solid;
  background-repeat: repeat;
  background: url(../images/backgroundAvertissement.svg) #000;
}
div.avertissement i.fa-times-circle {
  position: absolute;
  top: 0.4em;
  right: 0.4em;
  font-size: 2em;
  color: var(--rouge);
}
div.avertissement i.fa-times-circle:hover {
  color: var(--grisPale);
  cursor: pointer;
}
div.avertissement h1 {
  text-align: left;
  width: 85%;
  font-size: 0.8em;
}
div.avertissement p {
  text-align: justify;
  font-size: 0.8em;
}

/*////[Breakpoint 570px;]
________________________________________________________*/
@media (min-width: 570px) {
  div.avertissement {
    padding: 2em 6em;
  }
}
/*////[Breakpoint 570px;]
________________________________________________________*/
@media (min-width: 570px) {
  div.avertissement {
    padding: 2em 6em;
  }
}
/*////[Breakpoint 570px;]
________________________________________________________*/
@media (min-width: 700px) {
  div.avertissement {
    padding: 1.4em 6em;
  }
  div.avertissement h1 {
    text-align: left;
    width: 80%;
    font-size: 1.4em;
    line-height: 1.2em;
  }
  div.avertissement p {
    font-size: 1em;
    line-height: 1.2em;
  }
}
@media (min-width: 740px) {
  div.avertissement p {
    font-size: 1em;
    line-height: 1.4em;
  }
}
/*////[Breakpoint 900px;]
________________________________________________________*/
@media (min-width: 900px) {
  div.avertissement {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  div.avertissement h1 {
    flex: 0 0 250px;
    text-align: left;
    font-size: 1.8em;
    line-height: 1.2em;
  }
  div.avertissement p {
    flex: 0 0 60%;
    font-size: 1em;
  }
}/*# sourceMappingURL=style.css.map */