/* ==========================================================================
   RESET
   ========================================================================== */
/* 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,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

svg {
  display: block; }

strong {
  display: block; }

/* ==========================================================================
   MIXIN
   ========================================================================== */
/* ==========================================================================
   FONTS
   ========================================================================== */
/*Museo*/
@font-face {
  font-family: 'museo';
  src: url("../fonts/museo500-regular/Museo500-Regular.eot");
  src: url("../fonts/museo500-regular/Museo500-Regular.eot?") format("eot"), url("../fonts/museo500-regular/Museo500-Regular.woff") format("woff"), url("../fonts/museo500-regular/Museo500-Regular.ttf") format("truetype"), url("../fonts/museo500-regular/Museo500-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'museo';
  src: url("../fonts/museo700-regular/Museo700-Regular.eot");
  src: url("../fonts/museo700-regular/Museo700-Regular.eot?") format("eot"), url("../fonts/museo700-regular/Museo700-Regular.woff") format("woff"), url("../fonts/museo700-regular/Museo700-Regular.ttf") format("truetype"), url("../fonts/museo700-regular/Museo700-Regular.svg") format("svg");
  font-weight: bold;
  font-style: normal; }
/*Museo Sans*/
@font-face {
  font-family: 'museo-sans';
  src: url("../fonts/museosans500-regular/Museosans-500.eot");
  src: url("../fonts/museosans500-regular/Museosans-500.eot?") format("eot"), url("../fonts/museosans500-regular/Museosans-500.woff") format("woff"), url("../fonts/museosans500-regular/Museosans-500.ttf") format("truetype"), url("../fonts/museosans500-regular/Museosans-500.svg") format("svg");
  font-weight: bold;
  font-style: normal; }
/* ==========================================================================
   Vars
   ========================================================================== */
/* ==========================================================================
   Structure
   ========================================================================== */
html {
  font-size: 62.5%; }

body {
  font-size: 1.6rem;
  /* =16px */
  font-family: museo, Hoefler Text, Rockwell, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  color: #000;
  background: #ededed; }

#content {
  padding-top: 30px;
  padding-bottom: 50px; }

/* ==========================================================================
   Header
   ========================================================================== */

.sncf header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
header {
  
  padding: 28px 0;
  margin: 0 15px;
  border-bottom: 1px solid #dbdbdb; }
  header .logo {
    width: 166px;
    float: left;
    display: block; }
  header .userName, header .logOut {
    font-weight: bold;
    float: right;
    margin-top: 18px;
    font-size: 1.8rem; }
  header .userName {
    padding-right: 20px; }
  header .logOut {
    padding-right: 25px;
    padding-left: 20px;
    border-left: 1px solid #000;
    position: relative; }
    header .logOut img {
      position: absolute;
      right: 0;
      bottom: 1px; }
    header .logOut a {
      color: #000;
      text-decoration: none; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
#breadcrumb {
  padding: 10px 0 0 0; }
  #breadcrumb .centrerSite {
    padding: 0 30px; }
  #breadcrumb a {
    color: #424242; }
    #breadcrumb a.current {
      color: #c9141a; }

/* ==========================================================================
   Courses
   ========================================================================== */
.blocCourse {
  height: 255px;
  background: #fff;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  transition: all 0.4s linear;
  margin-bottom: 20px;
  max-width: 400px; 
  cursor: pointer;}
  .blocCourse a {
    display: block;
    height: 100%;
    width: 100%;
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    transition: all 0.4s linear;
    font-weight: bold; }
  .blocCourse .blocImg {
    height: 180px;
    position: relative;
    overflow: hidden; }
    .blocCourse .blocImg div {
      height: 100%;
      width: 100%;
      -webkit-transition: all 0.4s linear;
      -moz-transition: all 0.4s linear;
      -ms-transition: all 0.4s linear;
      transition: all 0.4s linear; }
      .blocCourse .blocImg div img {
        position: absolute;
        min-height: 100%;
        max-height: 130%;
        min-width: 100%;
        max-width: 130%;
        left: 50%;
        top: 50%;
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .blocCourse .blocTitle {
    height: 65px;
    line-height: 20px;
    padding-top: 20px;
    text-align: center;
    font-size: 1.8rem; }
  .blocCourse:hover {
    background: #c9141a; }
    .blocCourse:hover a {
      color: #fff; }
    .blocCourse:hover .blocImg div {
      -moz-transform: scale(1.05);
      -o-transform: scale(1.05);
      -ms-transform: scale(1.05);
      -webkit-transform: scale(1.05);
      transform: scale(1.05); }

/* ==========================================================================
   Project
   ========================================================================== */
.imgProject {
  height: 460px;
  position: relative;
  overflow: hidden; }
  .imgProject img {
    position: absolute;
    top: 0;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.infoProject h2 {
  font-size: 7.6rem;
  text-transform: uppercase;
  margin-top: 57px;
  padding: 0 15px; }
.infoProject h3 {
  text-transform: uppercase;
  font-size: 2.6rem;
  color: #c9141a;
  margin-bottom: 10px;
  margin-top: 35px; }
.infoProject p {
  line-height: 2.5rem;
  font-family: museo-sans, verdana, Arial, sans-serif; }
.infoProject aside {
  margin-top: 50px; }
  .infoProject aside .blocAside {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    background: #dbdbdb; }
    .infoProject aside .blocAside strong {
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 10px; }
.infoProject .contentProject {
  margin-top: 50px; }
  .infoProject .contentProject h3:first-child {
    margin-top: 0; }

/* ==========================================================================
   Login
   ========================================================================== */
#blocLogin {
  font-family: museo-sans, verdana, Arial, sans-serif;
  position: absolute;
  width: 390px;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  #blocLogin form {
    display: block;
    width: 100%; }
  #blocLogin ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #9f9f9f; }
  #blocLogin ::-moz-placeholder {
    /* Firefox 19+ */
    color: #9f9f9f; }
  #blocLogin :-ms-input-placeholder {
    /* IE 10+ */
    color: #9f9f9f; }
  #blocLogin :-moz-placeholder {
    /* Firefox 18- */
    color: #9f9f9f; }
  #blocLogin .logoLogin {
    width: 290px;
    position: relative;
    margin: 0 auto 30px auto;
    display: block; }
  #blocLogin .userLogin, #blocLogin .userPassword {
    display: block;
    margin: 10px 0;
    width: 390px;
    padding: 5px 15px;
    border: none;
    font-size: 1.6rem; }
  #blocLogin a.forgottenPassword {
    display: block;
    margin-top: 8px;
    color: #004262;
    font-size: 1.4rem;
    white-space: nowrap; }
  #blocLogin .blocRemember {
    padding: 30px 0 30px 0;
    position: relative;
    text-align: center; }
    #blocLogin .blocRemember input#userRemember {
      position: absolute;
      opacity: 0; }
    #blocLogin .blocRemember label {
      cursor: pointer;
      font-size: 1.4rem;
      display: inline-block; }
    #blocLogin .blocRemember .bgCheckbox {
      height: 13px;
      width: 13px;
      border: 1px solid #7a7a7a;
      background: #fff;
      display: inline-block;
      vertical-align: middle;
      margin-right: 5px; }
      #blocLogin .blocRemember .bgCheckbox img {
        height: 100%;
        width: 10px;
        display: block;
        display: none; }
    #blocLogin .blocRemember input:checked + .bgCheckbox img {
      display: block; }
  #blocLogin .btnSubmit {
    height: 40px;
    width: 225px;
    background: #c9141a;
    color: #fff;
    border: none;
    font-size: 1.8rem;
    position: relative;
    margin: 0 auto;
    display: block; }


