@import url(https://fonts.googleapis.com/css?family=Raleway:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
body {
  margin: 0;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: white;
  height: 100%;
  width: 100%;
}

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

.wrap {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.26);
}

header {
  background-color: rgba(0, 0, 0, 0.63);
  background: -webkit-gradient(linear, left top, left bottom, from(#00000021), to(rgba(0, 0, 0, 0.932)));
  background: linear-gradient(#00000021, rgba(0, 0, 0, 0.932));
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1rem;
}

.top {
  height: 0%;
}

@media (min-width: 850px) {
  .top {
    height: 20%;
  }
}

.centre {
  height: 60%;
  z-index: 100;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: center;
}

@media (min-width: 850px) {
  .centre {
    height: 40%;
  }
}

.centre h2 {
  font-size: 1em;
  letter-spacing: 1.3em;
  -webkit-animation: translatebottom 2s ease;
          animation: translatebottom 2s ease;
  margin-top: 0;
  font-family: "Raleway";
  font-weight: 200;
}

@media (min-width: 850px) {
  .centre h2 {
    font-size: 1.5em;
    letter-spacing: 2em;
  }
}

.centre svg {
  -webkit-animation: translatetop 2s ease;
          animation: translatetop 2s ease;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 10em;
  width: 100%;
}

@media (min-width: 850px) {
  .centre svg {
    height: 20em;
  }
}

.centre__menu {
  padding-top: 2em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 850px) {
  .centre__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.centre__menu__puce {
  padding: 0.5em 0em;
  font-family: "Raleway";
  text-transform: uppercase;
  font-size: 1.2em;
  text-decoration: none;
  color: white;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 850px) {
  .centre__menu__puce {
    padding: 0 2em;
  }
}

.centre__menu__puce:hover {
  color: gray;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.bas {
  z-index: 100;
  height: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.bas__scroll {
  height: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 5%;
}

.bas__social {
  z-index: 100;
  height: 25%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.bas__social svg {
  fill: white;
  border: white 0.1em solid;
  margin: 0 0.5em;
  padding: 0.3em;
  border-radius: 3em;
  width: 2.6em;
  height: 2.6em;
}

@-webkit-keyframes translatetop {
  from {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes translatetop {
  from {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes translatebottom {
  from {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes translatebottom {
  from {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes barre {
  from {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 0;
    opacity: 0;
  }
  to {
    width: 25%;
  }
}

@keyframes barre {
  from {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 0;
    opacity: 0;
  }
  to {
    width: 25%;
  }
}

.photo {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.photo img {
  width: 30%;
}

hr {
  width: 25%;
  -webkit-animation: barre 2s ease;
          animation: barre 2s ease;
}

@-webkit-keyframes puce {
  from {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes puce {
  from {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#puce1 {
  -webkit-animation: puce 3s ease;
          animation: puce 3s ease;
}

#puce2 {
  -webkit-animation: puce 3.5s ease;
          animation: puce 3.5s ease;
}

#puce3 {
  -webkit-animation: puce 4s ease;
          animation: puce 4s ease;
}

#puce4 {
  -webkit-animation: puce 4.5s ease;
          animation: puce 4.5s ease;
}
/*# sourceMappingURL=custom.css.map */