@charset "UTF-8";
@import url("../fonts/Khand-Font/stylesheet.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*, *:after, *:before {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button {
  font-family: inherit;
}

@keyframes rotate {
  to {
    rotate: 360deg;
  }
}
:root {
  --site-width: 1680rem;
  --site-width-narrow: 1280rem;
  --typo-title: "Khand", sans-serif;
  --typo-text: "Raleway", sans-serif;
  --black: #111617;
  --dust: #a7a7a7 ;
  --antra: #303030 ;
  --orange: #c97a30;
  --space: #2d5961;
  --white: #ffffff;
}

* {
  scroll-behavior: smooth !important;
}

html {
  font-size: 1px;
  scroll-behavior: smooth !important;
}

body {
  padding-top: 110rem;
  background-color: var(--antra);
  background-color: var(--black);
  background-color: black;
  scroll-behavior: smooth;
  position: relative;
  font-size: 16rem;
  font-weight: 300;
  font-family: var(--typo-text), sans-serif;
  color: white;
  min-height: 200vh;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: underline;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  margin: 0rem 0 0rem;
  padding: 0 32rem;
  height: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  overflow: hidden;
  background-color: var(--antra);
  background-color: var(--black);
  transition: 0.2s;
}
.site-header .logo {
  width: 300rem;
  transition: 0.2s;
}
.site-header--right .sharers {
  flex-basis: 20%;
  justify-content: flex-end;
}
.site-header.sticky {
  height: 50rem;
}
.site-header.sticky .logo {
  width: 130rem;
}

.site-nav {
  position: fixed;
  top: 0rem;
  left: 0rem;
  z-index: 200;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20rem;
  text-align: center;
  display: none;
}
.site-nav--close {
  display: block;
  width: 60rem;
  height: 60rem;
  line-height: 0;
  font-size: 72rem;
  font-weight: 200;
  background-color: transparent;
  color: white;
  border: 0;
  cursor: pointer;
  transition: 0.2s;
}
.site-nav--close:hover {
  scale: 1.1;
}
.site-nav--skill {
  margin-top: 60rem;
}
.site-nav--skill a {
  display: block;
  padding: 5rem 10rem;
  color: white;
  text-decoration: none;
  font-family: var(--typo-title);
  font-size: 32rem;
  font-weight: 500;
  transition: 0.3s;
}
.site-nav--skill a:nth-child(1) {
  transition-delay: 0s;
}
.site-nav--skill a:nth-child(2) {
  transition-delay: 0.1s;
}
.site-nav--skill a:nth-child(3) {
  transition-delay: 0.2s;
}
.site-nav--corpo a {
  margin: 0 24rem;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16rem;
  font-weight: 700;
}
.site-nav--corpo::before {
  display: block;
  width: 200rem;
  height: 2rem;
  margin: 0 auto 40rem;
  background-color: white;
}
.site-nav .sharers {
  margin-top: 16rem;
}
.site-nav--sep {
  width: 50rem;
  filter: invert(1);
  margin: 25rem 0 30rem;
}
.site-nav.show {
  display: flex;
}

.burger {
  width: 50rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 100%;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 5rem;
  background-color: white;
  transition: 0.3s;
}
.burger span:nth-child(1) {
  transform-origin: 0 50%;
}
.burger span:nth-child(3) {
  transform-origin: 0 50%;
}
.burger.active span:nth-child(1) {
  translate: 0 10rem;
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  translate: 0 -10rem;
}

.sharers {
  color: white;
  font-size: 25rem;
  display: flex;
  gap: 5rem;
  width: fit-content;
}
.sharers a {
  width: 40rem;
  height: 40rem;
  margin: 0 5rem;
  display: inline-block;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  transition: 0.1s;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  filter: invert(1);
}
.sharers a:hover {
  rotate: 5deg;
}
.sharers a.twitter {
  background-image: url("../media/mdi_twitter.svg");
}
.sharers a.linkedin {
  background-image: url("../media/mdi_linkedin.svg");
}
.sharers a.instagram {
  background-image: url("../media/uil_instagram.svg");
}
.sharers a.youtube {
  background-image: url("../media/mdi_youtube.svg");
}
.sharers [class*=icon] {
  width: 30rem;
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: white;
  font-size: 18rem;
  color: black;
}
.sharers .icon-arobase {
  font-family: Inter !important;
  font-weight: 700;
  line-height: 0;
}

