* {
  box-sizing: border-box;
  -webkit-font-smoothing : antialiased;
  font-smoothing : antialiased;
}
:root {
  --gray-900: #202124;
  --gray-200: #F0F0F0;
  --gray-100: #FAFAFA;
  --accent: #EFFF40;
  --white: #FFFFFF;
  --black: #000000;
}

/*-----------CTA-------------*/
a {
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  font-family: 'Unbounded';
  font-weight: 400;
}
a:hover {
  text-decoration: underline;
}
.cta {
  font-family: 'Unbounded';
  font-weight: 400;
  color: var(--gray-900);
  border-radius: 300px;
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  flex-shrink: 0;
  position: relative;
  bottom: 0;
  justify-content: center;
  border: 2px var(--gray-900) solid;
  border-radius: 8px;
  box-shadow: 0px 4px 0px 0px rgba(32, 33, 36, 1);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
.cta:hover {
  position: relative;
  bottom: -3px;
  text-decoration: none;
  box-shadow: 0px 1px 0px 0px rgba(32, 33, 36, 1);
  transition: all .1s ease-in-out;
  -webkit-transition: all .1s ease-in-out;
}
.cta-primary {
  background-color: var(--accent);
}
.cta-secondary {
  background-color: var(--white);
}
.cta-xl {
  font-size: 18px;
  line-height: 32px;
  padding: 16px 40px;
}
.cta-small {
  font-size: 16px;
  line-height: 24px;
  padding: 12px 24px;
}
.cta.cta-icon {
  padding-right: 60px;
}
.cta.cta-icon::after, .cta.icon-only:after {
  content: '';
  position: absolute;
  right: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  width: 24px;
  height: 24px;
}
.cta.icon-only {
  font-size: 0;
  border-radius: 50%;
  padding: 0;
}
.cta.icon-only:after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: relative;
}
.cta.icon-only.cta-small {
  width: 48px;
  height: 48px;
}

/*-----------ICONES-------------*/
.icon-download::after {
  background-image: url(../img/uil_import.svg);
}
.icon-wrench::after {
  background-image: url(../img/uil_wrench.svg);
}
.icon-image::after {
  background-image: url(../img/uil_image.svg);
}
.icon-external-link::after {
  background-image: url(../img/uil_external-link-alt.svg);
}
.icon-code::after {
  background-image: url(../img/uil_code.svg);
}
.icon-behance::after {
  background-image: url(../img/uil_behance.svg);
}
.icon-linkedin::after {
  background-image: url(../img/uil_linkedin.svg);
}
.icon-instagram::after {
  background-image: url(../img/uil_instagram.svg);
}


/*-----------TYPOS-------------*/

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  margin-bottom: 0;
  font-family: 'Unbounded', cursive;
}
h1, .h1, h2, .h2, h3, .h3 {
  line-height: 1.2em;
}
h4, .h4, h5, .h5 {
  line-height: 1.3em;
}
.h0 {
  -webkit-text-stroke: 2px var(--white);
  color: var(--black);
}
h1, .h1 {
  font-size: 88px;
  line-height: 1em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 80px;
}
h2, .h2 {
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 64px;
}
h3, .h3 {
  font-size: 32px;
  font-weight: 600;
}
h4, .h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}
h5, .h5 {
  font-size: 24px;
  font-weight: 300;
}
.body1 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}

/*-----------COLORS-------------*/

.bg-gray-100 {
  background-color: var(--gray-100);
}
.bg-gray-200 {
  background-color: var(--gray-200);
}
.bg-gray-900 {
  background-color: var(--gray-900);
}
.gray-900 {
  color: var(--gray-900);
}
.white {
  color: var(--white);
}

/*-----------CONTENT-------------*/
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style-type: none;
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
}
svg {
  flex-shrink: 0;
}
section {
  padding: 120px 0;
}
.container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
p {
  margin-bottom: 1em;
}

