@charset "UTF-8";
/*__________________________________________________________________________________
___/\/\/\/\/\____/\/\/\/\____/\/\____/\/\__/\/\/\/\/\/\__/\/\/\/\/\/\__/\/\/\/\/\___
_/\/\__________/\/\____/\/\__/\/\____/\/\______/\/\______/\____________/\/\____/\/\_
_/\/\__/\/\/\__/\/\____/\/\____/\/\/\/\________/\/\______/\/\/\/\/\____/\/\/\/\/\___
_/\/\____/\/\__/\/\____/\/\______/\/\__________/\/\______/\/\__________/\/\__/\/\___
___/\/\/\/\/\____/\/\/\/\________/\/\__________/\/\______/\/\/\/\/\/\__/\/\____/\/\_
____________________________________________________________________________________
Z-index Map :
return ----------------------- 10001
Borders ---------------------- 10000
Preloader --------------------- 9999
AjaxReceiver ------------------ 5001
MouseReplacement -------------- 5000
Menu -------------------------- 
Menu open --------------------
Headers ----------------------
hOpen ------------------------
____________________________________________________________________________________*/
@import "normalize.css";
:root {
  --yellow: #f3ff68;
  --frame: 15px;
  --space: calc(var(--frame) * 5);
  /*--realW: calc(100vw - (100vw - 100%)); parent de l'appel */
  /*--wrapperTest: 800px;*/
  --wrapperW: calc(100vw - calc(var(--space) * 2));
  --wrapperH: calc(100vh);
  --decM: 150px;
  --font: calc(0.5rem + 0.8vw);
}
* {
  margin: 0;
  padding: 0;
  /*cursor: none;*/
}
html {
  /* Hack blend mode Body Bg attachment Fixed */
  background-color: #fff;
  position: absolute;
  scroll-behavior: smooth;
  width: 100vw;
  max-width: 100%;
}
/*body {
  font-family: 'IBM Plex Sans Condensed', Arial, sans-serif;
  font-weight: 300;
  font-size: var(--font);
  color: #000;
  background: url(../images/background-w-1.webp);
  background-size: cover;
  background-attachment: fixed;
  background-color: #EBEBEB;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
}*/
body {
  font-family: 'IBM Plex Sans Condensed', Arial, sans-serif;
  font-weight: 300;
  font-size: var(--font);
  color: #000;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
}
body:after {
  content: "";
  position: fixed; /* stretch a fixed position to the whole screen */
  top: 0;
  height: 100vh; /* fix for mobile browser address bar appearing disappearing */
  left: 0;
  right: 0;
  z-index: -1; /* needed to keep in the background */
  background: url(../images/background-w-1.webp) left top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #EBEBEB;
}
#global {}
@supports (-moz-appearance:none) {
  html {
    /*scroll-behavior: auto;*/
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}
h2 {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 300;
}
.borders {
  background-color: rgba(255, 255, 255, 1);
  width: var(--frame);
  height: var(--frame);
  position: fixed;
  z-index: 9999;
  /*display: none;*/
}
#b1 {
  width: 100%;
  top: 0;
  left: 0;
}
#b2 {
  height: 100%;
  top: 0;
  right: 0;
}
#b3 {
  width: 100%;
  bottom: 0;
  left: 0;
}
#b4 {
  height: 100%;
  top: 0;
  left: 0;
}
main {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.wrapper {
  width: var(--wrapperW);
  max-width: 100% !important;
  margin: 0 auto;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
#mouseReplacement {
  pointer-events: none;
  position: absolute;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border-radius: 50%;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.80);
  opacity: 0;
  top: 0;
  left: 0;
  background-color: transparent;
  background-image: url(../images/icn-more.svg);
  z-index: 1010;
  overflow: hidden;
  transition: transform ease-out 0.2s, opacity 0.2s;
}
#return {
  height: 60%;
  width: 100%;
  display: none !important;
  position: fixed;
  top: 20%;
  padding: 0 0 0 15px;
  z-index: 999999;
  color: #0f0;
  background-color: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
