* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  display: block;
  overflow-y: hidden;
}

.scroll {
  overflow-y: visible;
}

/* - - - - - - - - - -*/
/*     GOOGLE API     */
/* - - - - - - - - - -*/
@font-face {
  font-family: "Bungee Shade";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jkc6SjT.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* - - - - - - - - - -*/
/*     GOOGLE API     */
/* - - - - - - - - - -*/
a {
  color: inherit;
  text-decoration: none;
  scroll-behavior: smooth;
  display: none;
}

a:any-link {
  display: inherit;
}

h1 {
  text-shadow: rgba(255, 162, 0, 0.9) 0px 0px 22px;
  text-align: center;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  font-family: "Bungee Shade";
  font-weight: 900;
  text-transform: unset;
  letter-spacing: 0px;
  font-size: 50px;
  color: #bdbbc7;
  max-width: 533px;
  line-height: 55px;
}

/* rgba(13, 15, 16, 0.55); */
/* ANIMATION DUREE */
body {
  overflow-x: hidden;
  font-family: Sans-Serif;
  margin: 0;
  background-color: #e0e9ee;
  height: 100%;
  background: url(/images/svg/background.svg);
  background-attachment: fixed;
  background-size: contain;
  background-repeat: repeat;
  overflow-x: hidden;
}

/* NAVBAR - D */
.bar-presentation {
  position: sticky;
  top: 0px;
  bottom: 100px;
  display: flex;
  align-items: center;
  background: #232323;
  color: #cdcdcd;
  padding: 20px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  justify-content: space-between;
}
.bar-presentation .logo {
  line-height: 0;
  margin: 0 20px;
  height: 100%;
  width: 100px;
}
.bar-presentation .logo img {
  max-height: 40px;
  max-width: 100px;
  flex-shrink: 0;
  height: 50px;
  width: 50px;
}
.bar-presentation span {
  padding: 0 20px;
  font-size: 20px;
  cursor: pointer;
}
.bar-presentation span:hover {
  color: #00C6A7;
}

.menu-container {
  position: sticky;
  top: 78px;
  bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 10px;
  background: #2c2c2c;
  color: #cdcdcd;
  padding: 20px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
  /* Burger menu */
}
.menu-container a {
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
}
.menu-container a:hover {
  color: #00C6A7;
}
.menu-container input {
  display: block;
  width: 35px;
  height: 25px;
  margin: 0;
  position: absolute;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
.menu-container span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.menu-container span:first-child {
  transform-origin: 0% 0%;
}
.menu-container span:nth-child(3) {
  transform-origin: 0% 100%;
}
.menu-container input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(3px, -1px);
  background: #232323;
}
.menu-container input:checked ~ span:nth-child(4) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.menu-container input:checked ~ span:nth-child(3) {
  transform: rotate(-45deg) translate(-5px, 11px);
}
.menu-container .menu ul {
  list-style: none;
}
.menu-container .menu li {
  font-size: 22px;
}

/* mobile styles (768) */
@media only screen and (max-width: 700px) {
  .menu-container {
    flex-direction: column;
    align-items: flex-end;
  }
  .menu-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-logo img {
    max-height: 30px;
  }
  .menu {
    position: absolute;
    box-sizing: border-box;
    width: 300px;
    right: -300px;
    top: 0;
    margin: -20px;
    padding: 75px 50px 50px;
    background: #cdcdcd;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translateX(0%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  .menu-container input:checked ~ .menu {
    transform: translateX(-100%);
  }
}
/* desktop styles (768) */
@media only screen and (min-width: 700px) {
  .menu-container {
    width: 100%;
    top: 80px;
  }
  .menu-container a {
    color: #cdcdcd;
  }
  .menu-container input {
    display: none;
  }
  /* Burger menu */
  .menu-container span {
    display: none;
  }
  .menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .menu ul {
    margin: 0 auto;
    display: flex;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .menu li {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 700px) and (min-width: 1000px) {
  .menu li {
    margin: 0px 20px;
  }
}
/* NAVBAR - F */
/* BANNIERE */
@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}
/* BODY */
#container {
  min-height: 500px;
}
#container p, #container li, #container h3 {
  color: #cdcdcd;
}