/*-----------HELPERS-------------*/
.p-20 {
  padding: 20px;
}
.p-32 {
  padding: 32px;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-24 {
  padding-bottom: 24px !important;
}
.pb-32 {
  padding-bottom: 32px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-56 {
  padding-bottom: 56px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.pt-24 {
  padding-top: 24px !important;
}
.pt-32 {
  padding-top: 32px !important;
}
.pt-56 {
  padding-top: 56px !important;
}
.pt-80 {
  padding-top: 80px;
}
.pt-102 {
  padding-top: 102px !important;
}
.pt-132 {
  padding-top: 132px;
}
.pt-160 {
  padding-top: 160px;
}
.pt-142 {
  padding-top: 142px;
}
.px-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
.px-32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}
.px-64 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}
.py-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.py-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.py-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.py-64 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
.m-0 {
  margin: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-4 {
  margin-top: 4px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-56 {
  margin-top: 56px !important;
}
.mt-64 {
  margin-top: 64px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mt-102 {
  margin-top: 102px !important;
}
.mt-142 {
  margin-top: 142px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-4 {
  margin-bottom: 4px !important;
}
.mb-8 {
  margin-bottom: 8px !important;
}
.mb-12 {
  margin-bottom: 12px !important;
}
.mb-16 {
  margin-bottom: 16px !important;
}
.mb-24 {
  margin-bottom: 24px !important;
}
.mb-32 {
  margin-bottom: 32px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-em {
  margin-bottom: 2.5em !important;
}
.mb-56 {
  margin-bottom: 56px !important;
}
.mb-64 {
  margin-bottom: 64px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.ml-4 {
  margin-left: 4px;
}
.ml-8 {
  margin-left: 8px;
}
.ml-16 {
  margin-left: 16px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-24 {
  margin-left: 24px;
}
.ml-40 {
  margin-left: 40px;
}
.ml-auto {
  margin-left: auto;
}
.mr-8 {
  margin-right: 8px;
}
.mr-12 {
  margin-right: 12px;
}
.mr-16 {
  margin-right: 16px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-24 {
  margin-right: 24px;
}
.mr-32 {
  margin-right: 32px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-48 {
  margin-right: 48px;
}
.mr-64 {
  margin-right: 64px;
}
.mr-72 {
  margin-right: 72px;
}
.mr-80 {
  margin-right: 80px;
}
.mr-auto {
  margin-right: auto !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.mx-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}
.mx-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}
.mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.mx-24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}
.mx-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.my-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.my-24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.my-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}
.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.medium {
  font-weight: 500;
}
.bold {
  font-weight: 600;
}


/*-----------HEADER-------------*/

header {
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: var(--gray-100);
}
header:before {
  content:'';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../img/nicolas-vigneau-hero.png") no-repeat 40vw top fixed;
  background-size: contain;
}
header .h1 {
  font-size: 11vw;
  line-height: .8em;
  font-weight: 900;
  text-transform: uppercase;
  mix-blend-mode: difference;
  color: white;
  margin: 0 0 0 -10px;
}
.banner-link {
  color: var(--gray-900);
  padding: 8px 64px;
  line-height: 1.5em;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--accent);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
.banner-link:hover {
  padding: 64px;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
.banner-link span {
  display: inline-flex;
  align-items: center;
}
.banner-link span::after {
  content: '';
  height: 24px;
  width: 24px;
  display: inline-block;
  background: url('../img/uil_arrow-down.svg') no-repeat center;
  background-size: contain;
  margin: auto auto auto 8px;
}

/*-----------NAV-------------*/
nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 0 16px;
}
nav ul {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, .85);
  backdrop-filter: blur(8px);
  padding: 12px 40px;
  border-radius: 24px;
}

/*-----------CARD LINK-------------*/
.card-link {
  padding: 96px 56px;
  position: relative;
  bottom: 0;
  justify-content: center;
  border: 4px var(--gray-900) solid;
  border-radius: 40px;
  background-color: var(--white);
  box-shadow: 0px 8px 0px 0px rgba(32, 33, 36, 1);
  color: var(--gray-900);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
.card-link:hover {
  bottom: -4px;
  background-color: var(--accent);
  box-shadow: 0px 4px 0px 0px rgba(32, 33, 36, 1);
  text-decoration: none;
  transition: all .1s ease-in-out;
  -webkit-transition: all .1s ease-in-out;
}
.card-link:after {
  content: '';
  position: absolute;
  height: 96px;
  width: 90px;
  background: url(../img/hand-cursor.svg) no-repeat center;
  opacity: 0;
  bottom: -60px;
  right: -45px;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
.card-link:hover:after {
  opacity: 1;
  bottom: -40px;
  right: -15px;
  transition: all .1s ease-in-out;
  -webkit-transition: all .1s ease-in-out;
}

/*-----------CARDS STICKY-------------*/
.card-sticky {
  border-radius: 16px;
  background-color: var(--gray-200);
  padding: 64px 200px 64px 64px;
  position: sticky;
  top: 20%;
  transform-origin: top;
}

.card-sticky::after {
  content: '';
  position: absolute;
  display: inline-block;
  height: 80px;
  width: 80px;
  right: 24px;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.card-sticky:nth-child(2) {
  top: 25%;
}

/*-----------REALISATIONS-------------*/

.card-realisation {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: 80vh;
  overflow: hidden;
  color: var(--white);
  display: flex;
}
/*.card-realisation:hover {
  border: 8px var(--accent) solid;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}*/
.card-realisation .content {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 104px 64px 64px 64px;
  background: rgba(0, 0, 0, .7);
}
#michelin {
  background-image: url(../img/cover-michelin.jpg);
}
#sisley {
  background-image: url(../img/cover-hairrituel.jpg);
}
#docaposte {
  background-image: url(../img/cover-docaposte.jpg);
}

/*-----------FOOTER-------------*/
footer a {
  color: var(--gray-900);
}



/*-----------RESPONSIVE-------------*/


@media (max-width: 900px) {

  h1, .h1 {
    font-size: 10vw;
    margin-bottom: 1em;
  }
  h2, .h2 {
    font-size: 40px;
  }
  h3, .h3 {
    font-size: 24px;
  }
  h4, .h4 {
    font-size: 20px;
  }
  h5, .h5 {
    font-size: 18px;
  }
  header .h1 {
    margin: 0;
    font-size: 14vw;
  }
  .container-fluid {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }
  header:before {
    background: url("../img/nicolas-vigneau-hero.png") no-repeat -20vw top fixed;
    background-size: cover;
  }
  nav img {
    height: 32px;
  }
  nav ul {
    padding: 20px 24px;
  }
  .cta-xl {
    font-size: 16px;
    line-height: 24px;
    padding: 16px 40px;
  }
  .cta-small {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 24px;
  }
  section {
    padding: 80px 0;
    overflow: hidden;
  }
  .banner-link {
    padding: 16px 24px 0 24px;
  }
  .banner-link span {
    flex-direction: column;
    text-align: center;
    display: inline-flex;
  }
  .banner-link span::after {
    height: 40px;
    width: 40px;
    margin: auto;
  }
  .card-link {
    padding: 48px;
  }
  .card-realisation .content {
    padding: 32px 32px 40px 32px;
  }
  .card-sticky {
    padding: 120px 32px 32px 32px;
  }
  .card-sticky::after {
    top: 32px;
    left: 32px;
    transform: inherit;
    height: 64px;
    width: 64px;
    right: inherit;
  }

  /*-----------HELPERS-------------*/
  .m-0-m {
    margin: 0 !important;
  }
  .mt-0-m {
    margin-top: 0 !important;
  }
  .mt-4-m {
    margin-top: 4px !important;
  }
  .mt-8-m {
    margin-top: 8px !important;
  }
  .mt-16-m {
    margin-top: 16px !important;
  }
  .mt-24-m {
    margin-top: 24px !important;
  }
  .mt-40-m {
    margin-top: 40px !important;
  }
  .mb-0-m {
    margin-bottom: 0 !important;
  }
  .mb-16-m {
    margin-bottom: 16px !important;
  }
  .mb-24-m {
    margin-bottom: 24px !important;
  }
  .mb-32-m {
    margin-bottom: 32px !important;
  }
  .mb-40-m {
    margin-bottom: 40px !important;
  }
  .mb-80-m {
    margin-bottom: 80px !important;
  }
  .ml-0-m {
    margin-left: 0px !important;
  }
  .ml-8-m {
    margin-left: 8px !important;
  }
  .ml-16-m {
    margin-left: 16px !important;
  }
  .mr-0-m {
    margin-right: 0px !important;
  }
  .mr-8-m {
    margin-right: 8px !important;
  }
  .mr-16-m {
    margin-right: 16px !important;
  }
  .mr-24-m {
    margin-right: 24px !important;
  }
  .mr-auto-m {
    margin-right: auto !important;
  }
  .mx-60-m {
    margin: 0 60px !important;
  }
  .mx-auto-m {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .pt-40-m {
    padding-top: 40px !important;
  }
  .pt-88-m {
    padding-top: 88px !important;
  }
  .pb-24-m {
    padding-bottom: 24px !important;
  }
  .pl-0-m {
    padding-left: 0px !important;
  }
  .pr-0-m {
    padding-right: 0px !important;
  }
  .py-64-m {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .d-block-m {
    display: block !important;
  }
  .d-flex-m {
    display: flex !important;
  }
  .d-none-m {
    display: none !important;
  }
}