/**
* ANIMATIONS
**/
.stars {
  position: absolute;
  width: 100%;
  height: 100vh;
}

.stars-rotate {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.s-1 {
  position: absolute;
  top: 450px;
  left: 150px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #D3D362;
  -webkit-animation-name: shooting, stars, fade;
          animation-name: shooting, stars, fade;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-fill-mode: ease-in-out;
          animation-fill-mode: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-filter: drop-shadow(0 0 3px #efefaa);
          filter: drop-shadow(0 0 3px #efefaa);
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  opacity: 0;
}

.s-1:before {
  content: "";
  position: absolute;
  top: 1px;
  right: 0px;
  width: 50px;
  border-radius: 50%;
  height: 2px;
  background-image: -webkit-gradient(linear, right top, left top, from(#efefaa), to(rgba(0, 0, 255, 0)));
  background-image: linear-gradient(to left rgba(0, 0, 255, 0), #efefaa, rgba(0, 0, 255, 0));
  -webkit-animation-name: shooting2, fade;
          animation-name: shooting2, fade;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-fill-mode: ease-in;
          animation-fill-mode: ease-in;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  opacity: 0;
}

@-webkit-keyframes stars {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(800px);
            transform: translateX(800px);
  }
}

@keyframes stars {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(800px);
            transform: translateX(800px);
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes shooting {
  0% {
    width: 0px;
    height: 0px;
  }
  40% {
    width: 4px;
    height: 4px;
  }
  50% {
    width: 0px;
    height: 0px;
  }
}

@keyframes shooting {
  0% {
    width: 0px;
    height: 0px;
  }
  40% {
    width: 4px;
    height: 4px;
  }
  50% {
    width: 0px;
    height: 0px;
  }
}

@-webkit-keyframes shooting2 {
  0% {
    width: 0px;
    height: 0px;
  }
  25% {
    width: 100px;
    height: 2px;
  }
  40% {
    width: 0px;
    height: 0px;
  }
}

@keyframes shooting2 {
  0% {
    width: 0px;
    height: 0px;
  }
  25% {
    width: 100px;
    height: 2px;
  }
  40% {
    width: 0px;
    height: 0px;
  }
}

@-webkit-keyframes lineAnim {
  to {
    stroke-dashoffset: 0;
    stroke-width: 0px;
  }
}

@keyframes lineAnim {
  to {
    stroke-dashoffset: 0;
    stroke-width: 0px;
  }
}

@-webkit-keyframes strokeAnim {
  from {
    stroke-width: 0px;
  }
  to {
    stroke-width: 0px;
  }
}

@keyframes strokeAnim {
  from {
    stroke-width: 0px;
  }
  to {
    stroke-width: 0px;
  }
}

@-webkit-keyframes fillAnim {
  to {
    fill-opacity: 1;
  }
}

@keyframes fillAnim {
  to {
    fill-opacity: 1;
  }
}

@-webkit-keyframes scaleAnim {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  95% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleAnim {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  95% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes scaleAnim2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleAnim2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.005);
            transform: scale(1.005);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.005);
            transform: scale(1.005);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  5%, 15%, 25%, 35%, 55%, 65%, 75%, 95% {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  10%, 30%, 40%, 50%, 70%, 80%, 90% {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
  20%, 60% {
    -webkit-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
  45%, 85% {
    -webkit-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  5%, 15%, 25%, 35%, 55%, 65%, 75%, 95% {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  10%, 30%, 40%, 50%, 70%, 80%, 90% {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
  20%, 60% {
    -webkit-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
  45%, 85% {
    -webkit-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

/**
* BODY / BLOC PAGES
**/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

}

body {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#010c30), color-stop(#0a2746), color-stop(#083251), color-stop(#0b5e85), color-stop(#166d8a), color-stop(#2ca099), color-stop(#42bf7a), color-stop(#b18029), color-stop(#a02401), color-stop(#790000), color-stop(#540404), color-stop(#1e0101), to(#130101));
  background-image: linear-gradient(to bottom, #010c30, #0a2746, #083251, #0b5e85, #166d8a, #2ca099, #42bf7a, #b18029, #a02401, #790000, #540404, #1e0101, #130101);
  background-size: cover;
  color: #ededed;
  overflow-x: hidden !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#cursor {
  border-radius: 1000px;
  width: 50px;
  height: 50px;
  border: 2px solid #d2ce64;
  margin: -20px;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
  z-index: 1000000000;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#pointer {
  border-radius: 50%;
  width: 3px;
  height: 3px;
  border: 3px solid #d2ce64;
  margin: 2px;
  z-index: 1000000001;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.magnet {
  border: 2px solid #b53232;
}

@-webkit-keyframes cursorClick {
  from, to {
    border: 3px solid #d2ce64;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    border: 3px solid #d2ce6400;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  70% {
    border: 2px solid #d2ce6400;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

@keyframes cursorClick {
  from, to {
    border: 3px solid #d2ce64;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    border: 3px solid #d2ce6400;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  70% {
    border: 2px solid #d2ce6400;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

#bloc-page {
  cursor: none;
  position: relative;
  overflow: hidden !important;
  background-image: url(../img/stars3.png);
  background-size: contain;
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: 50%;
}

#bloc-page-2 {
  cursor: auto;
  background-color: grey;
  width: 100%;
  min-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#bloc-page3{
	cursor:auto;
}
#bloc-page-2 form input, #bloc-page-2 form input[type="submit"] {
  width: 200px;
  height: 40px;
  margin: 10px;
}

#bloc-page-2 form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/**
* BUTTONS (SOUND, ARROW, BARS)
**/
.sound {
  position: fixed;
  bottom: 30px;
  left: 30px;
  color: #ededed;
  z-index: 99999;
  padding: 10px;
  border-radius: 50%;
}

.sound:hover {
  color: white;
  background-color: rgba(239, 239, 239, 0.4);
}

.fa-bars {
  position: fixed;
  top: 30px;
  right: 30px;
  color: #ededed;
  padding: 10px;
  border-radius: 50%;
  z-index: 9995;
}

.fa-bars:hover {
  color: white;
  background-color: rgba(239, 239, 239, 0.4);
}

.fa-arrow-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: #ededed;
  z-index: 99999;
  padding: 10px;
  border-radius: 50%;
}

.fa-arrow-up:hover {
  color: white;
  background-color: rgba(239, 239, 239, 0.4);
}

/**
* SCROLLING MENU
**/
.hidden-menu {
  width: 100%;
  position: fixed;
  background-color: #ededed;
  text-align: center;
  padding: 10px;
  right: -100%;
  z-index: 9999;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hidden-menu img {
  width: 150px;
}

.hidden-menu ul {
  list-style-type: none;
}

.hidden-menu ul li {
  margin: 1em;
}

.hidden-menu ul li p {
  text-decoration: none;
  color: #0a0a0a;
  font-size: 2em;
}

.hidden-menu ul li p:hover {
  color: #6c6c6c;
}

.hidden-menu ul li span {
  color: #0a0a0a;
}

.hidden-menu ul li span:hover {
  color: #6c6c6c;
}

/**
* ANIMATED LOGO
**/
.main-logo {
  z-index: 10;
  max-width: 600px;
  width: 55%;
}

#logo-svg {
  -webkit-animation: scaleAnim2 5s linear infinite 5s;
          animation: scaleAnim2 5s linear infinite 5s;
}

#logo-svg g {
  fill-opacity: 0;
  -webkit-animation: fillAnim 3s forwards 3s, strokeAnim 3s linear 3s;
          animation: fillAnim 3s forwards 3s, strokeAnim 3s linear 3s;
}

path {
  -webkit-animation: strokeAnim 3s linear 3s;
          animation: strokeAnim 3s linear 3s;
}

#logo-svg .cls-1 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 4180.26953125;
  stroke-dashoffset: 4180.26953125;
  -webkit-animation: lineAnim 3s linear forwards, strokeAnim 3s linear 3s;
          animation: lineAnim 3s linear forwards, strokeAnim 3s linear 3s;
}

#logo-svg .cls-2 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 6141.5166015625;
  stroke-dashoffset: 6141.5166015625;
  -webkit-animation: lineAnim 3s linear forwards , strokeAnim 3s linear 3s;
          animation: lineAnim 3s linear forwards , strokeAnim 3s linear 3s;
}

#logo-svg .cls-3 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 312.348388671875;
  stroke-dashoffset: 312.348388671875;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-4 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 195.5092010498047;
  stroke-dashoffset: 195.5092010498047;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-5 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 237.48936462402344;
  stroke-dashoffset: 237.48936462402344;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-6 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 235.11679077148438;
  stroke-dashoffset: 235.11679077148438;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-7 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 195.5285186767578;
  stroke-dashoffset: 195.5285186767578;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-8 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 204.570556640625;
  stroke-dashoffset: 204.570556640625;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-9 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 195.5360565185547;
  stroke-dashoffset: 195.5360565185547;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-10 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 143.5999755859375;
  stroke-dashoffset: 143.5999755859375;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-11 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 199.3330535888672;
  stroke-dashoffset: 199.3330535888672;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-12 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 231.3539276123047;
  stroke-dashoffset: 231.3539276123047;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-13 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 195.53781127929688;
  stroke-dashoffset: 195.53781127929688;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

#logo-svg .cls-14 {
  stroke-width: 10px;
  fill: #ededed;
  stroke: #D3D362;
  stroke-dasharray: 123.75540161132812;
  stroke-dashoffset: 123.75540161132812;
  -webkit-animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
          animation: lineAnim 2s linear forwards 1s, strokeAnim 3s linear 3s;
}

/**
* WELCOME SECTION
**/
.section-welcome {
  width: 100%;
  height: 100vh;
  text-align: center;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.section-welcome span {
  font-size: 12vw;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.section-welcome span:hover {
  -webkit-animation: shake 0.5s linear infinite;
          animation: shake 0.5s linear infinite;
  color: #D3D362;
  text-shadow: #ededed 2px 2px 10px;
}

.welcome1, .welcome2, .welcome3 {
  position: relative;
  -webkit-transition: translate 4s ease-in;
  transition: translate 4s ease-in;
}

/**
* ABOUT SECTION
**/
.about {
  width: 100%;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about p {
  font-size: 4vw;
  width: 100%;
}

.layer-about {
  width: 200VW;
  height: 100vh;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.layer-about-img {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.layer-about img {
  width: 600px;
  position: relative;
  -webkit-animation: rotate 20s infinite linear;
          animation: rotate 20s infinite linear;
}

.layer-about-text {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
}

.layer-about-text p span {
  text-decoration: none;
  color: #D3D362;
}

.layer-about-text p span:hover {
  color: #ededed;
  text-decoration: underline;
}

/**
* WORS SECTION
**/
.works {
  width: 100%;
  height: 100vh;
  position: relative;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 200px;
}

.works h2 {
  font-size: 15vw;
  z-index: 2;
  text-align: center;
}

.ufo {
  position: absolute;
  width: 300px;
  left: -150px;
  top: 100%;
}

.tv {
  width: 800px;
  height: 800px;
  position: relative;
  top: -640px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: auto;
}

.diaporama {
  width: 100%;
  text-align: center;
}

#carousel {
  width: 650px;
  height: 600px;
  margin: auto;
  overflow: hidden;
  background-color: #0a0a0a;
  border-radius: 100px;
  z-index: 1;
}

#carousel-slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
  z-index: 1;
}

.imgSlide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.projects {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}

.projects a {
  z-index: 2;
}

.projects a span {
  text-decoration: none;
  margin: 10px;
  padding: 5px;
  font-size: 25px;
  border-radius: 50%;
}

.projects a span:hover {
  color: grey;
  text-decoration: none;
}

#buttons {
  width: 200px;
  position: relative;
  left: 50%;
  top: 680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 122222222;
}

#buttons span {
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #915807;
  color: #CAD5DB;
  border-right: 4px solid #505756;
  border-bottom: 4px solid #505756;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
}

#buttons span:hover {
  background-color: #E3C289;
  color: #505756;
}

/**
* CONTACT SECTION
**/
.contact {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -300px;
}

.contact h2 {
  font-size: 12vw;
  z-index: 1;
  text-align: center;
}

.contact img {
  position: absolute;
  width: 200px;
  left: -200px;
  top: 50%;
}

.contact-form {
  width: 100%;
  margin-bottom: 30px;
  margin-top: 50px;
}

.contact-form form {
  margin: auto;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
  padding: 50px 20px;
  border-radius: 20px;
}

.contact-form form input {
  color: #ededed;
  letter-spacing: 3px;
  width: 90%;
  height: 50px;
  margin: 10px;
  text-align: center;
  font-size: 20px;
  border-radius: 20px;
  background-color: rgba(239, 239, 239, 0.4);
  outline:none;
}

.contact-form form h3{
  text-align: center;
}
.contact-form form input[type="submit"] {
  background-color: #ededed;
  color: black;
  margin-top: 30px;
}

.contact-form form input[type="submit"]:hover {
  background-color: #e68888;
}

.contact-form form textarea {
  width: 90%;
  border-radius: 20px;
  background-color: rgba(239, 239, 239, 0.4);
  padding: 30px;
  font-size: 20px;
  margin: 10px;
  color: #ededed;
  letter-spacing: 3px;
  outline:none;
}

.contact-form form label {
  margin: 5px;
  text-align: center;
  font-size: 20px;
}

.captcha {
  margin-top: 20px;
}

/**
* FOLLOW SECTION
**/
.follow-section {
  margin-top: 100px;
  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;
  background-image: url(../img/mars.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 200%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.follow-section h2 {
  font-size: 6vw;
  width: 100%;
  text-align: center;
  margin-bottom: 100px;
  margin-top: 100px;
}

.follow-section h1:hover {
  -webkit-animation: shake 1s linear infinite;
          animation: shake 1s linear infinite;
  color: #D3D362;
  text-shadow: #ededed 2px 2px 10px;
}

.follow-section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 100px auto;
}

.follow-section ul li {
  list-style: none;
  width: 200px;
  height: 200px;
  text-align: center;
  margin: 0 100px;
}

.follow-section ul li a {
  text-decoration: none;
  display: block;
  color: #0a0a0a;
  line-height: 200px;
  font-size: 100px;
  background-color: #ededed;
  -webkit-transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(0, 0);
          transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(0, 0);
  -webkit-box-shadow: -20px 10px 10px rgba(0, 0, 0, 0.5);
          box-shadow: -20px 10px 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.follow-section ul li a:before {
  content: "";
  position: absolute;
  top: 10px;
  left: -20px;
  height: 100%;
  width: 20px;
  background: #b1b1b1;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: rotate(0deg) skewY(-45deg);
          transform: rotate(0deg) skewY(-45deg);
}

.follow-section ul li a:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -10px;
  height: 20px;
  width: 100%;
  background: #b1b1b1;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: rotate(0deg) skewX(-45deg);
          transform: rotate(0deg) skewX(-45deg);
}

.follow-section ul li a:hover {
  -webkit-transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
          transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
  -webkit-box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.5);
          box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.5);
}

.follow-section p {
  font-size: 10px;
  font-family: sans-serif;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 30px;
}

.message {
  border: 1px solid black;
  border-radius: 6px;
  background-color: #c4c4c4;
  margin: 10px;
  padding: 10px;
}

.bloc-page3 {
  width: 100%;
  min-height: 100vh;
  background-color: white;
  color: black;
}

.bloc-page3 #messageTitle {
  color: black;
}

@media screen and (min-width: 3840px) {
  .tv {
    height: 1500px;
    width: 1500px;
    top: -1100px;
  }
  .layer-about img {
    width: 1000px;
  }
  #carousel {
    width: 1200px;
    height: 1000px;
  }
  #carousel-slides {
    height: 1000px;
  }
  #buttons {
    width: 400px;
    top: 1250px;
  }
  #buttons span {
    width: 100px;
    height: 100px;
    font-size: 40px;
    border-right: 10px solid #505756;
    border-bottom: 10px solid #505756;
    border-radius: 15px;
  }
}

@media screen and (min-width: 2561px) and (max-width: 3839px) {
  .tv {
    height: 1000px;
    width: 1000px;
    top: -790px;
  }
  .layer-about img {
    width: 1000px;
  }
  #carousel {
    width: 800px;
    height: 700px;
  }
  #carousel-slides {
    height: 700px;
  }
  #buttons {
    width: 280px;
    top: 815px;
  }
  #buttons span {
    width: 70px;
    height: 70px;
    font-size: 30px;
    border-right: 10px solid #505756;
    border-bottom: 10px solid #505756;
    border-radius: 15px;
  }
}

/**
* RESPONSIVE OVER 1080px
**/
@media screen and (min-width: 1081px) {
  .main-logo {
    z-index: 10;
    max-width: 2000px;
    width: 40%;
  }
}

/**
* RESPONSIVE UNDER 1080px
**/
@media screen and (max-width: 1080px) {
  body {
    cursor: auto;
  }
  #pointer {
    display: none;
  }
  #cursor {
    display: none;
  }
  .follow-section ul li {
    margin-right: 50px;
    margin-left: 50px;
    width: 80px;
    height: 80px;
  }
  .follow-section ul li a {
    line-height: 80px;
    font-size: 30px;
  }
  .follow-section {
    background-size: 400%;
  }
  .follow-section h1 {
    margin-top: 50px;
    margin-bottom: 10px;
  }
  .follow-section p {
    margin-top: 30px;
  }
}