/* TRANSITION */
.transition {
  position: relative;
  background: #7c7c7c;
  height: 10px;
  margin-top: 50px;
}

.transition::after {
  content: "";
  position: absolute;
  right: 0px;
  left: 0px;
  display: block;
  height: 50px;
  background-size: 50px 100%;
  background-image: linear-gradient(135deg, rgb(124, 124, 124) 25%, transparent 25%), linear-gradient(225deg, rgb(124, 124, 124) 25%, transparent 25%);
  background-position: 0px 0px;
  transform: translateY(-100%) rotate(180deg);
}

/* FOOTER */
footer {
  color: #cdcdcd;
  background-color: #7c7c7c;
  text-align: center;
  padding-top: 10px;
  /* ALL */
}
footer div {
  width: 100%;
  padding: 10px 20px;
  /* H6 */
}
footer div h6 {
  font-size: 22px;
  font-weight: 600;
}
footer div div {
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
footer div div a {
  margin: 0 auto;
  color: black;
}
footer div div a span {
  box-shadow: 0px 5px 10px black;
  color: white;
  padding: 5px 10px;
}
footer div div div {
  box-shadow: 0px 5px 10px black;
  width: 100%;
}
footer div div div img {
  min-height: 70px;
}
footer div div div a {
  cursor: pointer;
  min-height: 100px;
}
footer div div div div {
  display: grid;
}
footer div div div div span {
  padding: 5px 15px 5px 15px;
  width: 100%;
}
footer div .social {
  display: inherit;
}
footer div .social div {
  display: block;
  margin: 0 auto;
  height: 100%;
  width: 70%;
  transition: width 0.2s linear;
}
footer div .social div a {
  display: flex;
  flex-direction: column;
}
footer div h6 {
  margin: 10px 0;
}
footer span {
  display: block;
  background-color: #2c2c2c;
  padding: 10px 0;
  width: 100%;
}
@media only screen and (min-width: 650px) {
  footer .social {
    display: flex !important;
  }
  footer .social div:hover {
    width: 80%;
    transition: width 0.2s linear;
  }
}

/* -------------- */
/* --- Loader --- */
/* -------------- */
#loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transform: rotate3d(10, 0, 0, 90deg);
  animation: fin 5.2s linear;
}
#loader .cube {
  width: 100px;
  height: 100px;
  position: relative;
  perspective: 4000px;
  transform-style: preserve-3d;
  transform: rotateX(-36deg) rotateY(-405deg);
  animation: spin 5s linear;
  z-index: 9999999;
}
#loader .cube div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ff0033;
  border: 2px solid #fbfbfb;
  border-radius: 5px;
  box-shadow: 0 0 25px #ff0033;
}
#loader .cube .top {
  transform: rotateX(90deg) translateZ(50px);
  animation: shift-top 5s linear;
}
#loader .cube .bottom {
  transform: rotateX(-90deg) translateZ(50px);
  animation: shift-bottom 5s linear;
}
#loader .cube .right {
  transform: rotateY(90deg) translateZ(50px);
  animation: shift-right 5s linear;
}
#loader .cube .left {
  transform: rotateY(-90deg) translateZ(50px);
  animation: shift-left 5s linear;
}
#loader .cube .front {
  transform: translateZ(50px);
  animation: shift-front 5s linear;
}
#loader .cube .back {
  transform: rotateY(-180deg) translateZ(50px);
  animation: shift-back 5s linear;
}
@keyframes shift-top {
  33% {
    transform: rotateX(90deg) translateZ(50px);
  }
  50% {
    transform: rotateX(90deg) translateZ(100px);
    background-color: blue;
    box-shadow: 0 0 25px blue;
  }
  60% {
    transform: rotateX(90deg) translateZ(100px);
  }
  75% {
    transform: rotateX(90deg) translateZ(50px);
    background-color: green;
    box-shadow: 0 0 25px green;
  }
}
@keyframes shift-bottom {
  33% {
    transform: rotateX(-90deg) translateZ(50px);
  }
  50% {
    transform: rotateX(-90deg) translateZ(100px);
    background-color: blue;
    box-shadow: 0 0 25px blue;
  }
  60% {
    transform: rotateX(-90deg) translateZ(100px);
  }
  75% {
    transform: rotateX(-90deg) translateZ(50px);
    background-color: green;
    box-shadow: 0 0 25px green;
  }
}
@keyframes shift-right {
  33% {
    transform: rotateY(90deg) translateZ(100px);
  }
  50% {
    transform: rotateY(90deg) translateZ(50px);
    background-color: blue;
    box-shadow: 0 0 25px blue;
  }
  60% {
    transform: rotateY(90deg) translateZ(50px);
  }
  75% {
    transform: rotateY(90deg) translateZ(100px);
    background-color: green;
    box-shadow: 0 0 25px green;
  }
}
@keyframes shift-left {
  33% {
    transform: rotateY(-90deg) translateZ(100px);
  }
  50% {
    transform: rotateY(-90deg) translateZ(50px);
    background-color: blue;
    box-shadow: 0 0 25px blue;
  }
  60% {
    transform: rotateY(-90deg) translateZ(50px);
  }
  75% {
    transform: rotateY(-90deg) translateZ(100px);
    background-color: green;
    box-shadow: 0 0 25px green;
  }
}
@keyframes shift-front {
  33% {
    transform: translateZ(100px);
  }
  50% {
    transform: translateZ(50px);
    background-color: blue;
    box-shadow: 0 0 25px blue;
  }
  60% {
    transform: translateZ(50px);
  }
  75% {
    transform: translateZ(100px);
    background-color: green;
    box-shadow: 0 0 25px green;
  }
}
@keyframes shift-back {
  33% {
    transform: rotateY(-180deg) translateZ(100px);
  }
  50% {
    transform: rotateY(-180deg) translateZ(50px);
    background-color: blue;
    box-shadow: 0 0 25px blue;
  }
  60% {
    transform: rotateY(-180deg) translateZ(50px);
  }
  75% {
    transform: rotateY(-180deg) translateZ(100px);
    background-color: green;
    box-shadow: 0 0 25px green;
  }
}
@keyframes spin {
  0% {
    transform: rotateX(45deg) rotateY(45deg);
    perspective: 4000px;
  }
  20% {
    perspective: 400px;
  }
  33% {
    transform: rotateX(36deg) rotateY(405deg);
    perspective: 4000px;
  }
  50% {
    perspective: 400px;
  }
  60% {
    transform: rotateX(-36deg) rotateY(-405deg);
    perspective: 4000px;
  }
  80% {
    perspective: 400px;
  }
  100% {
    transform: rotateX(-36deg) rotateY(-405deg);
    perspective: 4000px;
  }
}
@keyframes fin {
  0% {
    transform: rotate3d(10, 0, 0, 180deg);
  }
  90% {
    transform: rotate3d(10, 0, 0, 180deg);
  }
  100% {
    transform: rotate3d(10, 0, 0, 90deg);
  }
}

@keyframes changeH {
  0% {
    transform: rotate3d(10, 0, 0, 180deg);
  }
  100% {
    transform: rotate3d(10, 0, 0, 90deg);
  }
}
.fondu-out {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

/* ANIMATION */
.fadeIn:nth-child(odd) {
  animation: fadeInOutLeft 0.6s linear;
}

.fadeIn:nth-child(even) {
  animation: fadeInOutRigth 0.6s linear;
}

@keyframes fadeInOutLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInOutRigth {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*# sourceMappingURL=base.css.map */
