:root {
  --white: white;
  --black: #000;
  --blue: #0097cc;
  --orange: #ff8b22;
  --pink: #ff7bac;
  --green: #00bb08;
  --purple: #8700fd;
}

body {
  letter-spacing: 1.5px;
  line-height: 1;
}

h1 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Jost, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Jost, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

img {
  display: inline-block;
}

.body {
  background-image: none;
}

._3dbckgnd-spline-wrapper {
  z-index: 1;
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.spline-scene {
  width: 100%;
  height: 100%;
}

.logotxt {
  width: 100%;
}

.hero-wrapper-left {
  z-index: 2;
  width: 20vw;
  height: 100%;
  padding: 40px;
  position: fixed;
  top: 0;
  left: 0;
}

.hero-logo-wrapper {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 50%;
}

.hero-services-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 50%;
  display: flex;
}

.h2-services {
  color: var(--white);
  text-transform: uppercase;
  font-family: Jost, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.h2-services.is-projet {
  color: var(--black);
  font-weight: 400;
}

.h2-services.is-projet.is-blue {
  color: var(--blue);
}

.h2-services.is-projet.is-yellow {
  color: #8700fd;
}

.h2-services.is-projet.is-orange {
  color: var(--orange);
}

.h2-services.is-projet.is-pink {
  color: var(--pink);
}

.h2-services.is-projet.is-green {
  color: var(--green);
}

.hero-wrapper-right {
  z-index: 3;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 20vw;
  height: 100%;
  padding: 40px;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
}

.hero-contact-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 20vw;
  height: 33%;
  display: flex;
}

.h3-contact {
  text-align: right;
  font-weight: 400;
  line-height: 1.2;
}

.h3-contact.is-projet {
  color: var(--black);
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.2;
}

.h3-contact.is-projet:hover {
  font-weight: 600;
}

.h3-contact.center {
  color: var(--black);
  text-align: center;
  line-height: 1.5;
}

.hero-logo-colors-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  width: auto;
  height: 33%;
  display: flex;
}

.colors-circle {
  border: 2px solid var(--white);
  background-color: var(--pink);
  cursor: pointer;
  border-radius: 100%;
  width: 30px;
  height: 30px;
}

.colors-circle.is-purple {
  background-color: var(--purple);
}

.colors-circle.is-blue {
  background-color: var(--blue);
}

.colors-circle.is-orange {
  background-color: var(--orange);
}

.colors-circle.is-green {
  background-color: var(--green);
}

.colors-circle.is-multi {
  background-image: linear-gradient(90deg, var(--pink), var(--pink) 22%, var(--purple) 29%, var(--orange) 41%, var(--blue) 55%, var(--blue));
}

.hero-projets-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 20vw;
  height: auto;
  display: flex;
}

.h1-projets {
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
}

.h1-projets.is-big {
  color: var(--black);
  font-size: 24px;
}

.h1-projets.is-big.small-capitals {
  text-transform: none;
}

.h1-projets.is-big.is-about {
  font-weight: 700;
}

.h1-projets.is-about {
  color: var(--black);
}

.background {
  z-index: 0;
  opacity: 0;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.background.is-green {
  background-color: var(--green);
  opacity: 100;
}

.background.is-multi {
  background-image: linear-gradient(90deg, var(--pink), var(--pink) 27%, var(--purple) 36%, var(--orange) 46%, var(--blue) 55%, var(--blue) 90%, var(--green) 100%, var(--blue));
  opacity: 100;
}

.backgrounds {
  width: 100vw;
  position: fixed;
  inset: 0% 0% auto;
}

.projets-container {
  z-index: 1;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 60vw;
  margin-left: 20vw;
  margin-right: 20vw;
  padding: 30px;
  display: flex;
  position: relative;
}

.body-2 {
  justify-content: center;
  align-items: center;
}

.projets-title-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.projets-img-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: flex-start;
  place-items: center;
  width: 100%;
  display: grid;
}

.projets-img-wrapper.is-3-video-horizontal {
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
}

.projets-description-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.description-txt {
  color: var(--black);
  text-transform: none;
  margin-bottom: 0;
  font-family: Jost, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.background-video, .projets-video {
  aspect-ratio: 9 / 16;
  width: 100%;
  height: 100%;
}

.projets-what {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.h3-what {
  border: 2px solid var(--white);
  background-color: #fff3;
  border-radius: 50px;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-weight: 400;
  display: flex;
}

.h3-what.is-branding {
  border-width: 2px;
  border-color: var(--blue);
  color: var(--white);
  text-transform: uppercase;
  background-color: #0097cc99;
}

.h3-what.is-logo {
  border-width: 2px;
  border-color: var(--green);
  color: var(--white);
  text-transform: uppercase;
  background-color: #00bb0899;
}

.h3-what.is-webflow {
  border-width: 2px;
  border-color: var(--pink);
  color: var(--white);
  text-transform: uppercase;
  background-color: #ff7bac99;
}

.h3-what.is-ux-ui {
  border-width: 2px;
  border-color: var(--purple);
  color: var(--white);
  text-transform: uppercase;
  background-color: #8700fd99;
}

.h3-what.is-3d-motion {
  border-width: 2px;
  border-color: var(--orange);
  color: var(--white);
  text-transform: uppercase;
  background-color: #ff8b2299;
}

.menu-link {
  text-decoration: none;
}

.hero-projets-wrapper-projets {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: auto;
  display: flex;
}

.h1-projets-projets {
  color: var(--black);
  text-align: right;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.2;
}

.h1-projets-projets:hover {
  font-weight: 600;
}

.h1-projets-projets.is-about {
  font-weight: 700;
}

.h1-projets-projets.is-about:hover {
  font-weight: 400;
}

.underline {
  text-decoration: underline;
}

.underline.bold {
  font-weight: 600;
}

.projet-contact-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 20vw;
  height: 33%;
  display: flex;
}

.contact-container {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0%;
}

.contact-container.invisible {
  display: none;
}

.contact-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border: 2px solid var(--black);
  background-color: #fff;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 30px;
  display: flex;
  box-shadow: 4px 4px 7px #0000008c;
}

.contact-link {
  color: var(--blue);
  font-weight: 500;
}

.contact-link:hover {
  font-weight: 700;
}

.contact-link:visited {
  color: var(--pink);
}

.contact-link.is-white {
  color: var(--white);
  cursor: pointer;
  text-decoration: underline;
}

.mobile-logo-img {
  display: none;
}

.mobile-projets-wrapper-projets {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 20vw;
  height: auto;
  display: none;
}

.mobile-contact {
  display: none;
}

.hero-wrapper-right-bis {
  z-index: 3;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 20vw;
  height: 100%;
  padding: 40px;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
}

.hero-wrapper-left-bis {
  z-index: 2;
  width: 20vw;
  height: 100%;
  padding: 40px;
  position: fixed;
  top: 0;
  left: 0;
}

.projets-img-vertical-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.projets-vertical-img {
  width: 100%;
  box-shadow: 0 2px 5px #0003;
}

.button {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  cursor: pointer;
  object-fit: fill;
  border: 2px solid #000;
  border-radius: 50px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
  box-shadow: 2px 2px 5px #0003;
}

.h4-button {
  color: var(--black);
  padding: 15px 15px 15px 30px;
}

.button-wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.button-arrow {
  color: var(--black);
  width: 40px;
}

.logo-desktop-link {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: flex-start;
  place-items: start stretch;
  display: flex;
  position: relative;
}

.button-container {
  width: 100%;
}

.mobile-navbar-wrapper {
  display: none;
}

.image {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.projets-video-horizontal {
  aspect-ratio: 16 / 9;
  box-shadow: 0 2px 5px #0003;
}

.image-2 {
  width: 100%;
}

.h4-date {
  color: var(--black);
  font-family: Jost, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.hero-projets-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.hero-projets-container-projets {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.about-txt {
  color: var(--black);
  text-transform: none;
  margin-bottom: 0;
  font-family: Jost, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .hero-wrapper-left {
    padding: 20px;
  }

  .h2-services {
    font-weight: 400;
  }

  .h2-services.is-projet {
    font-size: 12px;
  }

  .hero-wrapper-right {
    padding: 20px;
  }

  .hero-contact-wrapper {
    transform: rotate(0);
  }

  .h3-contact {
    line-height: 1.2;
  }

  .h3-contact.is-projet {
    font-size: 12px;
    transform: rotate(0);
  }

  .colors-circle {
    width: 25px;
    height: 25px;
  }

  .h1-projets {
    text-align: right;
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
  }

  .h1-projets.is-big {
    text-align: left;
    font-size: 20px;
  }

  .projets-container {
    justify-content: space-between;
    align-items: center;
  }

  .projets-img-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .projets-img-wrapper.is-3-video-horizontal {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .projets-description-wrapper {
    width: 100%;
  }

  .projets-what {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .h3-what {
    padding: 5px;
    font-size: 12px;
  }

  .menu-link, .hero-projets-wrapper-projets {
    width: 100%;
  }

  .h1-projets-projets {
    text-align: right;
    width: 100%;
    font-size: 12px;
  }

  .projet-contact-wrapper {
    transform: rotate(0);
  }

  .mobile-projets-wrapper-projets {
    width: 100%;
  }

  .hero-wrapper-right-bis, .hero-wrapper-left-bis {
    padding: 20px;
  }

  .mobile-navbar-wrapper {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hero-wrapper-left {
    display: none;
  }

  .hero-wrapper-right {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .hero-contact-wrapper {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }

  .hero-logo-colors-wrapper {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .colors-circle {
    width: 20px;
    height: 20px;
  }

  .hero-projets-container {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .h1-projets {
    color: var(--black);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
  }

  .projets-description-wrapper {
    width: 100%;
  }

  .description-txt {
    margin-bottom: 0;
  }

  .button {
    width: 100%;
  }

  .mobile-navbar-wrapper {
    display: none;
  }

  .about-txt {
    margin-bottom: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 479px) {
  img {
    width: 50%;
  }

  .hero-wrapper-left {
    pointer-events: none;
    width: 100%;
    display: none;
  }

  .hero-services-wrapper {
    display: none;
  }

  .hero-wrapper-right {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    display: flex;
  }

  .hero-contact-wrapper {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }

  .h3-contact.center {
    width: 100%;
    font-size: 12px;
  }

  .hero-logo-colors-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .colors-circle {
    width: 25px;
    height: 25px;
  }

  .hero-projets-container {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .h1-projets {
    color: var(--black);
    text-align: center;
  }

  .h1-projets.is-about {
    font-weight: 700;
  }

  .projets-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
  }

  .body-2 {
    padding-top: 20vh;
    padding-bottom: 20vh;
  }

  .menu-link, .menu-link.w--current {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .h1-projets-projets {
    text-align: center;
    font-weight: 700;
  }

  .h1-projets-projets.is-mobile-about {
    border: 2px solid #000;
    border-radius: 25px;
    width: auto;
    padding: 10px;
  }

  .contact-container {
    display: none;
  }

  .mobile-logo-img {
    z-index: 2;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 20vh;
    padding-top: 10px;
    padding-bottom: 30px;
    display: flex;
    position: fixed;
    inset: auto 0% 0%;
  }

  .logo-img {
    cursor: pointer;
    width: auto;
    height: 100%;
  }

  .mobile-menu-container {
    z-index: 2;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    position: fixed;
    inset: 0%;
  }

  .mobile-menu-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }

  .mobile-menu {
    background-color: var(--white);
    border: 2px solid #000;
    border-radius: 10px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    padding-top: 25vh;
    padding-bottom: 30px;
    display: flex;
    box-shadow: 4px 4px 7px #0000008f;
  }

  .mobile-projets-wrapper-projets {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mobile-contact {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .hero-wrapper-right-bis {
    display: none;
  }

  .hero-wrapper-left-bis {
    pointer-events: none;
    display: none;
  }

  .h4-button {
    width: 100%;
  }

  .button-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .mobile-navbar-wrapper {
    z-index: 3;
    background-color: var(--white);
    border-bottom: 2px solid #000;
    justify-content: space-between;
    align-items: center;
    height: 20vh;
    padding: 10px 10px 10px 20px;
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
    box-shadow: 0 2px 6px #0003;
  }

  .mobile-logo-txt {
    width: auto;
    height: 100%;
  }

  .mobile-menu-navbar-img {
    cursor: pointer;
    width: auto;
    height: 100%;
  }

  .mobile-navbar-svg {
    color: var(--pink);
    height: 100%;
  }

  .mobile-logo-txt-link {
    width: auto;
    height: 100%;
  }

  .projets-video-horizontal {
    height: 100%;
  }
}