/**
* RESPONSIVE BETEWEEN 768 and 433 orientation protrait (tablets portrait)
**/
@media only screen and (max-device-width: 768px) and (min-device-width: 433px) and (orientation: portrait) {
  #bloc-page{
    cursor: auto;
  }
  #pointer {
    display: none;
  }
  #cursor {
    display: none;
  }
  .sound {
    left: 10px;
    bottom: 10px;
  }
  .layer-about img {
    width: 400px;
  }
  .fa-arrow-up {
    right: 10px;
    bottom: 10px;
  }
  .fa-bars {
    right: 10px;
    top: 10px;
  }
  .layer-about img {
    width: 400px;
  }
  .tv {
    width: 720px;
    height: 720px;
    top: -560px;
  }
  .projects {
    margin-top: 50px;
  }
  .projects a span {
    padding: 4px;
    font-size: 13px;
  }
  #carousel {
    width: 600px;
    height: 500px;
  }
  #carousel-slides {
    height: 500px;
  }
  #buttons {
    width: 200px;
    top: 590px;
  }
  #buttons span {
    width: 50px;
    height: 50px;
    font-size: 25px;
    border-right: 2px solid #505756;
    border-bottom: 2px solid #505756;
    border-radius: 5px;
  }
  .ufo {
    position: absolute;
    width: 200px;
    left: -150px;
    top: 100%;
  }
  .contact img {
    width: 150px;
    left: -150px;
  }
  .follow-section ul li {
    margin-right: 50px;
    margin-left: 50px;
    width: 80px;
    height: 80px;
  }
  .follow-section ul li a {
    line-height: 80px;
    font-size: 30px;
  }
  .follow-section {
    background-size: 400%;
  }
  .follow-section h1 {
    margin-top: 50px;
    margin-bottom: 10px;
  }
  .follow-section p {
    margin-top: 30px;
  }
}

/**
* RESPONSIVE UNDER 832px orientation landscape (mobile landscape)
**/
@media only screen and (max-device-width: 832px) and (orientation: landscape) {
  #bloc-page{
    cursor: auto;
  }
  #pointer {
    display: none;
  }
  #cursor {
    display: none;
  }
  .sound {
    left: 10px;
    bottom: 10px;
  }
  .fa-arrow-up {
    right: 10px;
    bottom: 10px;
  }
  .fa-bars {
    right: 10px;
    top: 10px;
  }
  .main-logo {
    width: 35%;
  }
  .tv {
    height: 350px;
    width: 350px;
    top: -290px;
  }
  .layer-about img {
    width: 350px;
  }
  #carousel {
    width: 330px;
    height: 260px;
  }
  #carousel-slides {
    height: 260px;
  }
  .projects a span {
    padding: 4px;
    font-size: 13px;
  }
  .projects {
    margin-top: 10px;
  }
  #buttons {
    width: 100px;
    top: 283px;
  }
  #buttons span {
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 3px;
    border-right: 2px solid #505756;
    border-bottom: 2px solid #505756;
  }
  .ufo {
    width: 150px;
    left: -150px;
    top: 100%;
  }
  .contact img {
    width: 100px;
    left: -100px;
  }
  .follow-section ul li {
    margin-right: 50px;
    margin-left: 50px;
    width: 80px;
    height: 80px;
  }
  .follow-section ul li a {
    line-height: 80px;
    font-size: 30px;
  }
  .follow-section {
    background-size: 400%;
  }
  .follow-section h1 {
    margin-top: 50px;
    margin-bottom: 10px;
  }
  .follow-section p {
    margin-top: 30px;
  }
}