.site-body {
  position: relative;
}

.site-footer {
  background-color: var(--antra);
  width: 100%;
  padding: 48rem;
  color: white;
}
.site-footer p {
  margin-bottom: 16rem;
  text-align: center;
  font-size: 14rem;
}
.site-footer .mentions a {
  text-decoration: none;
}
.site-footer .adress {
  font-size: 18rem;
  text-transform: uppercase;
}
.site-footer nav {
  text-align: center;
}
.site-footer nav a {
  font-size: 12rem;
  margin: 5rem;
}

.tpl-home .hero {
  z-index: 10;
}

.tpl-page .hero {
  z-index: 10;
  margin-top: -100rem;
}
.tpl-page .reference {
  position: relative;
  z-index: 20;
  width: var(--site-width-narrow);
  margin: -150rem auto 0;
}

.hero {
  position: relative;
  height: calc(100vh - 110rem);
  overflow: hidden;
}
.hero::before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: linear-gradient(180deg, white 0%, transparent 53%, transparent);
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
}
.hero img {
  width: 100%;
  object-fit: cover;
  margin-top: -50rem;
}
.hero.nav-open .hero--accroche {
  opacity: 0;
}
.hero--accroche {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  font-family: "Khand";
  font-size: 40rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  transition: 1s;
}
@keyframes show-accroche {
  0% {
    opacity: 0;
    scale: 0.75;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
.hero--accroche li {
  display: block;
  margin: 0 30rem;
  animation: show-accroche 0.5s 0s both;
  text-shadow: 0 0 5px black;
}
.hero--accroche li:nth-child(1) {
  animation-delay: 0.5s;
}
.hero--accroche li:nth-child(2) {
  animation-delay: 1s;
}
.hero--accroche li:nth-child(3) {
  animation-delay: 1.5s;
}
.hero--accroche li:nth-child(4) {
  animation-delay: 2s;
}
.hero--accroche li:nth-child(5) {
  animation-delay: 2.5s;
}
.hero--accroche li:nth-child(6) {
  animation-delay: 3s;
}
.hero--accroche li:nth-child(7) {
  animation-delay: 3.5s;
}
.hero--accroche li:nth-child(8) {
  animation-delay: 4s;
}

.subhero {
  position: relative;
  height: 40vh;
}
.subhero--content {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: var(--site-width);
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
.subhero--picture {
  filter: brightness(0.4);
  height: 100vh;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.subhero h2 {
  margin-bottom: 10rem;
  font-family: "Khand";
  font-size: 140rem;
  font-weight: 700;
  line-height: 0.7;
  text-transform: lowercase;
}
.subhero ul {
  display: flex;
}
.subhero ul li {
  margin: 0 10rem 0 0rem;
  font-size: 32rem;
  font-family: "Khand";
  text-shadow: 0 0 5px black;
}
.subhero ul li::after {
  content: ".";
  font-size: 80rem;
  position: relative;
  top: -5rem;
  line-height: 0;
  margin: 0 0 0 10rem;
}
.subhero ul li:last-child::after {
  display: none;
}
.subhero--chapo {
  width: 600rem;
  font-size: 18rem;
}
.subhero--chapo::before {
  content: "";
  margin: 32rem 0 24rem;
  display: block;
  width: 50rem;
  height: 4rem;
  background-color: white;
}
.subhero--more2 {
  --size: 100rem;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: none;
  background-color: white;
}
.subhero--more2 img {
  width: 50rem;
}
.subhero--more {
  display: none;
  width: fit-content;
  margin-left: auto;
  margin-top: 20rem;
  padding: 15rem 45rem;
  background-color: white;
  color: var(--antra);
  border-radius: 5rem;
  height: 100%;
  z-index: 10;
  font-size: 16rem;
  font-weight: 500;
  text-transform: uppercase;
}
.subhero--more img {
  width: 30rem;
  margin-left: 20rem;
  vertical-align: top;
}

.about {
  position: relative;
  width: var(--site-width-narrow);
  padding: 0rem 0;
  margin: 200rem auto 0;
  height: 100vh;
}
.about--content {
  display: flex;
}
.about--content > * {
  width: 33.33%;
  padding: 100rem 40rem 300rem;
  border-right: 1px solid rgba(128, 128, 128, 0.432);
}
.about--content h3 {
  font-size: 32rem;
  font-weight: 700;
  margin-bottom: 32rem;
  text-transform: lowercase;
}
.about--content p {
  margin-bottom: 5rem;
  font-family: var(--typo-text);
  color: var(--dust);
}
.about--title {
  margin-bottom: -50rem;
  font-family: "Khand";
  font-size: 120rem;
  font-weight: 700;
  text-transform: lowercase;
  text-align: center;
}
.about--picture {
  filter: saturate(0) contrast(1.5);
}
.about--text {
  font-size: 14rem;
  margin-bottom: 24rem;
}
.about--link {
  display: block;
  padding-left: 60rem;
  min-height: 40rem;
  line-height: 40rem;
  font-size: 16rem;
  font-weight: 700;
  text-decoration: none;
  background-image: url("../media/mingcute_arrow-up-fill.svg");
  background-repeat: no-repeat;
  background-position: 0% 50%;
  background-size: auto 100%;
}

.skill {
  margin-bottom: 24rem;
}
.skill h4 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.skill p {
  font-size: 16rem;
  text-transform: lowercase;
}
.skill img {
  filter: invert(0.5);
  width: 50rem;
  float: left;
  margin-right: 16rem;
}

.trust {
  background-color: white;
  color: var(--antra);
}
.trust--wrap {
  width: 900rem;
  margin: auto;
  padding: 150rem 0;
}
.trust--title {
  text-align: center;
  font-family: var(--typo-title);
  font-size: 72rem;
  font-weight: 700;
  margin-bottom: 80rem;
}
.trust .galery-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32rem;
}
.trust .galery-logo figure {
  width: 120rem;
  filter: saturate(0) invert(1);
}

.contact {
  width: 500rem;
  margin: auto;
  padding: 150rem 0;
}
.contact h2 {
  text-align: center;
  font-family: var(--typo-title);
  font-size: 48rem;
  margin-bottom: 32rem;
  line-height: 2;
}
.contact--plane {
  width: 50rem;
  filter: invert(1);
}
.contact .input {
  margin-bottom: 32rem;
}
.contact .input label {
  display: block;
  margin-bottom: 8rem;
  font-size: 16rem;
  font-weight: 600;
  text-transform: uppercase;
}
.contact .input input,
.contact .input textarea {
  width: 500rem;
  border-radius: 2rem;
  font-family: inherit;
}
.contact .input input {
  height: 50rem;
  padding: 0 16rem;
  border: 0;
}
.contact .input textarea {
  height: 150rem;
  padding: 16rem;
  border: 0;
}
.contact .contact--message {
  font-size: 24rem;
  font-weight: 700;
  margin: 0 24rem 32rem;
}
.contact .contact--message.success {
  color: green;
}
.contact .contact--message.error {
  color: red;
}
.contact .error {
  color: red;
  font-size: 0.8em;
  display: block;
  margin-top: 5px;
}

.btn {
  padding: 10rem 30rem;
  background-color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 2rem;
  border: 0;
  color: var(--black);
  cursor: pointer;
  font-size: 18rem;
  font-weight: 700;
  text-transform: uppercase;
}

.category {
  height: 40vh;
  margin-bottom: 32rem;
}
.category#culture {
  margin-bottom: 0;
}
.category:nth-child(even) .category--content {
  flex-direction: row;
}
.category:nth-child(even) .subhero--content {
  flex-direction: row-reverse;
}
.category:nth-child(even) .subhero--content ul {
  justify-content: flex-end;
}
.category:nth-child(even) .subhero--chapo {
  margin-left: auto;
  text-align: right;
}
.category:nth-child(even) .subhero--chapo::before {
  margin: 32rem 0 24rem auto;
}
.category:nth-child(even) .subhero h2 {
  text-align: right;
}
.category--wrap {
  width: var(--site-width);
  margin: auto;
  display: none;
}
.category--content {
  display: flex;
  align-items: flex-start;
  gap: 60rem;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 48rem 0;
}
.category .projects {
  flex-basis: 30%;
}
.category .galery {
  flex-basis: 70%;
}

.galery {
  width: 900rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
.galery img {
  --size: 70rem;
  display: block;
  width: var(--size);
  height: var(--size);
  object-fit: cover;
  border-radius: 2rem;
}
.galery img:nth-child(odd) {
  margin-top: 5rem;
}

.projects h3 {
  font-size: 64rem;
  text-transform: lowercase;
  line-height: 0.7;
  margin-bottom: 24rem;
}
.projects ol {
  counter-reset: my-counter;
  /* Initialise le compteur */
  list-style: none;
  /* Supprime les puces par défaut */
}
.projects ol li {
  counter-increment: my-counter;
  /* Incrémente le compteur */
  position: relative;
  /* Espace pour le compteur */
  font-size: 18rem;
  font-weight: 200;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.205);
}
.projects ol li::before {
  content: counter(my-counter, decimal-leading-zero) ".";
  /* Affiche le compteur avec un zéro devant */
  font-family: "Khand";
  font-size: 32rem;
  font-weight: bold;
  color: grey;
  margin-right: 20rem;
}

.btn2 {
  padding: 10rem 30rem;
  color: rgb(255, 255, 255);
  text-align: center;
  text-decoration: none;
  background-color: rgb(0, 0, 0);
  border-radius: 2rem;
  flex-shrink: 0;
}

.reference {
  min-height: 50vh;
  padding: 40rem;
  background-color: white;
}
.reference--title {
  margin-bottom: 40rem;
  font-size: 56rem;
  font-weight: 200;
  font-family: "Outfit", sans-serif;
  color: var(--space);
  text-align: center;
  text-transform: uppercase;
}
.reference--chapo {
  width: 700rem;
  margin: 0 auto 20rem;
  font-size: 24rem;
  font-weight: 700;
  text-align: center;
}
.reference--desc {
  width: 700rem;
  font-size: 16rem;
}
.reference--desc h2 {
  font-size: 32rem;
  margin: 24rem 0 16rem;
}
.reference--desc p {
  margin-bottom: 16rem;
}

@media screen and (max-width: 1900px) and (min-width: 720px) {
  html {
    font-size: 0.053vw;
  }
}
@media screen and (max-width: 719px) {
  :root {
    --site-width: 100%;
    --site-width-narrow: 100%;
  }
  html {
    font-size: 0.2vw;
  }
  body {
    padding: 0;
  }
  .site-header {
    margin: 0 0rem;
    flex-direction: row-reverse;
  }
  .site-header .logo {
    width: 175rem;
  }
  .site-header--right {
    display: none;
  }
  .site-footer {
    padding: 15rem;
  }
  .hero--accroche {
    white-space: nowrap;
  }
  .hero video {
    filter: brightness(0.8);
  }
  .subhero--chapo {
    width: 100%;
  }
  .subhero--more2 {
    display: none;
  }
  .subhero--content {
    padding: 0 15rem;
  }
  .subhero h2 {
    margin-bottom: 10rem;
    font-size: 80rem;
  }
  .subhero ul li {
    margin: 0 10rem 0 0rem;
    font-size: 24rem;
  }
  .about {
    padding: 0rem 0;
    margin: 80rem auto;
    min-height: 100vh;
    height: auto;
  }
  .about .about--picture {
    margin: 0 -15rem;
    width: calc(100% + 30rem);
  }
  .about--title {
    font-size: 80rem;
    margin-bottom: 32rem;
    text-align: center;
  }
  .about--content {
    flex-direction: column;
  }
  .about--content > * {
    width: 100%;
    padding: 0rem 15rem 48rem;
  }
  .trust {
    margin: 0rem 0;
  }
  .trust--wrap {
    width: 100%;
    padding: 80rem 0;
  }
  .trust--title {
    font-size: 72rem;
    margin-bottom: 80rem;
    line-height: 1.1;
  }
  .contact {
    width: 100%;
    margin: 80rem 0;
    padding: 0 15rem;
  }
  .contact .input input,
  .contact .input textarea {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */