/* =====================
</> by valentin salaud
====================== */
body {
  width: 100vw;
  overflow-x: hidden;

  background-color: var(--white);
  color: var(--black);

  font-family: "Avenir", Helvetica;
  font-weight: 500;
  font-style: normal;

  word-break: break-word;

  --black: #232323;
  --white: #f2f2f2;
}

* ::selection {
  background: #323232;
  color: var(--white);
}

a {
  color: var(--black);
  text-decoration: none;

  transition: all 0.3s ease;
}
a:hover {
  text-decoration: underline;
}

strong {
  background: var(--black);
  color: var(--white);
  padding: 0 4px;
  white-space: nowrap;
}

/* ================================================================
        SLIDER          
 * ====================== */

.content-slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;

  background: var(--white);
}

.slide-content a {
  font-size: 1.675em;

  text-decoration: none;
  color: var(--black);
  padding-left: 35px;

  transition: all 1s ease;
}
.slide-content a:hover {
  padding-left: 55px;

  color: var(--black);
}
.slide-content a::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  margin: 9px;

  background-color: var(--black);
  transform: translateX(-35px) rotate(45deg);

  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.slide-content a:hover::before {
  transform: translateX(-55px) rotate(585deg);
}

/*====================== */

/* puces */
.puce-wrap {
  position: absolute;
  width: 700px;
  bottom: 10%;
  left: calc((100vw - 700px) / 2);

  display: flex;
  justify-content: space-between;
}

.slide-puce {
  display: inline-block;
  cursor: pointer;
  transition: transform 1s ease;

  transform: translateY(30px);
  padding: 0 -10px;
}
.slide-puce::before {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  transform: translate(calc(50% + 9px), -31px);
  border: 2px solid var(--black);

  opacity: 0.3;
  transition: all 0.5s ease;
}
.slide-puce:hover::before {
  transform: translate(calc(50% + 9px), -31px) rotate(225deg);
}

.slide-puce-set.slide-puce::before {
  transform: translate(calc(50% + 9px), -31px) rotate(405deg);
  background: var(--black);

  opacity: 1;
}

.slide-line {
  display: inline-block;
  width: 100px;
  height: 2px;
  margin-top: 7px;
  background: rgba(26, 26, 26, 0.3);
}

/* slider */
#slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100vw;
  height: calc(100vh - 2px);
  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0);
  margin-left: -1px;

  opacity: 0;
  display: none;
}

.slide-content {
  width: 80%;
  max-width: 960px;
  height: 60%;
  margin: 0 auto;
  /* border: 1px solid #000; */
}

.slide-next .slide-content {
  animation: skew 1.2s ease;
}
.slide-prev .slide-content {
  animation: skew2 1.2s ease;
}

@keyframes skew {
  0%,
  30% {
    transform: skew(-30deg);
  }
  100% {
    transform: skew(0);
  }
}
@keyframes skew2 {
  0%,
  30% {
    transform: skew(0);
  }
  100% {
    transform: skew(30deg);
  }
}

.slide-background {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: -10;

  opacity: 0.5;
}
.slide-see {
  opacity: 1;
  display: inherit;
}
.slide-prev,
.slide-next {
  animation-fill-mode: forwards !important;
  opacity: 1;
  display: inherit;

  animation-delay: 0.3s !important;
}
.slide-prev {
  animation: 1.2s ease slideOut;
}
.slide-next {
  animation: 1.2s ease slideIn;
  transform: translateX(100vw);
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    /* opacity: 1; */
  }

  to {
    transform: translateX(-100vw);
    /* opacity: 0; */
  }
}
@keyframes slideIn {
  from {
    transform: translateX(100vw);
    /* opacity: 0; */
  }

  to {
    transform: translateX(0);
    /* opacity: 1; */
  }
}

