* {
  margin: 0;
  cursor: none;
}

body {
  background-color: #000;
  color: #FFFCF4;
  position: relative;
}

h1, h2, p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
}

.wipe-transition {
  width: 100vw;
  height: 100vh;
  background-color: #FFFCF4;
  position: fixed;
  left: -130%;
  z-index: 999999999;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.wipe-transition2 {
  width: 100vw;
  height: 100vh;
  background-color: #000;
  position: fixed;
  left: -130%;
  z-index: 999999999;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.main-2 {
  transition: 0.8s;
}

.main-3 {
  transition: 0.8s;
}

.cursor-section {
  display: none;
}

@media screen and (min-width: 768px) {
  .cursor-section {
    width: 100vw;
    display: block;
    height: 100vh;
    background-color: transparent;
    position: fixed;
    z-index: 99999999;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  #cursor {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: #FE434A;
    pointer-events: none;
    z-index: 999;
  }
  #cursor-border {
    --size: 50px;
    position: fixed;
    top: calc(var(--size) / -2);
    left: calc(var(--size) / -2);
    width: var(--size);
    height: var(--size);
    box-shadow: 0 0 0 1px #FE434A;
    pointer-events: none;
    transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out, height 0.15s ease-out, background-color 0.15s ease-out;
    z-index: 999;
  }
}
.side {
  width: 160px;
  height: 100vh;
  position: fixed;
  left: -160px;
  top: 0;
  background-color: #000;
  padding: 40px;
  box-sizing: border-box;
  transition: 0.8s;
  z-index: 99999;
}
.side--logo {
  font-family: "MangoGrotesqueBlack";
  font-size: 50px;
  margin-bottom: 40px;
}
.side--nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-transform: uppercase;
  height: 90%;
  font-family: "MangoGrotesqueMed";
  font-size: 25px;
}
.side--nav .link:hover {
  color: #FE434A;
}
.side--nav .link {
  margin-bottom: 10px;
}
.side--nav--top {
  list-style: none;
  height: auto;
}
.side--nav--top--title {
  font-family: "MangoGrotesqueBlack";
  font-size: 35px;
  margin-bottom: 20px;
  color: #FE434A;
}
.side--nav--bot {
  list-style: none;
  height: auto;
  transform: translateY(-5vh);
}

@media screen and (min-width: 1024px) {
  .side {
    width: 300px;
    left: -300px;
  }
  .side--nav--bot {
    transform: translateY(0);
  }
}
.menu-btn {
  width: 60px;
  height: 30px;
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 99999;
  transition: 0.8s;
}

.bar {
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #000;
  border-radius: 1px;
  left: 0;
  transition: opacity 0.4s, background 0.2s ease-out, transform 0.8s, top 0.8s;
}

.bar::after {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  background-color: #FFFCF4;
  transform: translateY(2px);
}

.bar:nth-child(1) {
  top: 0;
}

.bar:nth-child(2) {
  top: 10px;
}

.bar:nth-child(3) {
  top: 20px;
}

.menu-btn.active-section .bar:nth-child(1) {
  top: 10px;
  transform: rotate(-12deg);
}

.menu-btn.active-section .bar:nth-child(2) {
  opacity: 0;
}

.menu-btn.active-section .bar:nth-child(3) {
  top: 10px;
  transform: rotate(12deg);
}

.menu-btn.active-section .bar {
  background: #000;
  z-index: 100;
}

.active-section {
  transform: translateX(160px);
}

.active-side {
  left: 0;
}

