body, html {
  padding: 0;
  margin: 0;
  font-family: 'Muli', sans-serif;
  min-width: 960px; }

H1 {
  font-family: 'Righteous', cursive; }

H2 {
  font-family: 'Righteous', cursive; }

H3 {
  font-family: 'Josefin Sans', sans-serif; }

.mainContent {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  margin-top: 150px;
  min-height: 2000px; }

header {
  min-width: 960px;
  width: 100%;
  height: 150px;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  -webkit-box-shadow: 0px 2px 15px -8px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 15px -8px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 15px -8px rgba(0, 0, 0, 0.25);
  transition: height 0.3s; }
  header.HeaderSmall {
    height: 75px;
    transition: height 0.3s; }

#logoHeader {
  height: 60%;
  width: auto;
  position: absolute;
  left: 50px;
  top: 40%;
  transform: translateY(-50%); }
  #logoHeader img {
    height: 100%;
    width: auto; }

#menuMain {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  height: 45px;
  width: 60%;
  position: absolute;
  right: 50px;
  bottom: 0; }
  #menuMain .item {
    width: 18%;
    height: 80%;
    margin: 8px;
    color: #818181;
    text-align: center;
    vertical-align: bottom;
    font-variant: small-caps; }
    #menuMain .item:hover {
      cursor: pointer;
      color: #141414;
      font-weight: bold; }

#Welcome {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-image: url(/web/assets/images/computer-coffee.jpg);
  background-attachment: fixed;
  background-position: bottom;
  background-size: cover;
  position: relative; }
  #Welcome #fondu {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    background: linear-gradient(to top, #ffffff, transparent); }
  #Welcome #filtre {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 4; }
  #Welcome #wrapWelcome {
    box-sizing: border-box;
    width: 40%;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 5; }
    #Welcome #wrapWelcome #texteWelcome {
      box-sizing: border-box;
      width: 100%;
      height: 50%;
      color: white;
      text-transform: uppercase; }
      #Welcome #wrapWelcome #texteWelcome H1 {
        font-size: 2vw; }
    #Welcome #wrapWelcome #wrapImput {
      box-sizing: border-box;
      height: 50px;
      width: 100%;
      position: relative;
      margin-top: 30px; }
      #Welcome #wrapWelcome #wrapImput input {
        display: block;
        width: 100%;
        height: 50px;
        padding: 0;
        border: solid #ccc 1px;
        box-sizing: border-box;
        padding-left: 10px;
        font-size: 20px;
        opacity: 0.85; }
        #Welcome #wrapWelcome #wrapImput input::placeholder {
          font-size: 20px; }
      #Welcome #wrapWelcome #wrapImput span {
        position: absolute;
        display: block;
        line-height: 50px;
        height: 50px;
        width: 50px;
        right: 0;
        top: 0;
        text-align: center;
        z-index: 2; }

@keyframes UpComing {
  from {
    opacity: 0;
    margin-top: 50px; }
  to {
    opacity: 1;
    margin-top: 0; } }
#OnTop {
  box-sizing: border-box;
  opacity: 0;
  margin-top: 50px;
  padding: 10px;
  width: 100%; }
  #OnTop.isHere {
    animation: UpComing 0.5s forwards; }
  #OnTop #WrapTopPost {
    width: 90%;
    margin: 100px auto auto auto;
    height: auto;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch; }
    #OnTop #WrapTopPost .wrapCard {
      width: 33.33%;
      height: auto;
      padding: 20px;
      box-sizing: border-box; }
    #OnTop #WrapTopPost .OneCardTop {
      background-color: white;
      overflow: hidden;
      position: relative;
      width: 100%;
      height: 500px;
      margin: 15px;
      border: 1px solid #D3D3D3;
      transition: 0.5s all; }
      #OnTop #WrapTopPost .OneCardTop:hover {
        transition: 0.5s all;
        border: 1px solid white;
        box-shadow: 0px 3px 8px -5px rgba(0, 0, 0, 0.5);
        cursor: pointer; }
        #OnTop #WrapTopPost .OneCardTop:hover figure img {
          transform-origin: center;
          transform: scale(1.2);
          transition: all 0.2s; }
        #OnTop #WrapTopPost .OneCardTop:hover figure {
          height: 225px;
          transition: all 0.5s; }
        #OnTop #WrapTopPost .OneCardTop:hover figure:after {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.3); }
        #OnTop #WrapTopPost .OneCardTop:hover .CardDescr-More {
          opacity: 1;
          transition: all 0.25s; }
      #OnTop #WrapTopPost .OneCardTop a {
        display: block;
        cursor: pointer; }
      #OnTop #WrapTopPost .OneCardTop figure {
        width: 100%;
        height: 50%;
        position: relative;
        overflow: hidden;
        height: 250px;
        transition: all 0.5s; }
        #OnTop #WrapTopPost .OneCardTop figure img {
          transform-origin: center;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: auto;
          transition: all 0.3s;
          transform: scale(1); }
      #OnTop #WrapTopPost .OneCardTop .CardMedia {
        width: 100%;
        height: auto;
        top: 0;
        left: 0; }
      #OnTop #WrapTopPost .OneCardTop .imgCard {
        margin: 0; }

.CardDescription {
  order: 2;
  padding: 16px;
  height: auto; }
  .CardDescription H3 {
    color: #474747;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.25em; }
  .CardDescription a {
    text-decoration: none; }

.bodyCard {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column; }

.CardDescr-More {
  position: absolute;
  opacity: 0;
  bottom: 15px;
  left: 15px;
  transition: all 0.25s; }
  .CardDescr-More a {
    color: #C9C9C9;
    text-decoration: none; }

#contentMainAside {
  width: 100%;
  margin: auto;
  height: auto;
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: stretch; }

#Articles {
  width: 74%;
  margin: auto;
  height: auto;
  box-sizing: border-box; }
  #Articles .OneArticle {
    left: 0;
    width: 80%;
    height: 200px;
    margin-left: 9%;
    margin-bottom: 40px;
    box-shadow: 0px 3px 8px -5px rgba(0, 0, 0, 0.5); }

#Aside {
  width: 26%; }

.titreSection {
  color: #9DA532;
  font-size: 1.2vw;
  width: 30%;
  height: 20%;
  margin: 70px; }

.tags {
  text-transform: uppercase;
  font-size: 12px;
  display: flex; }
  .tags a {
    color: #C9C9C9; }
  .tags span {
    margin-right: 5px; }

span.dot {
  display: inline-block;
  background: black;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin: 6px 3px; }