/* Style texte */
.hello {
  font-family: "Avenir Book", Helvetica;
  font-weight: normal;
  font-style: normal;

  font-size: 3.75em;
  line-height: 1.5em;
  margin-top: 15%;
  margin-bottom: 1em;
}
.slide-content h2 {
  font-size: 3.75em;
  font-family: "Avenir Book", Helvetica;
  font-weight: normal;
  font-style: normal;

  margin: 0;
}
.slide-content h3 {
  font-size: 2.5em;
  font-family: "Avenir Book", Helvetica;
  font-weight: normal;
  font-style: normal;

  margin: 0 0 2.5em;
}
.slide-content h4 {
  font-size: 1.6em;
  font-weight: 300;
  font-style: italic;
  margin: 30vh 0 0;
}
.slide-contact h2 {
  margin: 20vh 0 5vh;
  font-size: 3.3em;
  line-height: 1.8em;
}
.slide-contact a {
  padding-left: inherit;
  transition: inherit;
  font-size: inherit;
}
.slide-contact a::before {
  position: inherit;
  margin: 0;
}
.slide-contact a:hover {
  padding-left: inherit;
}
.slide-contact p {
  text-align: right;
  margin: 10px 0;
  font-size: 2.5em;
  font-weight: 200;
}
.link-contact {
  display: inline-block;
  position: relative;
}
.link-contact:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transform: translate(-100%, 1.1em);

  background: linear-gradient(90deg, #707070 50%, transparent 50%);
  background-repeat: repeat-x;
  background-size: 15px 2px;
  background-position: 0px 0px;
  padding: 10px 0;
}
.link-contact:hover::after {
  animation: border-dance 7s infinite linear;
}
@keyframes border-dance {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 300px 0px;
  }
}

.rectTop {
  display: inline-block;
  position: absolute;
  width: 10vh;
  height: 50vh;
  background: var(--white);
  mix-blend-mode: difference;
  pointer-events: none;

  left: 50vw;
  top: 14vh;
  z-index: 4;

  transition: all 1.5s ease-in-out;
}
.rect-animated:nth-child(1) {
  animation: ease-in-out rect1 4.5s infinite;

  transform: translateX(calc(-50% - 260px)) translateY(18%);
  animation-delay: 0.5s !important;
}
.rect-animated:nth-child(2) {
  animation: ease-in-out rect2 4.5s infinite;
}
.rect-animated:nth-child(3) {
  animation: ease-in-out rect3 4.5s infinite;
}

@keyframes rect1 {
  0% {
    transform: translateX(calc(-50% - 260px)) translateY(18%);
  }
  50% {
    transform: translateX(calc(-50% - 260px)) translateY(60%);
  }
  100% {
    transform: translateX(calc(-50% - 260px)) translateY(18%);
  }
}
@keyframes rect2 {
  0% {
    transform: translateX(-50%) translateY(-13%);
  }
  50% {
    transform: translateX(-50%) translateY(-28%);
  }
  100% {
    transform: translateX(-50%) translateY(-13%);
  }
}
@keyframes rect3 {
  0% {
    transform: translateX(calc(-50% + 260px)) translateY(8%);
  }
  50% {
    transform: translateX(calc(-50% + 260px)) translateY(40%);
  }
  100% {
    transform: translateX(calc(-50% + 260px)) translateY(8%);
  }
}

.stop-animation {
  animation-play-state: paused !important;
}
.rect-out:nth-child(1) {
  margin-top: 100vh;
}
.rect-out:nth-child(2) {
  margin-top: -100vh;
}
.rect-out:nth-child(3) {
  margin-top: 100vh;
}

/* LINES */
.background-line-1,
.background-line-2,
.background-line-3,
.background-line-4,
.background-line-5 {
  position: absolute;
  z-index: -1;
  background: #707070;

  animation-delay: 1.3s !important;
  animation-duration: 2s !important;
}
.slide-prev .background-line-1 {
  background: rgba(112, 112, 112, 0);
  transition: all 1s ease;
}

.background-line-1:nth-child(1) {
  width: 48%;
  height: 1px;
  top: 18%;
  left: 52%;
}
.background-line-1:nth-child(2) {
  width: 100%;
  height: 1px;
  top: 28%;
  left: 0;
}
.background-line-1:nth-child(3) {
  width: 26%;
  height: 1px;
  top: 46%;
  left: 16%;
}
.background-line-1:nth-child(4) {
  width: 27%;
  height: 1px;
  top: 56%;
  left: 73%;
}
.background-line-1:nth-child(5) {
  width: 73%;
  height: 1px;
  top: 74%;
  left: 0;
}
.background-line-1:nth-child(6) {
  width: 1px;
  height: 100%;
  top: 0;
  left: 16%;
}
.background-line-1:nth-child(7) {
  width: 1px;
  height: 46%;
  top: 28%;
  left: 42%;
}
.background-line-1:nth-child(8) {
  width: 1px;
  height: 74%;
  top: 0;
  left: 52%;
}
.background-line-1:nth-child(9) {
  width: 1px;
  height: 100%;
  top: 0;
  left: 73%;
}
.background-line-1:nth-child(10) {
  width: 1px;
  height: 44%;
  top: 56%;
  left: 88%;
}