/**
* RESPONSIVE UNDER 423px orientation portrait (mbile portrait)
**/
@media only screen and (max-width: 432px) and (orientation: portrait) {
  #pointer {
    display: none;
  }
  #cursor {
    display: none;
  }

  #bloc-page{
    cursor: auto;
  }
  .sound {
    left: 10px;
    bottom: 10px;
  }
  .layer-about-text {
    padding: 5px;
    text-align: center;
  }
  .about h1 {
    font-size: 10vw;
  }
  .fa-arrow-up {
    right: 10px;
    bottom: 10px;
  }
  .fa-bars {
    right: 10px;
    top: 10px;
  }
  .tv {
    width: 350px;
    height: 400px;
    top: -302px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: auto;
  }
  #carousel {
    width: 300px;
    height: 270px;
  }
  #carousel-slides {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 270px;
  }
  .projects a span {
    margin-top: 10px;
    font-size: 13px;
  }
  .projects {
    margin: 15px;
  }
  #buttons {
    width: 100px;
    top: 328px;
  }
  #buttons span {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
  .contact-form {
    width: 98%;
    margin: auto;
  }
  .contact-form form {
    width: 98%;
  }
  .ufo {
    position: absolute;
    width: 150px;
    left: -150px;
    top: 100%;
  }
  .layer-about img {
    width: 300px;
  }
  .contact img {
    width: 100px;
    left: -100px;
  }
  .follow-section ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .follow-section ul li {
    margin-bottom: 100px;
    width: 100px;
    height: 100px;
  }
  .follow-section ul li a {
    line-height: 100px;
    font-size: 40px;
  }
  .follow-section {
    background-size: 500%;
  }
}
/*# sourceMappingURL=main.css.map */