#divTest {
  background-color: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.no-flick {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* HEADER */
/*_______________________________________________________________________ PRELOADER */
#preloader {
  background-color: var(--yellow);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
#preloader.loaded {
  opacity: 0;
  height: 0;
  transition: opacity 0.5s ease-in-out 0.3s, height 0.5s linear 0.3s;
}
#preloader.loaded #sprite-loader {
  opacity: 0;
  height: 0;
  transition: opacity 0.3s ease-in-out, height 0.3s linear 0s;
}
#preloader #sprite-loader {
  width: 120px;
  height: 63px;
  overflow: hidden;
}
#preloader #sprite-loader img {
  animation: preloader 1.5s steps(24, end) infinite;
}
@keyframes preloader {
  0% {
    transform: translateY(0%)
  }
  100% {
    transform: translateY(-100%);
  }
}
/*__________________________________________________________________________ HEADER */
header {
  padding: calc(var(--space)*0.8) 0 0;
  margin-bottom: calc(var(--decM)*-1);
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  z-index: 9998;
  height: var(--decM);
  box-sizing: border-box;
  pointer-events: none;
  position: fixed;
}
.mixBlend {
  mix-blend-mode: difference;
  transform: translate3d(0, 0, 0);
}
header nav {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  height: 58px;
  position: relative;
}
header h1 {
  display: block;
  width: 150px;
}
header h1 img {
  height: 100%;
  width: auto;
}
header a {
  pointer-events: auto;
}
header nav div {
  position: relative;
  width: 150px;
  text-align: right;
  /* nav height - 2px (margin align) */
  line-height: 56px;
  transition: all 200ms ease-in-out;
  opacity: 1;
  max-height: inherit;
}
header nav #ul1 {
  margin: 0;
  padding: 0;
  text-indent: 0;
  list-style-type: none;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav #ul1 li {
  display: inline-block;
  transition: all 200ms ease-in-out 100ms;
  margin: 0 5px;
  margin-top: 0;
  opacity: 1;
  max-height: inherit;
  overflow: inherit;
}
/*nav #ul1 li:not(.openMenu2 *) {
  margin-top: 0;
  opacity: 1;
  max-height: inherit;
  overflow: inherit;
}*/
header nav #ul1 li a, header nav div a {
  font-size: calc(var(--font)*1.4);
  font-weight: 300;
  font-style: italic;
  text-decoration: none;
  color: #fff;
  padding: 5px var(--frame) 7px;
  height: 100%;
  position: relative;
}
header nav div a {
  text-align: right;
  margin-right: calc(var(--frame) * -1);
  vertical-align: middle;
}
header nav #ul1 li a span, header nav div a span {
  position: relative;
  z-index: 2;
  transition: all .20s;
  color: #fff;
}
header nav div a span {
  border-bottom: 1px solid #fff;
}
header nav #ul1 li a::after, header nav div a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
  transition: all .35s;
  transform: scaleY(0) translate3d(0, 0, 0);
  transform-origin: center;
}
header nav #ul1 li a:hover span, header nav div a:hover span {
  color: #000;
  border-color: #000;
}
header nav #ul1 li a:hover::after, header nav div a:hover::after {
  height: 100%;
  transform: scaleY(1) translate3d(0, 0, 0);
}
header.sticked nav #ul1 li {
  margin-top: -40px;
  opacity: 0;
  pointer-events: none;
}
header.sticked nav div:first-of-type {
  margin-top: -30px;
  opacity: 0;
  pointer-events: none;
}
header.sticked nav #ul1 li a, header.sticked nav div a {
  pointer-events: none;
}
header.sticked nav {
  pointer-events: none;
}
/*______________________________________________________________ HAMBURGER & MENU 2 */
#hamburger {
  width: 60px;
  height: 28px;
  top: 0;
  right: 0;
  position: absolute;
  opacity: 0;
  transition: all 200ms ease-in-out 50ms;
  pointer-events: none;
  cursor: pointer;
  transform: translate(100%, 50%);
}
header.sticked #hamburger {
  width: 30px;
  transform: translate(0, 50%);
  opacity: 1;
  pointer-events: auto;
}
#hamburger i {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
  color: #FFFFFF;
  display: block;
  /*background-color: rgba(153,21,23,0.54)*/
}
#hamburger i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: currentColor;
  transition: all .45s ease-in-out;
  top: 0;
  left: 0;
  transform: rotate(0);
}
#hamburger i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: currentColor;
  transition: all .45s ease-in-out;
  bottom: 0;
  left: 0;
  box-shadow: 0 -12px currentColor;
}
#hamburger.close i::before {
  top: 12px;
  transform: rotate(45deg);
  width: 120%;
  margin-left: -3px;
}
#hamburger.close i::after {
  box-shadow: 0 0 transparent;
  bottom: 12px;
  width: 120%;
  transform: rotate(-45deg);
  margin-left: -3px;
}
#hOpen {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  background: url(../images/background-w-1.webp);
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: difference;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(-110vh);
  transition: all 500ms ease-in-out;
}
body.openMenu2 #hOpen {
  opacity: 1;
  transform: translateY(0);
}
#ul2 {
  width: 100%;
  transition: transform 300ms ease-in-out 300ms;
  transform: translateY(-30%);
}
body.openMenu2 #ul2 {
  transform: translateY(0);
}
#ul2 li a {
  position: relative;
  text-decoration: none;
  color: #F3F3F3;
  font-size: calc(var(--font)*4);
  line-height: 1.6em;
  font-style: italic;
  font-weight: 200;
  padding: 0 2%;
}
#ul2 li a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  z-index: 1;
  transition: all .35s;
  transform: scaleY(0) translate3d(0, 0, 0);
  transform-origin: center;
  mix-blend-mode: difference;
}
#ul2 li a:hover::after {
  height: 100%;
  transform: scaleY(1);
}
/*__________________________________________________________________________ FOOTER */
footer {
  min-height: inherit;
  box-sizing: border-box;
  mix-blend-mode: multiply;
  margin-top: calc(var(--decM)*0.8);
  transform: translate3d(0, 0, 0);
}
footer #fShape {
  width: 100%;
  height: 40px;
}
footer #fShape svg {
  fill: var(--yellow);
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
}
footer .content {
  background-color: var(--yellow);
  transform: translate3d(0, 0, 0);
  padding: 50px 0 0;
  text-align: center;
  color: #000;
  font-size: calc(var(--font)/1.5);
}
footer .content a {
  color: #000;
  font-weight: 400;
  text-decoration: none;
  font-style: italic;
  font-size: calc(var(--font)*1.8);
  line-height: calc(var(--font)*2.2);
}
footer #fMentions {
  text-transform: uppercase;
  padding: var(--space) 0 calc(var(--frame)*1.5);
  font-size: calc(var(--font)*0.8);
  line-height: 1.5em;
}
footer #fMentions .brResp {
  display: none;
}
footer #fMentions a {
  font-size: 1em;
  line-height: 1em;
  text-decoration: underline;
  font-style: normal
}
/*#gototop {
  position: fixed;
  bottom:0;
  left: 50%;
  width: 4em;
  height: 4em;
  line-height: 4em;
  font-size: 1.2em;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  background-color: #222;
  z-index: 10001;
}*/
/*________________________________________________________________________ SECTIONS */
section {
  min-height: 100vh;
  width: 100%;
  padding-top: var(--decM);
  box-sizing: border-box;
  scroll-snap-align: start;
}
/*#section1 {
  background-color: rgba(0, 255, 16, 0.50);
}
#section1 .wrapper, #section2 .wrapper, #section3 .wrapper,#section3 .wrapper2, #section4 .wrapper,#section4 .wrapper2, #section5 .wrapper {
	background-color:rgba(41,41,41,0.36);
}
#section2 {
  background-color: rgba(76, 0, 255, 0.5);
}
#section2.visible {
  background-color: rgba(212, 52, 243, 0.50);
  transition: background-color 1000ms linear;
}
#section3 {
  background-color: rgba(0, 255, 21, 0.50);
  transition: background-color 1000ms linear;
}
#section3.visible {
  background-color: rgba(0, 255, 88, 0.50);
  transition: background-color 1000ms linear;
}
#section4 {
  background-color: rgba(2, 0, 118, 0.50);
}*/
/*#section3, #section4 {
  padding-top: var(--decM);
}
#section4 {
  padding-bottom: var(--decM);
}*/
/*#section1, #section2, #section3, #section4, #section5 {
  background-color: rgba(138, 226, 235, 0.82);
  border-top: 2px solid #f00;
}
#section4 .wrapper {
	background-color: rgba(235,138,169,0.82);
}*/
/*_______________________________________________________________________ SECTION 1 - TEXT ANIMÉ */
#section1 {
  padding-top: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  overflow: hidden;
  position: relative;
  /*margin-bottom: calc(var(--decM)*-1);*/
}
#section1 .content {
  text-align: center;
  transform-origin: center;
  transform: rotate(-4deg) translate3d(0, 0, 0);
  mix-blend-mode: multiply;
  /*decalage rotation*/
  margin-left: -1%;
  margin-top: 0;
  padding: 35px 0;
  /*background-color: #ff0;*/
}
#section1 h2 {
  font-size: calc(var(--font)*7);
  line-height: 0.9em;
  box-sizing: border-box;
}
#section1 h2 span:not(#since) {
  display: inline-block;
}
#section1 h2:first-of-type {
  font-weight: 400;
  max-height: 1em;
  padding-top: 1em;
  overflow: hidden;
}
#section1.visible h2:first-of-type {
  padding-top: 0;
  transition: padding 0.7s ease-in-out 300ms;
}
#section1 h2:nth-of-type(2) {
  font-weight: 300;
  font-style: italic;
}
#section1 h2:nth-of-type(2) span:not(#since) {
  position: relative;
  margin-left: -500%;
}
#section1.visible h2:nth-of-type(2) span:not(#since) {
  margin-left: -1.5em;
  transition: margin 1.5s ease-in-out 100ms;
}
#section1 h2:nth-of-type(2) span#since {
  font-size: 0.14em;
  line-height: 100%;
  position: absolute;
  top: 2.7em;
  left: -3em;
  transform-origin: center;
  transform: rotate(-79deg);
}
#section1 h2:nth-of-type(2) span:not(#since):after {
  position: absolute;
  content: '';
  display: block;
  background-color: var(--yellow);
  border: 0;
  top: 0.11em;
  left: 104%;
  height: 0.72em;
  width: 250%;
}
#section1 h2:last-of-type {
  font-weight: 200;
  margin-left: 0;
}
#section1 h2:last-of-type span {
  position: relative;
  margin-right: -400%;
}
#section1.visible h2:last-of-type span {
  margin-right: -2.4em;
  transition: margin 1.5s ease-in-out 100ms;
}
#section1 h2:last-of-type span::after {
  position: absolute;
  content: '';
  clear: both;
  display: block;
  float: left;
  background-color: var(--yellow);
  border: 0;
  top: 0.11em;
  right: 102%;
  height: 0.7em;
  width: 200%;
}
#section1 h3 {
  width: 165%;
  font-weight: 200;
  font-style: italic;
  text-align: left;
  text-transform: uppercase;
  font-size: calc(var(--font)*1.7);
  margin: 0 0 0 -1%;
  display: flex;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#section1.visible h3 {
  margin-top: 0.15em;
  opacity: 1;
  transition: opacity 1s ease-in-out 1s;
}
#section1 h3 span {
  white-space: nowrap;
  animation-play-state: paused;
}
#section1.visible h3 span {
  animation: marquee 30s linear infinite;
  animation-play-state: running;
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*#section1 h3 span:last-child {
  background-color: rgba(255, 255, 0, 0.25);
}*/
#section1 #scrollAnim {
  position: absolute;
  width: 50px;
  height: 85px;
  bottom: calc(var(--frame)*2);
  right: calc(var(--frame)*3);
  overflow: hidden;
}
#section1 #scrollAnim img {
  animation: scrollAnim 1.5s steps(40, end) infinite;
}
@keyframes scrollAnim {
  0% {
    transform: translateX(0%)
  }
  100% {
    transform: translateX(-100%);
  }
}
/*_______________________________________________________________________ SECTION 2 - REFERENCES */
#section2 {
  min-height: inherit;
}
#section2 .wrapper {
  padding-top: 0;
}
#section2 h2 {
  padding: 0 0 0 20px;
  font-size: calc(var(--font)*4);
  line-height: calc(var(--font)*2.5);
  font-style: italic;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  margin-bottom: 0.3em;
}
#section2.visible h2 {
  padding: 0 0 0 0;
  opacity: 1;
}
#section2 .brResp {
  display: none;
}
#section2 h2 span::before {
  content: "_";
  margin-left: 0.3%;
}
#section2 h2 span {
  padding: var(--space) 0 calc(var(--space)/4);
  font-size: calc(var(--font)*2);
  font-style: italic;
}
#section2 .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
}
#section2 .content article {
  perspective: 2000px;
  position: relative;
}
#section2 .content article a {
  --opacityA: 0;
  --opacityB: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 0;
  overflow: hidden;
  opacity: 0;
  cursor: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  background-color: #000;
  /*  background: linear-gradient(to bottom, #000 0%, #000 100%) no-repeat;
  background-size: calc(100% - 3px) calc(100% - 3px);
  background-position: center;*/
}
#section2.hack .content article a {
  cursor: auto;
}
#section2 .content article:first-of-type a {
  transition: border-radius 0.5s ease-in-out, transform 100ms ease-in-out, opacity 0.6s ease-in-out 100ms;
}
#section2 .content article:nth-of-type(2) a {
  transition: border-radius 0.5s ease-in-out, transform 100ms ease-in-out, opacity 0.6s ease-in-out 200ms;
}
#section2 .content article:nth-of-type(3) a {
  transition: border-radius 0.5s ease-in-out, transform 100ms ease-in-out, opacity 0.6s ease-in-out 300ms;
}
#section2 .content article:nth-of-type(4) a {
  transition: border-radius 0.5s ease-in-out, transform 100ms ease-in-out, opacity 0.6s ease-in-out 400ms;
}
#section2 .content article:nth-of-type(5) a {
  transition: border-radius 0.5s ease-in-out, transform 100ms ease-in-out, opacity 0.6s ease-in-out 500ms;
}
#section2 .content article:nth-of-type(6) a {
  transition: border-radius 0.5s ease-in-out, transform 100ms ease-in-out, opacity 0.6s ease-in-out 600ms;
}
#section2 article a h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-size: calc(var(--font)*2);
  line-height: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
