/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, ::before, ::after {
  box-sizing: border-box;
}

body {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}

/* base */
body {
  background-color: black;
  font-family: Nunito sans, sans-serif;
  font-size: 20px;
  color: #000000;
}

h1 {
  font-family: Nunito sans, sans-serif;
  font-size: 60px;
  color: #ed7d31;
}

h2 {
  font-family: sans-serif;
  font-size: 20px;
  color: #ed7d31;
}

h3 {
  text-align: center;
  font-size: 50px;
  margin: 50px 0 50px;
  padding: 0 30px;
  color: #ed7d31;
}

p {
  margin-top: 1em;
  margin-bottom: 1em;
}

ul {
  margin-left: 1em;
}

li {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Navigation */
nav {
  position: fixed;
  height: 70px;
  width: 100%;
  background: linear-gradient(to bottom, #000000, #000000 98%, #ed7d31);
  z-index: 10;
}

.logo-menu {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 50px;
  z-index: 25;
  display: none;
}

.liste-nav {
  background: linear-gradient(to bottom, #000000, #000000 98%, #ed7d31);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  list-style-type: none;
  z-index: 20;
}

.item-nav {
  display: flex;
  align-items: center;
}

.item-nav a {
  font-size: 22px;
  color: #ed7d31;
  text-decoration: none;
  margin: 0 20px;
  text-transform: uppercase;
}

.item-nav a::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0%;
  height: 2px;
  background: #ed7d31;
  transition: width 0.3s ease-in-out;
}

.item-nav a:hover::after {
  width: 100%;
}

@media (max-width: 700px) {
  .item-nav a {
    font-size: 20px;
    color: #ed7d31;
    text-decoration: none;
    margin: 0 10px;
    text-transform: uppercase;
  }
}
@media (max-width: 500px) {
  .item-nav a {
    font-size: 15px;
    color: #ed7d31;
    text-decoration: none;
    margin: 0 5px;
    text-transform: uppercase;
  }
}
.first {
  margin: 0;
  width: 100%;
  height: 100vh;
  min-height: 970px;
  background-image: url(./../img/first2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px dotted #777;
  padding-top: 1px;
}
.first h1 {
  width: 100%;
  font-size: 150px;
  text-shadow: 0 0px 10px black;
  color: #ed7d31;
  margin-left: 20px;
  margin-top: 60px;
  font-family: Merienda one, sans-serif;
}
.first .sous-titre {
  font-size: 25px;
  font-weight: bold;
  color: #ed7d31;
  margin-left: 40px;
  margin-top: 10px;
  text-shadow: 0 0 5px #000;
}

@media (max-width: 1050px) {
  .first h1 {
    font-size: 100px;
  }
  .first .sous-titre {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .first h1 {
    font-size: 80px;
  }
  .first .sous-titre {
    font-size: 20px;
  }
}
section.bilan {
  display: block;
  margin-top: 200px;
  margin-left: 5%;
  margin-right: 5%;
}

.bil {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 0;
  width: 100%;
  background-color: black;
}

.bil-cards {
  margin: 100px auto;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.bil-card {
  width: 30%;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  color: #EEEEEE;
  text-align: center;
}

.icon-bil-card {
  /* background-color: red; */
  flex-basis: 100px;
  background-image: url(./../img/ico-tennis.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35px;
}

.text-bil-card {
  padding-left: auto;
  padding-left: right;
  /* background-color: green; */
  flex-basis: 100%;
  align-self: center;
  font-size: 2em;
  padding-top: 20px;
  margin-bottom: auto;
}

@media (max-width: 1200px) {
  .text-bil-card {
    font-size: 1.5em;
    padding-top: 25px;
  }
}
@media (max-width: 800px) {
  .bil-card {
    width: 80%;
  }
  .bil-card .text-bil-card {
    font-size: 3em;
    padding-top: 15px;
  }
}
@media (max-width: 550px) {
  .bil-card .text-bil-card {
    font-size: 2em;
    padding-top: 20px;
  }
}
@media (max-width: 400px) {
  .bil-card .text-bil-card {
    font-size: 1.5em;
    padding-top: 22px;
  }
}
.bil-card-1 {
  grid-column: 2/3;
  grid-row: 1;
  background-color: whitesmoke;
  color: #ed7d31;
}

.icon-bil-card-1 {
  background-color: #ED7D31;
}

.bil-card-2 {
  grid-column: 3/4;
  grid-row: 1;
  background-color: whitesmoke;
  color: #9960bd;
}

.icon-bil-card-2 {
  background-color: #B084CC;
  background-image: url(./../img/ico-chart.svg);
}

.bil-card-3 {
  grid-column: 4/5;
  grid-row: 1;
  background-color: whitesmoke;
  color: #49dfcd;
}

.icon-bil-card-3 {
  background-color: #74E7D9;
  background-image: url(./../img/ico-time.svg);
}

.deplacement {
  position: relative;
  height: 1050px;
  width: 100%;
  margin: 0 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-auto-flow: column;
  grid-gap: 20px;
  overflow: hidden;
}

.dep-list h2 {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 5%;
  padding-bottom: 10px;
  font-size: 50px;
  text-align: center;
}

@media (max-width: 1300px) {
  .dep-list h2 {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 1100px) {
  .dep-list h2 {
    font-size: 30px;
    text-align: center;
  }
}
.dep-list ul {
  margin-top: 15%;
}

.dep-list hr {
  width: 60%;
  color: #ed7d31;
}

.dep-list {
  position: relative;
  color: #ed7d31;
  grid-column: 1/5;
  grid-row: 1;
  height: 100%;
  background: linear-gradient(to right, #000000, #000000 95%, rgba(0, 0, 0, 0.95));
}

.dep-list li {
  margin-top: 10px;
  margin-left: 40px;
  font-size: 1.5em;
}

@media (max-width: 1100px) {
  .dep-list li {
    font-size: 20px;
  }
}
.else {
  grid-column: 4/13;
  grid-row: 1;
  height: 100%;
  background-color: yellow;
  background-image: url(./../img/carte2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 830px) {
  .dep-list {
    z-index: 2;
    grid-column: 1/13;
    grid-row: 1;
    background: none;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .dep-list h2 {
    font-size: 40px;
  }
  .dep-list li {
    font-size: 2em;
  }
  .dep-list ul {
    margin-top: 30px;
  }

  .else {
    grid-column: 1/13;
    grid-row: 1;
    filter: blur(5px);
    z-index: 1;
  }
}
.section-staff {
  padding-bottom: 200px;
  color: #ed7d31;
}

.section-staff hr {
  width: 200px;
  /* margin:20px auto 0; */
  margin-bottom: 20px;
  color: #f1f1f1;
}

.container-staff {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.cartes-staff {
  width: 350px;
  height: auto;
  min-height: 250px;
  border-radius: 5px;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 60px;
  /* margin : 15px 15px; */
  box-shadow: 0 2px 10px rgba(176, 132, 204, 0.2);
  transition: all 0.3s ease-in-out;
  position: relative;
  color: #f1f1f1;
  padding-bottom: 20px;
}

.cartes-staff-2 {
  box-shadow: 0 2px 10px rgba(116, 231, 217, 0.2);
}

.cartes-staff-3 {
  box-shadow: 0 2px 10px rgba(233, 75, 96, 0.2);
}

.cartes-staff-4 {
  box-shadow: 0 2px 10px rgba(237, 125, 49, 0.2);
}

.cartes-staff:hover {
  transform: translateY(-5px);
}

.staff-name {
  background: #B084CC;
  height: 80px;
  border-top-right-radius: 5px;
}

.staff-name-2 {
  background: #74E7D9;
}

.staff-name-3 {
  background: #e94b60;
}

.staff-name-4 {
  background: #ED7D31;
}

.cartes-staff h4 {
  position: absolute;
  width: 95%;
  height: 100%;
  top: 0;
  left: 0;
  left: 0;
  z-index: 1;
  text-align: right;
  top: 10px;
  font-size: 30px;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  margin-top: 0px;
  color: #f1f1f1;
  display: inline;
}

.container-staff hr {
  color: #B084CC;
}

.cartes-staff-2 hr {
  color: #74E7D9;
}

.cartes-staff p {
  padding-left: 10px;
  padding-right: 10px;
  color: #B084CC;
}

.cartes-staff-2 p {
  color: #74E7D9;
}

.cartes-staff-4 p {
  color: #ED7D31;
}

.cartes-staff-3 p {
  color: #e94b60;
}

.cartes-medaillon {
  position: relative;
  top: -50px;
  z-index: 2;
  border: 3px ridge #B084CC;
  box-shadow: 0 5px 15px rgba(176, 132, 204, 0.2);
  border-radius: 100%;
  height: 100px;
  width: 100px;
}

.cartes-medaillon-2 {
  border-color: #74E7D9;
  box-shadow: 0 5px 15px rgba(116, 231, 217, 0.2);
}

.cartes-medaillon-3 {
  border-color: #e94b60;
  box-shadow: 0 5px 15px rgba(233, 75, 96, 0.2);
}

.cartes-medaillon-4 {
  border-color: #ED7D31;
  box-shadow: 0 5px 15px rgba(237, 125, 49, 0.2);
}

@media (max-width: 1520px) {
  .container-staff {
    width: 1000px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1000px) {
  .container-staff {
    width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.parallax {
  background-image: url(./../img//parralax1.jpg);
  min-height: 200px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 200px;
  margin-bottom: 200px;
  margin-left: 0%;
  margin-right: 0%;
}

.parallax-2 {
  background-image: url(./../img//parralax2.jpg);
}

.parallax-3 {
  background-image: url(./../img//parralax3.jpg);
  margin-left: 0;
  margin-right: 0;
  min-height: 100vh;
  margin-bottom: 0;
}

.video-container {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  height: auto;
}

video.video {
  width: 100%;
  overflow: none;
  box-shadow: 0px 0px 8px rgba(237, 125, 49, 0.3);
  border-radius: 5px;
}

/*# sourceMappingURL=style.css.map */
