/*     COULEUR GRIS FONCE :     #0b0904    rgba(11,9,4,1)       */

/*     COULEUR GRIS CLAIR :     #eaeaea    rgba(234,234,234,1)  */

/*     COULEUR ROUGE      :     #E30513    rgba(227,5,19,1)     */

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

hr {
  display: block;
  clear: both;
  margin: 0;
  padding: 0;
  opacity: 0;
}

@font-face {
  font-family: 'danielbold';
  src: url('../font/danielbd-webfont.eot');
  src: url('../font/danielbd-webfont.eot?#iefix') format('embedded-opentype'),
       url('../font/danielbd-webfont.woff') format('woff'),
       url('../font/danielbd-webfont.ttf') format('truetype'),
       url('../font/danielbd-webfont.svg#danielbold') format('svg');
  font-weight: normal;
  font-style: normal;
}

html {
  background-color: #eaeaea;
}






p {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.35em;
  -webkit-text-stroke: .2px;
  color: #0b0904;
}

p.blanc {
  color: #eaeaea;
  font-weight: 300;
  -webkit-text-stroke: 0;
}
p span.rouge {
  color: #E30513;
  font-weight: 400;
}

h2 {
  font-family: 'danielbold';
  font-weight: normal;
  font-size: 2.8em;
  line-height: 1.5em;
  -webkit-text-stroke: .8px;
  color: #0b0904;
  padding-bottom: 1.2em;
}

h2.blanc {
  color: #eaeaea;
  -webkit-text-stroke: .5px;
}

h2.rouge {
  color: rgba(227,5,19,1);
  -webkit-text-stroke: .5px;
}

h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 2em;
  -webkit-text-stroke: .2px;
  color: #E30513;
  text-transform: uppercase;
}

h3.staff {
  margin-left: 170px;
  margin-bottom: 1em;
}










header {
  width: 100%;
  height: 100vh;
  position: relative;
  border-top: 8px solid rgba(227,5,19,1);
  background: #0b0904 url(../images/bg-header.jpg) no-repeat center center;

  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;

  -webkit-animation-name: HeaderFocus;
     -moz-animation-name: HeaderFocus;
      -ms-animation-name: HeaderFocus;
       -o-animation-name: HeaderFocus;
          animation-name: HeaderFocus;

  -webkit-animation-iteration-count: once;
     -moz-animation-iteration-count: once;
      -ms-animation-iteration-count: once;
       -o-animation-iteration-count: once;
          animation-iteration-count: once;

  -webkit-animation-timing-function: ease-in-out;
     -moz-animation-timing-function: ease-in-out;
      -ms-animation-timing-function: ease-in-out;
       -o-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;

  -webkit-animation-duration: 1.5s;
     -moz-animation-duration: 1.5s;
      -ms-animation-duration: 1.5s;
       -o-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes HeaderFocus {
      0% {opacity: 0;}
    100% {opacity: 1;}
}

@-moz-keyframes HeaderFocus {
      0% {opacity: 0;}
    100% {opacity: 1;}
}

@-ms-keyframes HeaderFocus {
      0% {opacity: 0;}
    100% {opacity: 1;}
}

@-o-keyframes HeaderFocus {
      0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes HeaderFocus {
      0% {opacity: 0;}
    100% {opacity: 1;}
}

header p img#logo {
  height: 65vh;
  min-width: 300px;
  margin-top: -70px;
}

header p img#FFK {
  display: block;
  position: absolute;
  width: 200px;
  height: 59px;
  max-width: 200px;
  margin-top: 0;
  top: 40px;
  left: 40px;
}




a#scrolldown {
  display: block;
  width: 80px;
  height: 80px;
  border: 5px solid rgba(227,5,19,.5);
  position: absolute;
  background: #E30513 url(../images/puce-down.png) no-repeat center center;
  margin: 0 auto;
  bottom: 50px;
  left: 50%;
  margin-left: -40px;
  opacity: .3;

  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;

  -webkit-transition: ease-in-out .2s;
     -moz-transition: ease-in-out .2s;
       -o-transition: ease-in-out .2s;
          transition: ease-in-out .2s;
}

a#scrolldown:hover {
  width: 90px;
  height: 90px;
  margin-left: -45px;
  bottom: 45px;
  opacity: 1;
}









a#bouton {
  width: 400px;
  display: block;
  padding: 1em 1.5em;
  margin-top: 3em;
  margin-left: 170px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;

  -webkit-transition: ease-in-out .2s;
     -moz-transition: ease-in-out .2s;
       -o-transition: ease-in-out .2s;
          transition: ease-in-out .2s;
}

a#bouton:hover {
background-color: #E30513;
}

a#bouton p {
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.bouton-blanc {
  background-color: #eaeaea;
}
.bouton-noir {
  background-color: #0b0904;
}










section {
  width: 100%;
  min-height: 70vh;
}

section.noir {
  background-color: #0b0904;
}

#container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10em 1.5em;
}




article {
  width: 100%;
}

article p, article h2 {
  margin-left: 170px;
}








#prof {
  background: #0b0904 url(../images/bg-prof2@2x.jpg) no-repeat bottom right;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}

#dojo {
  background: #eaeaea url(../images/bg-dojo.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}










#renseignements {
  background: #0b0904;
}

#renseignements a#bouton {
  width: 40%;
  min-width: 400px;
}

#renseignements #horaire-container {
  width: 100%;
  margin: 5em 0;
}

#renseignements #horaire-container p {
  margin-left: 1em;
}

#renseignements #horaire-container h3 {
  text-align: center;
  margin-bottom: 1em;
}
#renseignements #horaire-container hr {
  opacity: 0;
}

#renseignements #horaire-enfants {
  width: 50%;
  float: left;
}

#renseignements #horaire-adultes {
  width: 50%;
  float: left;
  margin-top: 0;
}

.jour {
  width: 50%;
  float: left;
  text-align: right;
}

.heures {
  width: 50%;
  float: right;
}














#carte {
  padding-right: 50px;
  background: #eaeaea url(../images/bg-map2@2x.jpg) no-repeat left bottom fixed;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}


#carte article p, #carte article h3 {
  margin-left: 0;
  text-align: right;
}
#carte article a {
  float: right;
}

#carte article a p {
 text-align: center;  
}

#prof img, #dojo img, #renseignements img{
  float: left;
}











#dojo article {
  width: 70%;
  margin-left: 30%;
}




div#retour {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  width: 100%;
  background-color: rgba(227,5,19,1);
}

div#retour a {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  color: rgba(234,234,234,1);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 60px;
  position: relative;
  margin-left: 170px;
}

div#retour img {
  margin-right: 20px;
  padding-top: 5px;
}

div#retour #container {
  padding: 0;
}


#staff {
  background: rgba(255,255,255,1) url(../images/**.jpg) no-repeat bottom right;
}

#alex {
  background: rgba(234,234,234,1) url(../images/bg-alex.jpg) no-repeat bottom right;
}

#steph {
  background: rgba(11,9,4,1) url(../images/bg-steph.jpg) no-repeat bottom right;
}