@media screen and (min-width: 1024px) {
  .active-section {
    transform: translateX(300px);
  }
}
.header-type2 {
  width: 100vw;
  height: 20vh;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 20px;
  padding-top: 10px;
  box-sizing: border-box;
  min-height: 140px;
}
.header-type2--title {
  font-family: "MangoGrotesqueBlack";
  z-index: 4;
  font-size: 100px;
  text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
  .header-type2 {
    height: 40vh;
    min-height: 400px;
  }
  .header-type2--title {
    font-size: 370px;
    margin-right: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .header-type2 {
    height: 40vh;
    min-height: 500px;
  }
  .header-type2--title {
    font-size: 500px;
    margin-right: 40px;
  }
}
.ml13 .letter {
  display: inline-block;
  line-height: 1em;
}

.header {
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.header--container {
  width: 100%;
  transform: translateY(-80px);
}
.header--container--nav {
  list-style: none;
  color: #FFFCF4;
  text-transform: uppercase;
  font-family: "MangoGrotesqueBlack";
  color: #FFFCF4;
  font-size: 30px;
  display: flex;
  width: 100%;
  padding-bottom: 40px;
  justify-content: space-between;
  padding: 0px 40px 40px 40px;
  box-sizing: border-box;
}
.header--container--nav--link:hover {
  color: #FE434A;
}
.header--container--wrapvid {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
.header--container--wrapvid--title {
  font-family: "MangoGrotesqueBlack";
  z-index: 4;
  font-size: 170px;
  text-transform: uppercase;
  position: absolute;
  bottom: -130px;
  left: 40px;
}
.header--container--wrapvid video {
  width: 140%;
}
.header--bandeau {
  bottom: 30px;
  width: 100%;
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  animation: bandeau 20s linear infinite;
  color: #FFFCF4;
}
.header--bandeau span {
  white-space: nowrap;
  font-family: "MangoGrotesqueBlack";
  text-transform: uppercase;
  font-size: 50px;
}
.header--bandeau span b {
  font-family: "MangoGrotesqueExtLt";
  color: #FE434A;
}

.bandeau2 {
  top: 30px;
  bottom: auto;
  animation: bandeau2 20s linear infinite;
}

@keyframes bandeau {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes bandeau2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.header-deco {
  display: none;
}

/* RESPONSIVE  */
.ml13 .letter {
  display: inline-block;
  line-height: 1em;
}

.noise {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200vh;
  background: transparent url("http://assets.iceable.com/img/noise-transparent.png") repeat 0 0;
  background-repeat: repeat;
  animation: bg-animation 0.2s infinite;
  z-index: 5;
}

@keyframes bg-animation {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -5%);
  }
  20% {
    transform: translate(-10%, 5%);
  }
  30% {
    transform: translate(5%, -10%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 5%);
  }
  60% {
    transform: translate(15%, 0);
  }
  70% {
    transform: translate(0, 10%);
  }
  80% {
    transform: translate(-15%, 0);
  }
  90% {
    transform: translate(10%, 5%);
  }
  100% {
    transform: translate(5%, 0);
  }
}
@media screen and (min-width: 768px) {
  .header--container {
    width: 80%;
    transform: translateY(-30px);
  }
  .header--container--nav {
    justify-content: flex-end;
    padding: 0;
    padding-bottom: 40px;
  }
  .header--container--nav--link {
    margin-left: 40px;
  }
  .header--container--wrapvid--title {
    left: -50px;
    bottom: -150px;
  }
  .header--container--wrapvid video {
    width: 100%;
  }
  .header-deco {
    display: block;
    position: absolute;
  }
  .header-deco--deco1 {
    top: 150px;
    left: -115px;
    transform: rotate(90deg);
    height: 15px;
  }
  .header-deco--deco2 {
    top: 50%;
    right: -30px;
  }
  .header-deco--deco3 {
    top: -30px;
    left: -30px;
  }
  .header-deco--deco4 {
    bottom: -30px;
    right: -30px;
    transform: scale(-100%, -100%);
  }
}
@media screen and (min-width: 1024px) {
  .header--container {
    width: 60%;
    max-width: 1080px;
    transform: translateY(-50px);
  }
  .header--container--wrapvid--title {
    left: -60px;
    bottom: -180px;
    font-size: 300px;
  }
  .header--container--wrapvid video {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .header--container--wrapvid--title {
    font-size: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .header--container--wrapvid--title {
    font-size: 420px;
  }
}
main {
  position: relative;
  overflow: hidden;
}

.main-2 {
  transition: 0.8s;
  width: 100%;
  margin: auto;
}

.ml16 .letter {
  display: inline-block;
}

.teteproj {
  height: 60vh;
  width: 100%;
  background-color: #FFFCF4;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
  font-family: "MangoGrotesqueMed";
  padding: 30px;
  box-sizing: border-box;
}
.teteproj--title {
  font-family: "MangoGrotesqueBlack";
  text-transform: uppercase;
  font-size: 80px;
  line-height: 68px;
  width: 80%;
  height: 100%;
}
.teteproj--right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: #FE434A;
}
.teteproj--right--subtitle {
  font-size: 30px;
}

.proj-desk {
  display: none;
}

.proj-mobile {
  height: 60vh;
  overflow-x: scroll;
  overflow-y: hidden;
}
.proj-mobileimg {
  height: 100%;
}

@media screen and (min-width: 768px) {
  .proj-desk {
    display: block;
    height: 100vh;
  }
  .proj-desk2 {
    display: block;
    height: 100vh;
  }
  .proj-mobile {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .teteproj {
    height: 40vh;
    min-height: 415px;
    padding: 45px;
    padding-left: 100px;
    flex-direction: row;
  }
  .teteproj--title {
    font-family: "MangoGrotesqueBlack";
    text-transform: uppercase;
    font-size: 150px;
    line-height: 120px;
    width: 65%;
    height: 100%;
    text-align: left;
  }
  .teteproj--right {
    width: 30%;
    justify-content: space-between;
  }
  .teteproj--right--subtitle {
    font-size: 50px;
  }
  .teteproj--right--text {
    font-size: 19px;
    font-family: "MangoGrotesque";
  }
}
@media screen and (min-width: 1400px) {
  .teteproj--title {
    font-size: 200px;
    line-height: 160px;
  }
  .teteproj--right {
    width: 20%;
    justify-content: space-between;
  }
  .teteproj--right--subtitle {
    font-size: 60px;
  }
  .teteproj--right--text {
    font-size: 21px;
    font-family: "MangoGrotesque";
  }
}
/* .animation-titrage{
    animation: titrage 1s ease-out
}

@keyframes titrage {

    0%{
        transform: translateY(-100%);

    }

    100%{
        transform: translateY(0%);
    }
} */
@font-face {
  font-family: "Agora";
  src: url("font/AgoraVF.woff") format("woff");
}
@font-face {
  font-family: "Klarah-Bold";
  src: url("font/Klarah-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "SKAZA";
  src: url("font/SKAZAVF.ttf") format("truetype");
}
input {
  border: none;
}

input:focus {
  outline: none !important;
}

.main {
  display: flex;
  flex-direction: column;
  width: 100vw;
  font-family: "MangoGrotesque";
  font-size: 18px;
  text-transform: uppercase;
}
.main--typo {
  width: 100vw;
  display: flex;
  flex-direction: column;
}
.main--typo--details {
  display: flex;
  flex-direction: column-reverse;
  padding: 20px;
}
.main--typo--details--button {
  border: 1px solid black;
  padding: 20px 0px;
  font-family: "MangoGrotesqueMed";
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  background-color: transparent;
  height: 50px;
  cursor: pointer;
}
.main--typo--details--button::before {
  content: "";
  position: absolute;
  background-color: black;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s;
}
.main--typo--details--button:hover::before {
  width: 100%;
}
.main--typo--details--button:hover span {
  color: white;
}
.main--typo--details--button span {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}
.main--typo--details--infos {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 23px;
  font-family: "MangoGrotesque";
}
.main--typo--details--infos--titre {
  border-right: 1px solid #000;
  padding-right: 100px;
  box-sizing: border-box;
}
.main--typo--details--range {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.main--typo--details--range input {
  width: 80%;
  color: black;
  margin-right: 10px;
}
.main--typo--details--range label {
  padding: 10px 0px;
}

@media screen and (min-width: 768px) {
  .main--typo--details {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    box-sizing: border-box;
  }
  .main--typo--details--button {
    min-width: 180px;
  }
  .main--typo--details--infos {
    min-width: 300px;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 0;
    width: 50%;
  }
  .main--typo--details--infos--titre {
    padding-right: 30px;
  }
  .main--typo--details--range {
    margin-bottom: 0px;
    max-width: 600px;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  .main--typo--details--range input {
    max-width: 200px;
  }
  .main--typo--details--range label {
    margin-right: 40px;
  }
}
input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 1px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -5px;
  height: 30px;
  width: 30px;
  border-radius: 100%;
}

@media screen and (min-width: 102px) {
  input[type=range]::-webkit-slider-thumb {
    margin-top: -5px;
    height: 10px;
    width: 10px;
  }
}
.typo-color1 {
  background-color: #FFFCF4;
  color: #000;
}

.range-dark::-webkit-slider-runnable-track {
  background-color: #000;
}

.range-dark::-webkit-slider-thumb {
  background-color: #000;
}

.range-clear::-webkit-slider-runnable-track {
  background-color: #FFFCF4;
}

.range-clear::-webkit-slider-thumb {
  background-color: #FFFCF4;
}

.typo-color2 {
  background-color: #000;
  color: #FFFCF4;
}

.button-clear {
  border: 1px solid #FFFCF4;
  color: #FFFCF4 !important;
}

.titre-clear {
  border-right: 1px solid #FFFCF4;
}

#preview-content {
  padding: 20px;
  box-sizing: border-box;
  font-weight: 100 900;
  font-size: 100px;
}

#preview-content2 {
  padding: 20px;
  box-sizing: border-box;
  font-weight: 900;
  font-size: 100px;
}

.main--typo--details--button {
  border: 1px solid black;
  padding: 20px 0px;
  font-family: "MangoGrotesqueMed";
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  background-color: transparent;
  height: 50px;
  min-width: 160px;
  cursor: pointer;
}
.main--typo--details--button::before {
  content: "";
  position: absolute;
  background-color: black;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s;
}
.main--typo--details--button:hover::before {
  width: 100%;
}
.main--typo--details--button:hover span {
  color: white;
}
.main--typo--details--button span {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}
.main--typo--details--button-clear {
  border: 1px solid #FFFCF4;
  padding: 20px 0px;
  font-family: "MangoGrotesqueMed";
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  background-color: transparent;
  height: 50px;
  min-width: 160px;
  min-width: 160px;
  color: #FFFCF4;
  cursor: pointer;
}
.main--typo--details--button-clear::before {
  content: "";
  position: absolute;
  background-color: #FFFCF4;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s;
}
.main--typo--details--button-clear:hover::before {
  width: 100%;
}
.main--typo--details--button-clear:hover span {
  color: #000;
}
.main--typo--details--button-clear span {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}

[contenteditable]:focus {
  outline: 0px solid transparent;
}

.main-galerie {
  width: 100vw;
  padding: 40px;
  box-sizing: border-box;
}
.main-galerie img {
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (min-width: 728px) {
  .main-galerie {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .main-galerie {
    -moz-columns: 3;
         columns: 3;
    -moz-column-gap: 40px;
         column-gap: 40px;
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (min-width: 1600px) {
  .main-galerie {
    padding-left: 400px;
    padding-right: 400px;
  }
}
.main-contact {
  width: 280px;
  float: right;
  padding: 0 40px;
  font-family: "MangoGrotesque";
  display: flex;
  flex-direction: column;
}
.main-contact--container {
  width: 280px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.main-contact--contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.main-contact--contact p {
  font-size: 30px;
}
.main-contact--contact img {
  width: 30px;
  margin-right: 15px;
}
.main-contact--text {
  text-align: justify;
  font-size: 23px;
  margin-top: 50px;
}

@media screen and (min-width: 1024px) {
  .main-contact {
    width: 862px;
  }
  .main-contact--container {
    width: 862px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .main-contact--text {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .main-contact {
    width: 1165px;
  }
  .main-contact--container {
    width: 1165px;
  }
  .main-contact--text {
    -moz-columns: 3;
         columns: 3;
  }
}/*# sourceMappingURL=style.css.map */