.background-line-2:nth-child(1) {
  width: 27%;
  height: 1px;
  top: 10%;
  left: 46%;
}
.background-line-2:nth-child(2) {
  width: 100%;
  height: 1px;
  top: 28%;
  left: 0;
}
.background-line-2:nth-child(3) {
  width: 16%;
  height: 1px;
  top: 47%;
  left: 73%;
}
.background-line-2:nth-child(4) {
  width: 10%;
  height: 1px;
  top: 65%;
  left: 0;
}
.background-line-2:nth-child(5) {
  width: 47%;
  height: 1px;
  top: 74%;
  left: 26%;
}
.background-line-2:nth-child(6) {
  width: 27%;
  height: 1px;
  top: 83%;
  left: 73%;
}
.background-line-2:nth-child(7) {
  width: 1px;
  height: 72%;
  top: 28%;
  left: 10%;
}
.background-line-2:nth-child(8) {
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
}
.background-line-2:nth-child(9) {
  width: 1px;
  height: 74%;
  top: 0;
  left: 46%;
}
.background-line-2:nth-child(10) {
  width: 1px;
  height: 100%;
  top: 0;
  left: 73%;
}
.background-line-2:nth-child(11) {
  width: 1px;
  height: 55%;
  top: 28%;
  left: 89%;
}

.background-line-3:nth-child(1) {
  width: 47%;
  height: 1px;
  top: 18%;
  left: 16%;
}
.background-line-3:nth-child(2) {
  width: 37%;
  height: 1px;
  top: 28%;
  left: 63%;
}
.background-line-3:nth-child(3) {
  width: 21%;
  height: 1px;
  top: 37%;
  left: 16%;
}
.background-line-3:nth-child(4) {
  width: 16%;
  height: 1px;
  top: 46%;
  left: 0;
}
.background-line-3:nth-child(5) {
  width: 63%;
  height: 1px;
  top: 64%;
  left: 37%;
}
.background-line-3:nth-child(6) {
  width: 1px;
  height: 100%;
  top: 0;
  left: 16%;
}
.background-line-3:nth-child(7) {
  width: 1px;
  height: 82%;
  top: 18%;
  left: 37%;
}
.background-line-3:nth-child(8) {
  width: 1px;
  height: 36%;
  top: 64%;
  left: 47%;
}
.background-line-3:nth-child(9) {
  width: 1px;
  height: 64%;
  top: 0;
  left: 63%;
}
.background-line-3:nth-child(10) {
  width: 1px;
  height: 36%;
  top: 64%;
  left: 73%;
}
.background-line-3:nth-child(11) {
  width: 1px;
  height: 36%;
  top: 28%;
  left: 83%;
}