#videos {
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.95);
  position: fixed;
  top: 0;
  display: block;
}

.videok {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centrerSite h4 {
    margin: 15px;
    font-size: 2rem;
    font-weight: bold;
}

.centrerSite h3 {
    margin: 10px;
    font-size: 2.4rem;
    font-weight: bold;
    height: 68px;
    line-height: 68px;
    padding-left: 75px;
    padding-bottom: 16px;
    position: relative;
}

.centrerSite h3 .icoType {
    height: 68px;
    width: 68px;
    border-radius: 50%;
    border: 2px solid #4A4A4A;
    position: absolute;
    top: 0;
    left: 0;
}

.centrerSite h3 .icoType img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.exp .titlek {
    background-image: url(../svg/leadership-noir.svg);
    background-size: auto 90%;
}

.ht .titlek {
    background-image: url(../svg/2min-noir.svg);
    background-size: auto 80%;
}

.choc .titlek {
    background-image: url(../svg/chocolat-noir.svg);
    background-size: auto 70%;
}

.titlek {
    color: #000;
    font-size: 2.4rem;
    padding-left: 60px;
    padding-bottom: 10px;
    background-repeat: no-repeat;
    line-height: 50px;
}

.descriptionk {
  padding-top: 20px;
}

.hcenter {
    line-height: 25px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }

/* ==========================================================================
   Hacks
   ========================================================================== */
/* ==========================================================================
   Media Queries
   ========================================================================== */
/* Large devices */
@media only screen and (min-width: 1200px) {
  .centrerSite {
    width: 1200px !important;
    margin: 0 auto !important;
    float: none !important; } }
/* Medium devices and less */
@media only screen and (max-width: 1199px) {
  /*.centrerSite{padding: 0 30px;}*/ }
/* Small devices and less */
@media only screen and (max-width: 768px) {
  .blocCourse {
    margin: 0 auto 20px auto !important; } }

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