@charset "utf-8";
/* CSS Document */


/*Typing Accueil*/
.css-typing p {
  border-right: .15em solid #0c0c0c;
font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  white-space: nowrap;
  overflow: hidden;
}
.css-typing p:nth-child(1) {
  width: 12em;
  -webkit-animation: type 1.5s steps(40, end);
  animation: type 1.5s steps(40, end);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
} 
.css-typing p:nth-child(2) {
  width: 15em;
  opacity: 0;
  -webkit-animation: type2 2s steps(40, end);
  animation: type2 2s steps(40, end); 
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: .15em solid #0c0c0c;
  }
  100% {
    border: none;
  }
}

@-webkit-keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: .15em solid #0c0c0c;
  }
  100% {
    border: none;
  }
}

@keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid #0c0c0c;
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@-webkit-keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid #0c0c0c;
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    border-color: tranparent;
  }
}
/*Fin Typing Accueil*/