#section2 article a h3 span {
  display: block;
  font-weight: 200;
  font-size: 0.5em;
  line-height: 1.2em;
  text-transform: uppercase;
  pointer-events: none;
}
#section2 article a:before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.1s ease-in-out;
  opacity: var(--opacityB);
}
#section2 article a:after {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.1s ease-in-out;
  opacity: var(--opacityA);
}
#section2 .content article a img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  margin: 0;
}
#section2.visible .content article a {
  opacity: 1;
}
#section2 .content article:hover a {
  /*  border-radius: 13%;
	transition: background-size 0s linear 0s;
  background-size: 100% 100%;*/
}
#section2 .content article:hover a h3 {
  opacity: 1;
}
#section2 .content article:hover a img {
  opacity: 0.3;
}
#section2 #morePortfolio {
  width: 100%;
  text-align: center;
  padding: 1.5em 0;
}
#section2 #morePortfolio a {
  opacity: 0;
  display: inline-block !important;
  text-align: center;
  text-decoration: none;
  color: #000;
  mix-blend-mode: multiply;
  width: auto;
  cursor: pointer;
  background-color: var(--yellow);
  border-radius: 0;
  text-transform: uppercase;
  font-size: calc(var(--font)*1.3);
  font-weight: 500;
  padding: calc(var(--font)/1.3) calc(var(--font)*2);
  margin: calc(var(--font)*1.5) auto 0;
  transform: rotate(-1deg);
  border: 1px solid var(--yellow);
  transition: opacity 0.1s ease-in-out 1s, box-shadow 200ms linear, border 200ms linear;
}
#section2.visible #morePortfolio a {
  opacity: 1;
}
#section2 #morePortfolio a:hover {
  border: 1px solid #D4DF54;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