.background-line-4:nth-child(1) {
  width: 26%;
  height: 1px;
  top: 27%;
  left: 21%;
}
.background-line-4:nth-child(2) {
  width: 100%;
  height: 1px;
  top: 46%;
  left: 0;
}
.background-line-4:nth-child(3) {
  width: 21%;
  height: 1px;
  top: 73%;
  left: 57%;
}
.background-line-4:nth-child(4) {
  width: 21%;
  height: 1px;
  top: 83%;
  left: 0;
}
.background-line-4:nth-child(5) {
  width: 22%;
  height: 1px;
  top: 83%;
  left: 78%;
}
.background-line-4:nth-child(6) {
  width: 1px;
  height: 100%;
  top: 0;
  left: 21%;
}
.background-line-4:nth-child(7) {
  width: 1px;
  height: 54%;
  top: 46%;
  left: 26%;
}
.background-line-4:nth-child(8) {
  width: 1px;
  height: 54%;
  top: 46%;
  left: 57%;
}
.background-line-4:nth-child(9) {
  width: 1px;
  height: 100%;
  top: 0;
  left: 78%;
}
.background-line-4:nth-child(10) {
  width: 1px;
  height: 46%;
  top: 0;
  left: 47%;
}
.background-line-5:nth-child(1) {
  width: 16%;
  height: 1px;
  top: 19%;
  left: 0;
}
.background-line-5:nth-child(2) {
  width: 31%;
  height: 1px;
  top: 37%;
  left: 16%;
}
.background-line-5:nth-child(3) {
  width: 47%;
  height: 1px;
  top: 65%;
  left: 0;
}
.background-line-5:nth-child(4) {
  width: 26%;
  height: 1px;
  top: 83%;
  left: 0;
}
.background-line-5:nth-child(5) {
  width: 53%;
  height: 1px;
  top: 55%;
  left: 47%;
}
.background-line-5:nth-child(6) {
  width: 32%;
  height: 1px;
  top: 19%;
  left: 68%;
}
.background-line-5:nth-child(7) {
  width: 32%;
  height: 1px;
  top: 83%;
  left: 68%;
}
.background-line-5:nth-child(8) {
  width: 1px;
  height: 65%;
  top: 0;
  left: 16%;
}
.background-line-5:nth-child(9) {
  width: 1px;
  height: 100%;
  top: 0;
  left: 47%;
}
.background-line-5:nth-child(10) {
  width: 1px;
  height: 100%;
  top: 0;
  left: 68%;
}
.background-line-5:nth-child(11) {
  width: 1px;
  height: 35%;
  top: 65%;
  left: 26%;
}

/***  RESPONSIVE  ***/
@media screen and (max-height: 800px) {
  .slide-content h4 {
    margin: 100px 0 0;
  }
}
@media screen and (max-width: 500px) {
  .slide-content h3 {
    font-size: 1.8em;
  }
  .slide-content h3 br {
    display: none;
  }
}

@media screen and (max-height: 650px) {
  .hello,
  .slide-contact h2 {
    line-height: 1.2em !important;
    font-size: 2.2em !important;
    margin-top: 3em !important;
  }
  .slide-content h3 {
    margin: 0 0 2em !important;
  }
}
@media screen and (max-width: 760px) {
  .slide-content {
    margin: 0 auto;
  }
  .puce-wrap {
    width: 600px;
    left: calc((100vw - 600px) / 2);
  }
  .slide-line {
    width: 80px;
  }
  .hello,
  .slide-contact h2 {
    line-height: 1.2em;
    font-size: 3em;
    margin-top: 1.5em;
  }
  .slide-contact p {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 760px) {
  .rectTop,
  .slide-background,
  .puce-wrap {
    display: none;
  }
  body {
    /* width: inherit; */
    height: inherit;
    /* overflow: inherit; */
  }
  #slider {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    position: relative;
  }
  .slide {
    scroll-snap-align: start;

    position: inherit;
    display: block;
    opacity: 1;
  }
}

/* ==========================================================
        Works
====================== */
header {
  height: 110vh;
  width: 100vw;
  overflow: hidden;
  background: var(--white);
}
header.headNo {
  height: 100vh;
}
header div {
  margin-top: 50vh;
  transform: translate(0, -50%);
  text-align: center;
  background: var(--white);
}
header h1 {
  font-size: 3.75em;
  font-family: "Avenir Book", Helvetica;
  font-weight: normal;
  font-style: normal;
}
header h2 {
  font-size: 2.5em;
  font-family: "Avenir Book", Helvetica;
  font-weight: normal;
  font-style: normal;
}
header h3 {
  font-size: 1.6em;
  font-weight: 300;
  font-style: italic;
}
header h1,
header h2,
header h3 {
  margin: 0.1em 0;
  padding: 3px 15px;
  /* background: var(--black); */
  color: var(--black);
  display: inline-block;
  position: relative;
}

header h1::after,
header h2::after,
header h3::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(100vw, -3px);
  z-index: 10;
  background: var(--white);
  mix-blend-mode: difference;
  pointer-events: none;

  animation: translate 1s ease forwards;
  animation-delay: 0.2s;
}
@keyframes translate {
  from {
    transform: translate(100vw, -3px);
  }
  to {
    transform: translate(calc(-100% + 15px), -3px);
  }
}
header h1::after {
  animation: translate2 1s ease forwards;
  animation-delay: 0.2s;
  transform: translate(-100vw, -3px);
}
@keyframes translate2 {
  from {
    transform: translate(-100vw, -3px);
  }
  to {
    transform: translate(calc(-100% + 15px), -3px);
  }
}

