
.contact {
  margin-bottom: 50px;
  min-height: 40vh;
  margin: 0 auto 50px;
  .row {
    display: flex;
    margin: 0px auto 50px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    .bloc {
      max-width: 100%;
      opacity: 0;
      animation: FadeIn linear .5s;
      animation-fill-mode: forwards;
      animation-delay: 1s;
    }
  }
}