/*_______________________________________________________________________ SECTION 3  - CLIENTS */
#section3 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
#section3 h2 {
  padding: 0;
  font-size: calc(var(--font)*4);
  line-height: calc(var(--font)*3.8);
  font-style: italic;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  margin-bottom: 0.3em;
}
#section3.visible h2 {
  opacity: 1;
  padding-top: 0;
}
#section3 .wrapper2 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + (var(--decM)*0.5)));
}
#section3 .clients {
  width: 100%;
  margin: 0 0 15px;
}
#section3 #client1, #section3 #client2, #section3 #client3, #section3 #client4 {
  transform: rotate(-3deg);
  mix-blend-mode: multiply;
  /*background-color:rgba(190,50,52,0.55);
*/
}
/*animation-play-state: paused;*/
#section3 .clients .clientsContent {
  display: flex;
}
#section3 #client1 .clientsContent, #section3 #client3 .clientsContent {
  animation: marqueeclts1 45s linear infinite;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 200ms linear 400ms;
}
#section3.visible #client1 .clientsContent, #section3.visible #client3 .clientsContent {
  animation-play-state: running;
  opacity: 1;
}
#section3 #client2 .clientsContent, #section3 #client4 .clientsContent {
  animation: marqueeclts2 45s linear infinite;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 200ms linear 600ms;
}
#section3.visible #client2 .clientsContent, #section3.visible #client4 .clientsContent {
  animation-play-state: running;
  opacity: 1;
}
#section3 .clientsContent div {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 100px;
  height: 75px;
  margin: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#section3 .clients div img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}