.line-scroll {
  width: 2px;
  height: 60px;
  position: absolute;
  top: calc(100vh - 100px);
  left: calc(50vw - 1px);

  background: rgb(35, 35, 35);
  background: linear-gradient(
    180deg,
    rgba(35, 35, 35, 0) 0%,
    rgba(35, 35, 35, 0) calc(50% - 56px),
    rgba(35, 35, 35, 1) calc(50% - 55px),
    rgba(35, 35, 35, 1) calc(50% + 55px),
    rgba(35, 35, 35, 0) calc(50% + 56px),
    rgba(35, 35, 35, 0) 100%
  );
  background-size: 200% 400%;

  -webkit-animation: AnimationName 2s cubic-bezier(0.77, 0, 0.18, 1) infinite;
  -moz-animation: AnimationName 2s cubic-bezier(0.77, 0, 0.18, 1) infinite;
  animation: AnimationName 2s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}

@-webkit-keyframes AnimationName {
  from {
    background-position: 50% 100%;
  }
  to {
    background-position: 50% 0%;
  }
}
@-moz-keyframes AnimationName {
  from {
    background-position: 50% 100%;
  }
  to {
    background-position: 50% 0%;
  }
}
@keyframes AnimationName {
  from {
    background-position: 50% 100%;
  }
  to {
    background-position: 50% 0%;
  }
}
.soon {
  position: absolute;
  bottom: 105px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 1.2em;
  opacity: .8;

  animation: soon 2s cubic-bezier(.33,0,.67,.99) infinite;
}
@keyframes soon {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -14px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.wrapper-grid {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-auto-rows: 50px;
}
.line {
  position: absolute;
  /* background-color: var(--black); */
  z-index: 0;

  top: 110vh;
  /* left: calc((100vw - 1050px)/2); */
}

.line-top,
.line-bot,
.line-left,
.line-right {
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
  animation-timing-function: ease;
  /* opacity: 0; */
  /* background: rgb(35, 35, 35); */

  background-size: 200% 400% !important;
}

.line-top {
  animation-name: TtoB;

  background: linear-gradient(
    180deg,
    rgba(35, 35, 35, 1) 0%,
    rgba(35, 35, 35, 1) 50%,
    rgba(35, 35, 35, 0) calc(50% + 1px),
    rgba(35, 35, 35, 0) 100%
  );
  background-position: 50% 67%;
}
@keyframes TtoB {
  from {
    background-position: 50% 67%;
    opacity: 1;
  }
  to {
    background-position: 50% 33%;
    opacity: 1;
  }
}

.line-bot {
  animation-name: BtoT;

  background: linear-gradient(
    180deg,
    rgba(35, 35, 35, 0) 0%,
    rgba(35, 35, 35, 0) 50%,
    rgba(35, 35, 35, 1) calc(50% + 1px),
    rgba(35, 35, 35, 1) 100%
  );
  background-position: 50% 33%;
}
@keyframes BtoT {
  from {
    background-position: 50% 33%;
    opacity: 1;
  }
  to {
    background-position: 50% 67%;
    opacity: 1;
  }
}

.line-left {
  animation-name: LtoR;

  background: linear-gradient(
    90deg,
    rgba(35, 35, 35, 1) 0%,
    rgba(35, 35, 35, 1) 50%,
    rgba(35, 35, 35, 0) calc(50% + 1px),
    rgba(35, 35, 35, 0) 100%
  );
  background-position: 100% 50%;
}
@keyframes LtoR {
  from {
    background-position: 100% 50%;
    opacity: 1;
  }
  to {
    background-position: 0% 50%;
    opacity: 1;
  }
}

.line-right {
  animation-name: RtoL;

  background: linear-gradient(
    90deg,
    rgba(35, 35, 35, 0) 0%,
    rgba(35, 35, 35, 0) 50%,
    rgba(35, 35, 35, 1) calc(50% + 1px),
    rgba(35, 35, 35, 1) 100%
  );
  background-position: 0% 50%;
}
@keyframes RtoL {
  from {
    background-position: 0% 50%;
    opacity: 1;
  }
  to {
    background-position: 100% 50%;
    opacity: 1;
  }
}

/*
.line-top {
  animation-name: TtoB;
  clip-path: inset(0 0 100% 0);
}
.line-bot {
  animation-name: BtoT;
  clip-path: inset(100% 0 0 0);
}
.line-left {
  animation-name: LtoR;
  clip-path: inset(0 0 0 100%);
}
.line-right {
  animation-name: RtoL;
  clip-path: inset(0 100% 0 0);
}

@keyframes TtoB {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
  }

  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes BtoT {
  from {
    clip-path: inset(100% 0 0 0);
    opacity: 1;
  }

  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes RtoL {
  from {
    clip-path: inset(0 0 0 100%);
    opacity: 1;
  }

  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes LtoR {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }

  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
*/
.wrapper-grid div {
  position: relative;

  font-family: "Avenir Book", Helvetica;
  font-weight: normal;
  font-style: normal;
}
.wrapper-grid div p,
.wrapper-grid div div,
.wrapper-grid div h2 {
  margin: 0 18px;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);

  font-size: 1.2em;
  line-height: 1.4em;
  width: calc(100% - 32px);
}
.wrapper-grid h2 {
  text-align: center;
  width: 100%;
  color: var(--white);
  font-size: 2.5em !important;
}
.wrapper-grid h3 {
  margin-bottom: 10px;
}