@keyframes marqueeclts1 {
  0% {
    transform: translateX(0);
  }
  100% {
    /*transform: translateX(-3000px);*/
    transform: translateX(-2000px);
  }
}
@keyframes marqueeclts2 {
  0% {
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
/*_______________________________________________________________________ SECTION 4 - À PROPOS */
#section4 {
  /*padding-top: calc(var(--decM)*1.5);*/
  /*padding-bottom: calc(var(--space)*2);*/
  position: relative;
  padding-top: 0;
}
#section4 h2 {
  padding: 0;
  font-size: calc(var(--font)*2.5);
  font-style: italic;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  margin: 0;
}
/*#section4 .wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding-top: var(--decM);
  justify-content: center;
  width: calc(var(--wrapperW) + var(--space));
  margin: 0;
}*/
#section4 .wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 0;
}
#section4 .wrapper2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--wrapperW) + var(--space));
  margin: 0;
}
#APimg {
  width: 50%;
  aspect-ratio: 1/1;
  background-color: transparent;
  opacity: 0;
  padding: 0;
  transition: opacity 300ms ease-in-out;
}
#section4.visible #APimg {
  opacity: 1;
}
#APimg #iframe {
  margin: 0;
  border: none;
  display: block;
}
#APimg #iframe > body#PageSelfie {
  background: none;
  background-color: #f00;
}
.APtext {
  width: 22%;
  float: left;
  text-align: justify;
  margin-left: 3%;
}
.APtext p {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: var(--font);
  line-height: calc(var(--font)*1.4);
}
.APtext p:not(:last-child) {
  margin: 0 0 10px 0;
}
#section4 #APap {
  opacity: 0;
  transform: translateY(0%);
  transition: transform 300ms ease-in-out 225ms, opacity 300ms ease-in-out 225ms;
}
#section4 #APs {
  opacity: 0;
  transform: translateY(0%);
  transition: transform 300ms ease-in-out 400ms, opacity 300ms ease-in-out 400ms;
}
#section4.visible #APap {
  opacity: 1;
  transform: translateY(-5%);
}
#section4.visible #APs {
  opacity: 1;
  transform: translateY(5%);
}
/*_______________________________________________________________________ SECTION 5 - CONTACT */
#section5 {
  padding-top: var(--decM);
  min-height: inherit;
}
#section5 h2 {
  padding: 0;
  font-size: calc(var(--font)*2.5);
  font-style: italic;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  margin: 0;
}
#section5 .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
#section5 #contactTxt, #section5 #contactForm {
  padding: 5px 0;
}
#section5 #contactTxt {
  text-align: center;
  padding-right: 20%;
}
#section5 #contactTxt p {
  font-size: calc(var(--font)*1.2);
  line-height: calc(var(--font)*1.5);
  margin: 0 0 5px 0;
}
#section5 #contactForm {
  position: relative;
  width: 45%;
}
#section5 #contactForm::before {
  position: absolute;
  content: '';
  background-color: #1A1A1A;
  width: 1px;
  max-width: 1px;
  font-size: 1px;
  height: 100%;
  transform: rotate(10deg);
  top: 0;
  left: -20%;
}
.bRed {
  border-color: #f00 !important;
}
#section5 #formMsgReceiver {
  background-color: #EEA9A9;
  text-align: center;
  border-radius: 5px;
  padding: 0;
  margin: 0;
  height: 1px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#section5 #formMsgReceiver.open {
  opacity: 1;
  padding: 15px;
  margin: 0 0 1.5em 0;
  height: inherit;
}
#section5 #formMsgReceiver a {
  color: #000;
}
#section5 #contactForm form {
  display: block;
  width: 100%;
}
#section5 #contactForm form input, #section5 #contactForm form textarea {
  font-family: 'IBM Plex Sans Condensed', Arial, sans-serif;
  font-weight: 300;
  border-radius: calc(var(--font)*1.4);
  box-sizing: border-box;
  font-size: var(--font);
  line-height: calc(var(--font)*1.5);
  padding: calc(var(--font)*0.5) var(--font);
  border: 1px solid #ddd;
}
#section5 #contactForm form input::placeholder, #section5 #contactForm form textarea::placeholder {
  font-style: italic;
  color: #aaa;
}
#section5 #contactForm form label {
  box-sizing: border-box;
  display: block;
}
#section5 #contactForm form label:not(:first-child) {
  padding-top: var(--font);
}
#section5 #contactForm form label span {
  font-size: var(--font);
  display: none;
}
#section5 #contactForm form input {
  display: block;
  width: 100%;
  margin-top: calc(var(--font)/3);
}
#section5 #contactForm form textarea {
  display: block;
  width: 100%;
  min-height: calc(var(--font)*12);
  margin-top: calc(var(--font)/3);
}
#section5 #contactForm form input[type="submit"] {
  color: #000;
  mix-blend-mode: multiply;
  width: auto;
  cursor: pointer;
  background-color: var(--yellow);
  border-radius: 0;
  text-transform: uppercase;
  font-size: calc(var(--font)*1.3);
  font-weight: 500;
  padding: calc(var(--font)/1.3) calc(var(--font)*2);
  margin: calc(var(--font)*1.5) auto 0;
  transform: rotate(-1deg)translate3d(0, 0, 0);
  border: 1px solid var(--yellow);
  transition: box-shadow 200ms linear, border 200ms linear;
}
#section5 #contactForm form input[type="submit"]:hover {
  border: 1px solid #D4DF54;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