.our-challenge {
  grid-column: 3 / span 7;
  grid-row: 7 / span 4;

  text-align: center;
}
.computer {
  grid-column: 10 / span 11;
  grid-row: 4 / span 10;

  background: no-repeat url("https://tracy.valentinsld.fr/resteam/Mockup.png");
  background-size: contain;
  background-position: center center;
  /* transform: scale(.9); */
}
.audit {
  grid-column: 13 / span 8;
  grid-row: 17 / span 2;
  z-index: 1;
}
.audit h2 {
  transform: inherit !important;
  top: inherit !important;
  bottom: 0;
  width: calc(100% - 40px) !important;
  padding: 10px 20px;
  margin: 0 !important;

  display: grid;
  color: var(--white);
}
.audit h2:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;

  background: var(--black);
  z-index: -1;
}

.desc {
  grid-column: 1 / span 12;
  grid-row: 19 / span 4;
}
.desc p {
  width: 74% !important;
  margin: 0 13% !important;
}
.pros {
  grid-column: 13 / span 8;
  grid-row: 24 / span 4;

  text-align: right;
}
.cons {
  grid-column: 3 / span 8;
  grid-row: 27 / span 5;
}
.end {
  grid-column: 6 / span 10;
  grid-row: 34 / span 4;

  text-align: center;
}
.pros div,
.cons div {
  margin: 0;
}
.pros div div,
.cons div div {
  margin: 0 auto;
}

.video1 {
  grid-column: 5 / span 12;
  grid-row: 4 / span 7;
}
.lexi1 {
  grid-column: 4 / span 14;
  grid-row: 13 / span 3;
}
.imgs1 {
  grid-column: 1 / span 20;
  grid-row: 18 / span 6;
}
.lexi2 {
  grid-column: 10 / span 10;
  grid-row: 25 / span 3;
}
.img1 {
  grid-column: 4 / span 6;
  grid-row: 26 / span 6;
}
.img2 {
  grid-column: 8 / span 6;
  grid-row: 29 / span 6;
}
.img3 {
  grid-column: 12 / span 6;
  grid-row: 32 / span 6;
}
.lexi3 {
  grid-column: 3 / span 8;
  grid-row: 37 / span 3;
}
.imgs2 {
  grid-column: 1 / span 20;
  grid-row: 42 / span 6;
}
.lexi4 {
  grid-column: 5 / span 12;
  grid-row: 50 / span 3;
}
.video2 {
  grid-column: 5 / span 12;
  grid-row: 54 / span 7;
}
.imgs1 div,
.imgs2 div {
  margin: 0 10%;
}
.imgs1 div img,
.imgs2 div img {
  width: calc(33% - 42px);
  margin: 20px;
}
.img1 img,
.img2 img,
.img3 img {
  width: 100%;
}

.maxL {
  grid-column: 1 / span 1;
  grid-row: 61 / span 1;
}
.maxR {
  grid-column: 1 / span 1;
  grid-row: 40 / span 1;
}
.wrapper-grid ul {
  margin-top: 10px;
}
ul.list-right {
  font-size: 0.8em;
}
ul.list-left,
ul.list-right {
  list-style: none;
}
ul.list-left li::before,
ul.list-right li::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--black);
}
ul.list-left li::before {
  transform: translate(-22px, 8px) rotate(45deg);
}
ul.list-right {
  margin-right: 24px;
  padding-left: 0;
}
ul.list-right li::after {
  transform: translate(12px, 8px) rotate(45deg);
}

.content,
footer {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;

  font-family: "Avenir Book", Helvetica;
  font-weight: normal;
  font-style: normal;
}
.content h2 {
  margin: 0;
  position: relative;
  display: grid;
  text-align: center;
  color: var(--white);
  font-size: 2.5em;
  float: right;
  z-index: 5;

  min-width: 500px;
  padding: 18px 20px;
}

.content h2:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  z-index: -1;
  background: var(--black);
}
.content h2:after {
  content: "";
  display: block;
  clear: both;
}

.fonts {
  display: flex;
  margin: 0 auto;
  width: 90%;

  animation: transTop 1s ease forwards;
}
.fonts svg {
  flex: 1;
  text-align: center;
  margin: 100px 5% 0;
}
@keyframes transTop {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cls-1 {
  fill: #231f20;
}
.cls-2 {
  opacity: 0.8;
}
.cls-3 {
  fill: none;
  stroke: #231f20;

  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.draw-letter {
  animation: dash 5s cubic-bezier(0.46, 0.03, 0.52, 0.96) forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.colors {
  width: 100%;
  max-width: 600px;
  margin: 100px auto 150px;

  display: flex;
}
.colors div {
  flex: 1;
  text-align: center;
}
.color {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: 0 auto;
}
.color-1 {
  background: #171a21;
  border: 1px solid rgba(234, 234, 234, 0.5);
}
.color-2 {
  background: #0a4159;
}
.color-3 {
  background: #fcab26;
}
.color-4 {
  background: #eaeaea;
  border: 1px solid rgba(35, 35, 35, 0.5);
}

.wireframes {
  margin: 100px 0 0;
  padding: 200px 0;
}
.wireframes svg,
.wireframes img {
  padding: 20px;
  width: calc(50% - 40px);
  float: left;

  animation: transTop 1s ease forwards;
}

.wireframes svg:nth-child(2n),
.wireframes img:nth-child(2n) {
  float: right;
}
.wireframes svg:nth-child(2),
.wireframes img:nth-child(2),
.wireframes svg:nth-child(3),
.wireframes img:nth-child(3) {
  margin-top: 100px;
}

.desktop {
  margin: 160px 0 80px;
}
.desktop img {
  width: 100%;
  padding: 75px 0;
}

.wrap-video {
  width: 80%;
  margin: 50px auto;
  height: 1000px;
  max-height: 60vh;
}

footer {
  min-height: 10vh;
  margin-bottom: 50px;
  position: relative;
  z-index: 100;
}
footer div {
  margin: 0;
  width: 100%;
  position: absolute;
  top: 50%;

  display: flex;
}
footer div div {
  flex: 1;
  font-size: 1.5em;

  position: relative;
}

footer a {
  opacity: 0.5;

  transition: opacity 0.2s ease;
  transition: padding-right 0.5s ease;
}
footer a:hover {
  opacity: 1;
}
.foot1 {
  transition: padding-left 0.5s ease;
}
.foot1:hover {
  padding-left: 70px;
}
.foot1::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--black);

  transition: all 0.5s ease;
}
.foot1:hover::before {
  width: 60px;
  transform: translateX(-70px);
}
.foot2 {
  margin: 0 auto;
}
.foot3 {
  margin: 0 0 0 auto;
}

.foot3:hover {
  padding-right: 70px;
}
.foot3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--black);

  transition: all 0.5s ease;
}
.foot3:hover::after {
  width: 60px;
  transform: translateX(10px);
}