/*______________________________________________________________________ RESPONSIVE */
@media only screen and (min-width: 1201px) {
  :root {
    --space: calc(var(--frame) * 6);
  }
  footer #fMentions {
    font-size: calc(var(--font)*0.6);
    line-height: 1.5em;
  }
}
@media only screen and (max-width: 1200px) {}
@media only screen and (max-width: 900px) {
  :root {
    --space: calc(var(--frame) * 4);
  }
  #section2 h2, #section3 h2 {
    font-size: calc(var(--font)*3.5);
  }
  #section2 h2 span {
    padding: var(--space) 0 calc(var(--space)/4);
    font-size: calc(var(--font)*1.8);
    font-style: italic;
  }
  #section2 .content {
    grid-template-columns: repeat(2, 1fr);
  }
  #section2 article a h3 span {
    font-size: 0.6em;
  }
  #section4 .wrapper {
    display: block;
    width: calc(var(--wrapperW));
    margin: 0 auto;
    position: inherit;
    transform: translate(0);
    min-height: inherit;
  }
  #section4 .wrapper2 {
    display: block;
    margin: 0 auto;
    position: inherit;
    width: 100%;
    transform: translate(0);
    min-height: inherit;
  }
  #APimg {
    width: 90%;
    margin: 0 auto 5em;
  }
  #APimg:after {
    content: '';
    display: block;
    clear: both;
  }
  #APap, #APs {
    width: 48%;
    margin: 0;
    transform: translateY(0) !important;
  }
  #APs {
    margin-left: 4%;
  }
  footer #fMentions {
    font-size: calc(var(--font)*0.9);
  }
  footer #fMentions .brResp {
    display: inline;
  }
}
@media only screen and (max-width: 650px) {
  :root {
    --space: calc(var(--frame) * 5);
    --decM: 100px;
  }
  header {
    padding: calc(var(--space)/1.2) 0 0;
  }
  header.sticked nav #ul1 {
    display: none;
  }
  #section1 .content {
    transform: rotate(-30deg);
  }
  #section1 h2 {
    font-size: calc(var(--font)*6);
  }
  #section2 h2, #section3 h2 {
    font-size: calc(var(--font)*3.5);
    text-align: center;
  }
  #section2 .content {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 1em;
  }
  #section2 article a h3 {
    font-size: calc(var(--font)*2);
  }
  #section3 .clientsContent div {
    flex-basis: 80px;
    height: 65px;
    margin: 0 25px;
  }
  @keyframes marqueeclts1 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1300px);
    }
  }
  @keyframes marqueeclts2 {
    0% {
      transform: translateX(-1300px);
    }
    100% {
      transform: translateX(0);
    }
  }
  #APap, #APs {
    width: 100%;
    margin: 0;
    transform: translateY(0) !important;
  }
  #APap h2, #APs h2 {
    text-align: center;
  }
  .APtext p {
    font-size: calc(var(--font)*1.2);
    line-height: calc(var(--font)*1.8);
  }
  #APs {
    margin-top: 6%;
  }
  #section5 .wrapper {
    display: block;
  }
  #section5 #contactTxt, #section5 #contactForm {
    padding: 5px 0;
  }
  #section5 #contactTxt {
    text-align: center;
    padding-right: 0;
    width: 100%;
  }
  #section5 #contactTxt p {
    font-size: calc(var(--font)*1.3);
    line-height: calc(var(--font)*1.5);
    margin: 0 0 5px 0;
  }
  #section5 #contactForm {
    position: relative;
    width: 100%;
    margin-top: 13%;
  }
  #section5 #contactForm::before {
    position: absolute;
    content: '';
    background-color: #1A1A1A;
    width: 100%;
    font-size: 1px;
    height: 1px;
    max-width: inherit;
    max-height: 1%;
    transform: rotate(-5deg);
    top: -10%;
    left: 0;
  }
}
@media only screen and (max-width: 550px) {
  :root {
    --space: calc(var(--frame) * 4);
  }
  header {
    padding: calc(var(--space)/1.2) 0 0;
  }
  #section1 .content {
    transform: rotate(-35deg);
  }
  #section1 h2 {
    font-size: calc(var(--font)*5);
  }
  #section1 h3 {
    width: 200%;
  }
  #section2 .brResp {
    display: inherit;
  }
  /* #section2 h2, #section3 h2 {
    font-size: calc(var(--font)*2.8);
    text-align: center;
  }*/
}
@media only screen and (max-width:450px) {
  :root {
    --frame: 10px;
    --space: calc(var(--frame) * 3.5);
    --decM: 80px;
  }
  header {
    padding: calc(var(--space)/1.25) 0 0;
  }
  header h1 {
    height: 50px;
  }
  #section1 .content {
    transform: rotate(-45deg);
    margin-left: -3%;
  }
  #section1 h2 {
    font-size: calc(var(--font)*4.5);
  }
  #section1 h3 {
    width: 300%;
  }
  /*  #section2 h2, #section3 h2 {
    font-size: calc(var(--font)*3);
    text-align: center;
  }*/
}
@media only screen and (max-width:350px) {
  :root {
    --frame: 7px;
    --space: calc(var(--frame)*4);
    --decM: 75px;
  }
  #b12 {
    display: none;
  }
  header {
    padding: calc(var(--space)/1.25) 0 0;
  }
  header h1 {
    height: 40px;
  }
  #section1 .content {
    transform: rotate(-55deg);
    margin-left: -3%;
  }
  #section1 h2 {
    font-size: calc(var(--font)*4);
  }
  #section1 h3 {
    width: 300%;
  }
}