@keyframes test {
  from {
    transform: translateY(300px);
  }
  to {
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media screen and (max-width: 700px) {
  .wrapper-grid {
    width: 100%;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-auto-rows: 30px;
  }

  .our-challenge {
    grid-column: 3 / span 13;
    grid-row: 15 / span 3;
  }
  .computer {
    grid-column: 2 / span 13;
    grid-row: 6 / span 9;
  }
  .audit {
    grid-column: 5 / span 11;
    grid-row: 20 / span 1;
  }
  .audit::after {
    height: 100%;
  }
  .desc {
    grid-column: 1 / span 14;
    grid-row: 23 / span 6;
  }
  .pros {
    grid-column: 4 / span 12;
    grid-row: 29 / span 6;
  }
  .pros div {
    width: 88% !important;
  }
  .cons {
    grid-column: 1 / span 13;
    grid-row: 37 / span 6;
  }
  .end {
    grid-column: 2 / span 14;
    grid-row: 43 / span 5;
  }

  .video1 {
    grid-column: 2 / span 13;
    grid-row: 5 / span 10;
  }
  .lexi1 {
    grid-column: 2 / span 13;
    grid-row: 16 / span 7;
  }
  .imgs1 {
    grid-column: 2 / span 13;
    grid-row: 24 / span 39;
  }
  .lexi2 {
    grid-column: 2 / span 13;
    grid-row: 64 / span 5;
  }
  .img1 {
    grid-column: 2 / span 13;
    grid-row: 71 / span 12;
    transform: scale(1.2) translate(-0, 5%);
  }
  .img2 {
    grid-column: 2 / span 13;
    grid-row: 84 / span 12;
    transform: scale(1.2) translate(10%, 0);
  }
  .img3 {
    grid-column: 2 / span 13;
    grid-row: 97 / span 12;
    transform: scale(1.2) translate(-10%, -5%);
  }
  .lexi3 {
    grid-column: 2 / span 13;
    grid-row: 111 / span 3;
  }
  .imgs2 {
    grid-column: 2 / span 13;
    grid-row: 115 / span 39;
  }
  .lexi4 {
    grid-column: 2 / span 14;
    grid-row: 155 / span 4;
  }
  .video2 {
    grid-column: 2 / span 13;
    grid-row: 160 / span 8;
  }
  .imgs1 div,
  .imgs2 div {
    margin: 0 !important;
    height: 100%;
    width: calc(100vw - 13.3vw) !important;
  }
  .imgs1 div img,
  .imgs2 div img {
    max-height: calc(33% - 40px);
    width: auto;
    max-width: calc(100% - 40px);
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .img1 img,
  .img2 img,
  .img3 img {
    width: auto;
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  .maxL {
    grid-column: 1 / span 1;
    grid-row: 168 / span 1;
  }

  .maxR {
    grid-row: 51 / span 1;
  }

  .content h2 {
    min-width: inherit;
  }
  .fonts {
    display: inherit;
  }

  .color {
    width: 80px;
    height: 80px;
  }

  .wrap-video {
    width: 100%;
  }

  .wireframes svg,
  .wireframes img {
    float: left !important;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 600px) {
  header h2 {
    font-size: 1.8em;
  }
  .wireframes svg,
  .wireframes img {
    padding-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .color {
    width: 60px;
    height: 60px;
  }
  .wrapper-grid div p,
  .wrapper-grid div div,
  .wrapper-grid div h2 {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 450px) {
  .imgs1 div,
  .imgs2 div {
    height: inherit !important;
  }
  header h1 {
    font-size: 3em;
  }
}
@media screen and (max-width: 400px) {
  .imgs1 div img,
  .imgs2 div img {
    margin: 0px auto 120px;
  }
  header h2 {
    font-size: 1.5em;
  }
}

/**************************************************/
/* Animation pages */
main {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;

  transition: opacity 1s ease;
}

.woula {
  animation: test 2s ease forwards;
}
@keyframes test {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.woula div.wow {
  visibility: visible !important;
}

.woula2 {
  opacity: 0;
  /* z-index: 10; */
  animation: test2 2s ease forwards;
}

@keyframes test2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.noH {
  max-height: 100vh;
  overflow: hidden;
}

.nav-links-none {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(100vh - 130px));
  transition: all 1s ease;
}
.puce-wrap-top {
  bottom: calc(100vh - 30px);

  width: 400px;
  left: calc((100vw - 400px) / 2);

  transition: all 1s ease;
}
.puce-wrap-top .slide-line {
  width: 10px;
}
