@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* ==========================================================================
   cover / tools
   ========================================================================== */
/* ==========================================================================
   cover / typo
   ========================================================================== */
/* ==========================================================================
   COLORS / SETTINGS
   ========================================================================== */
:root {
  --color-white: #f1f2f4;
  --color-black: #000000;
  --a-color-primary: #5686ff;
  --a-color-gris-fonce: #282828;
  --a-color-gris-pale: #4d4d4d;
  --a-color-secondary: #fb92d2;
  --color-bg-primary: var(--color-white);
  --color-bg-secondary: var(--a-color-gris-fonce);
}

/* ==========================================================================
   FONTS / SETTINGS
   ========================================================================== */
:root {
  --font-primary: "Be Vietnam Pro", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --font-size-h1: clamp(1.88rem, 11.46vw + -1.56rem, 8.75rem);
  --font-size-h2: clamp(1.5rem, 5.83vw + -0.25rem, 5rem);
  --font-size-h3: clamp(1.25rem, 2.08vw + 0.63rem, 2.5rem);
  --font-size-h4: clamp(1.13rem, 0.83vw + 0.88rem, 1.63rem);
  --font-size-p: clamp(1rem, 0.94vw + 0.72rem, 1.56rem);
  --font-size-gros-titre: clamp(4.25rem, 24.17vw + -3rem, 18.75rem);
}

/* ==========================================================================
   DIMENSIONS / SETTINGS
   ========================================================================== */
:root {
  --spacing-xs: 1rem;
  --spacing-sm: 2rem;
  --spacing-md: 4rem;
  --spacing-lg: 6rem;
  --grid-gap: 30px;
}

/* ==========================================================================
   easing / settings
   ========================================================================== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   RESET / GENERIC
   ========================================================================== */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
}

/* ==========================================================================
   BODY / ELEMENT
   Le body permet d'initialiser les propriétés générales de la page.
   Les éléments de la page vont hérités des propriétés inscrite dans body
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-black);
  font-family: var(--font-secondary);
  font-size: var(--font-size-content);
  line-height: 1.6;
}
body::-moz-selection {
  background-color: var(--a-color-secondary);
}
body::selection {
  background-color: var(--a-color-secondary);
}

/* ==========================================================================
   HEADINGS / ELEMENT
   ========================================================================== */
h1 {
  font-size: var(--font-size-h1);
  margin: 0 0 60px 0;
  color: var(--color-black);
  font-family: var(--font-secondary);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

h2 {
  font-size: var(--font-size-h2);
  font-family: var(--font-secondary);
  color: var(--color-primary);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

h3 {
  font-size: var(--font-size-h3);
  font-family: var(--font-primary);
  font-weight: 700;
}

h4 {
  font-size: var(--font-size-h4);
  font-family: var(--font-primary);
  font-weight: 700;
}

/* ==========================================================================
   LINKS / ELEMENTS
   Style de base de tous les liens et bouton du site
   ========================================================================== */
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
a.disabled {
  color: #e2e2e2;
}

/* ==========================================================================
   WRAPPER / ELEMENT
   ========================================================================== */
.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 var(--spacing-sm);
  }
}

/* ==========================================================================
   icons / component
   ========================================================================== */
.icon {
  fill: currentColor;
  display: inline-block;
  flex: 0 0 auto;
  height: 1em;
  vertical-align: middle;
  width: 1em;
  stroke: transparent;
}

.icon--stroke {
  fill: transparent;
  stroke: currentColor;
}

.icon--xs {
  height: 0.75em;
  width: 0.75em;
}

.icon--sm {
  height: 0.8em;
  width: 0.8em;
}

.icon--md {
  height: 1.25em;
  width: 1.25em;
}

.icon--lg {
  height: 1.75em;
  width: 1.75em;
}

.icon--xl {
  height: 5em;
  width: 5em;
}

/* ==========================================================================
   header / component
   ========================================================================== */
.header {
  --header-height: 100px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--spacing-sm);
  position: sticky;
  top: 0;
  height: var(--header-height);
  z-index: 10;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.header:before {
  content: "";
  background-color: var(--color-black);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 1600px) {
  .header {
    padding: 0 2.5rem;
  }
}
.header-is-hidden.is-scrolling-down:not(.nav-is-active) .header {
  transform: translateY(-100%) translateY(0);
}
.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  width: 100%;
  padding: 0 64px;
}
@media screen and (max-width: 768px) {
  .header .wrapper {
    padding: 0;
  }
}

.header__brand {
  font-size: clamp(1.13rem, 1.25vw + 0.75rem, 1.88rem);
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  z-index: 10;
  transition: 0.3s all ease-in-out;
}
.header__brand:hover {
  text-decoration: none;
  color: var(--a-color-secondary);
}
@media screen and (max-width: 1200px) {
  .header__brand:hover {
    text-decoration: none;
    color: var(--color-white);
  }
}

.header__toggle {
  --bar-height: 8px;
  --bar-width: 50px;
  --bar-space: 8px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 10;
}
.header__toggle span {
  background: var(--color-white);
  height: var(--bar-height);
  width: 100%;
  position: absolute;
  top: calc(50% - var(--bar-height) / 2);
  left: calc(50% - var(--bar-width) / 2);
  transition: 0.3s all ease-out;
}
.header__toggle span:nth-child(1) {
  top: calc(50% - var(--bar-height) / 2 - var(--bar-height) - var(--bar-space));
}
.header__toggle span:nth-child(3) {
  top: calc(50% - var(--bar-height) / 2 + var(--bar-height) + var(--bar-space));
}
.nav-is-active .header__toggle span {
  top: calc(50% - var(--bar-height) / 2);
}
.nav-is-active .header__toggle span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-is-active .header__toggle span:nth-child(2) {
  transform: scaleX(0);
}
.nav-is-active .header__toggle span:nth-child(3) {
  transform: rotate(-45deg);
}
@media screen and (min-width: 1200px) {
  .header__toggle {
    display: none;
  }
}

.nav-primary {
  position: absolute;
  background-color: var(--color-black);
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  padding-top: var(--header-height);
  align-items: center;
  transform: translateY(-100%);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
}
.nav-is-active .nav-primary {
  transform: translateY(0);
}
.nav-primary ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  transform: translateY(-70%);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-is-active .nav-primary ul {
  transform: translateY(0);
}
@media screen and (min-width: 1200px) {
  .nav-primary {
    display: block;
    background: unset;
    position: relative;
    height: auto;
    width: auto;
    overflow-y: visible;
    padding-top: 0;
    transform: translateY(0);
    z-index: 2;
  }
  .nav-primary ul {
    flex-direction: row;
    transform: translateY(0);
  }
}

.nav-primary__item {
  font-size: var(--font-size-h2);
  color: var(--color-white);
  text-transform: uppercase;
  position: relative;
  transition: 0.3s all ease-in-out;
  text-decoration: none;
}
.nav-primary__item:hover {
  color: white;
  text-decoration: none;
}
@media screen and (min-width: 1200px) {
  .nav-primary__item {
    font-size: var(--font-size-h4);
    color: var(--color-white);
    position: relative;
    text-transform: none;
    transition: 0.3s all ease-in-out;
  }
  .nav-primary__item::before {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-white);
    transition: width 0.4s ease;
  }
  .nav-primary__item:hover {
    color: var(--a-color-secondary);
  }
  .nav-primary__item:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
}

.nav-is-active body {
  overflow: hidden;
}
@media screen and (min-width: 1600px) {
  .nav-is-active body {
    overflow: auto;
  }
}

/* ==========================================================================
   Hero / component
   ========================================================================== */
.hero {
  position: relative;
  background-color: var(--color-black);
  border: 40px solid var(--color-white);
  background: var(--a-color-gris-fonce);
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .hero {
    border: none;
  }
}

.hero__grille {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--color-white) 1px, transparent 1px), linear-gradient(to bottom, var(--color-white) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
}

.hero__content {
  position: relative;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
}
@media screen and (max-width: 1480px) {
  .hero__content {
    margin-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .hero__content {
    margin-top: 0;
    height: 30vh;
  }
}
@media screen and (max-width: 500px) {
  .hero__content {
    margin-top: 0;
    height: 20vh;
  }
}

.hero__content h1 {
  color: var(--color-white);
  margin: 0;
}

.hero__content__info {
  z-index: 2;
  position: relative;
  background: var(--color-black);
  width: 100%;
  padding: 40px 0;
}
.hero__content__info h2 {
  margin: 0;
  color: var(--a-color-primary);
}
.hero__content__info h3 {
  margin: 10px 0 40px 0;
  color: var(--color-white);
}

/* ==========================================================================
   Modèle 3d
   ========================================================================== */
.modele__3d {
  position: absolute;
  top: 40%;
  right: 5%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 500px;
  height: 500px;
  padding-right: 64px;
  z-index: 5;
}
.modele__3d .tagline__cercle {
  position: relative;
}
.modele__3d canvas.personnage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 400px; /* Taille définie en pixels */
  height: 400px;
  border-radius: 50%;
}
@media screen and (max-width: 1920px) {
  .modele__3d {
    top: 40%;
    right: -1%;
  }
}
@media screen and (max-width: 1700px) {
  .modele__3d {
    top: 40%;
    right: -1.5%;
  }
}
@media screen and (max-width: 1660px) {
  .modele__3d {
    top: 40%;
    right: -1%;
  }
}
@media screen and (max-width: 1600px) {
  .modele__3d {
    top: 40%;
    right: -2%;
  }
}
@media screen and (max-width: 1480px) {
  .modele__3d {
    right: -3%;
    top: 26%;
  }
}
@media screen and (max-width: 1200px) {
  .modele__3d {
    right: -3%;
    top: 25%;
  }
}
@media screen and (max-width: 1024px) {
  .modele__3d {
    right: 0;
    top: 25%;
  }
}
@media screen and (max-width: 768px) {
  .modele__3d {
    display: none;
  }
}

.modele__3d .icon {
  font-size: 600px;
  color: var(--color-white);
}
@media screen and (max-width: 1920px) {
  .modele__3d .icon {
    font-size: 520px;
  }
}
@media screen and (max-width: 1700px) {
  .modele__3d .icon {
    font-size: 490px;
  }
}
@media screen and (max-width: 1660px) {
  .modele__3d .icon {
    font-size: 450px;
  }
}
@media screen and (max-width: 1600px) {
  .modele__3d .icon {
    font-size: 400px;
  }
}
@media screen and (max-width: 1480px) {
  .modele__3d .icon {
    font-size: 380px;
  }
}
@media screen and (max-width: 1200px) {
  .modele__3d .icon {
    font-size: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .modele__3d .icon {
    font-size: 300px;
  }
}

/* ==========================================================================
   Boutons et Réseaux
   ========================================================================== */
.boutons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .boutons {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}
.boutons .bouton {
  display: inline-block;
  padding: 10px;
  color: var(--color-white);
  font-size: var(--font-size-p);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white);
  transition: 0.3s all ease-in-out;
}
.boutons .bouton:hover {
  color: var(--a-color-secondary);
  border-color: var(--a-color-secondary);
}
@media screen and (max-width: 1200px) {
  .boutons .bouton:hover:hover {
    text-decoration: none;
    color: var(--color-white);
    border-color: var(--color-white);
  }
}
.boutons .reseaux {
  display: flex;
  gap: 20px;
}
.boutons .reseaux .icon {
  color: var(--color-white);
  font-size: clamp(2.5rem, 2.08vw + 1.88rem, 3.75rem);
  transition: 0.3s all ease-in-out;
}
.boutons .reseaux .icon:hover {
  color: var(--a-color-secondary);
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .boutons .reseaux .icon:hover:hover {
    text-decoration: none;
    color: var(--color-white);
  }
}

/* ==========================================================================
   Flèche
   ========================================================================== */
.fleche {
  text-align: center;
}
.fleche .icon {
  width: 50px;
  height: 40px;
  fill: var(--color-black);
  transition: transform 0.3s ease, fill 0.3s ease;
}
.fleche .icon:hover {
  fill: var(--a-color-secondary);
  transform: translateY(10px);
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .fleche .icon:hover:hover {
    fill: var(--color-black);
  }
}
@media screen and (max-width: 768px) {
  .fleche .icon {
    margin-top: 20px;
  }
}

/* ==========================================================================
   À propos / component
   ========================================================================== */
.apropos {
  background-color: var(--color-black);
  position: relative;
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .apropos {
    margin-top: 120px;
  }
}

.titre_fond {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  background-color: var(--color-white);
}
.titre_fond p {
  font-size: var(--font-size-gros-titre);
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--a-color-gris-pale);
  margin: 0;
  opacity: 0.2;
  text-transform: uppercase;
  line-height: 0.7;
  white-space: nowrap;
}

.description {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  .description {
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .description {
    padding-top: 15px;
  }
}
.description h3 {
  color: var(--a-color-primary);
  margin: 0;
}
.description .qualite {
  display: grid;
  grid-template-columns: 2fr 4fr;
  gap: 80px;
}
@media screen and (max-width: 1600px) {
  .description .qualite {
    grid-template-columns: 2fr 3fr;
    gap: 40px;
  }
}
@media screen and (max-width: 1480px) {
  .description .qualite {
    grid-template-columns: 2fr 2fr;
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .description .qualite {
    grid-template-columns: 1fr;
  }
}
.description .qualite .qualite__media {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .description .qualite .qualite__media {
    aspect-ratio: 1/1;
    order: 2;
  }
}
.description .qualite .qualite__media img {
  border: 2px solid var(--color-white);
  padding: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.description .qualite .qualite__content {
  color: var(--color-white);
  width: 70%;
}
@media screen and (max-width: 1660px) {
  .description .qualite .qualite__content {
    width: 100%;
  }
}
.description .qualite .qualite__content span {
  font-weight: 700;
}
.description .qualite .qualite__content h1 {
  color: var(--color-black);
  margin: 0 0 100px 0;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .description .qualite .qualite__content h1 {
    margin: 0 0 40px 0;
  }
}
.description .qualite .qualite__content h3 {
  margin: 0;
  color: var(--a-color-primary);
}
.description .qualite .qualite__content p {
  margin: 20px 0 0 0;
  font-size: var(--font-size-p);
}
.description .qualite .qualite__content .texte__qualités {
  margin-top: 40px;
}
.description .qualite .qualite__content .texte__qualités ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 20px;
  padding: 0;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 500px) {
  .description .qualite .qualite__content .texte__qualités ul {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 410px) {
  .description .qualite .qualite__content .texte__qualités ul {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.description .qualite .qualite__content .texte__qualités ul li {
  font-size: var(--font-size-p);
}
.description .competences {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.description .competences .competences__liste,
.description .competences .logiciels__liste ul {
  padding: 0;
}
@media screen and (max-width: 825px) {
  .description .competences {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .description .competences > :last-child {
    grid-column: span 2;
  }
  .description .competences > :nth-child(1),
  .description .competences > :nth-child(2) {
    text-align: center;
    justify-self: center;
  }
  .description .competences li {
    list-style: none;
  }
}
@media screen and (max-width: 500px) {
  .description .competences {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .description .competences li {
    list-style: none;
  }
  .description .competences > :last-child {
    grid-column: span 1;
  }
  .description .competences > :nth-child(1),
  .description .competences > :nth-child(2) {
    text-align: center;
    justify-self: center;
  }
}
.description .competences h3 {
  margin: 0 0 20px 0;
}
.description .competences ul {
  padding-left: 20px;
}
.description .competences ul li {
  color: var(--color-white);
  font-size: var(--font-size-p);
  margin-top: 10px;
}
.description .competences .langages__liste .skill-nom {
  margin: 20px 0 2px 0;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 18px;
}
.description .competences .langages__liste .skill-bar {
  background-color: var(--color-white);
  height: 20px;
  overflow: hidden;
}
.description .competences .langages__liste .skill-niv {
  height: 100%;
  background-color: var(--a-color-primary);
}
.description .competences .langages__liste .html .skill-niv {
  width: 85%;
}
.description .competences .langages__liste .css .skill-niv {
  width: 75%;
}
.description .competences .langages__liste .php .skill-niv {
  width: 60%;
}
.description .competences .langages__liste .js .skill-niv {
  width: 50%;
}

.section__bas {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 200px 0 100px;
}
@media screen and (max-width: 1480px) {
  .section__bas {
    grid-template-columns: 1fr;
    padding: 120px 0 100px;
  }
}
@media screen and (max-width: 825px) {
  .section__bas {
    padding: 40px 0 100px;
  }
}
.section__bas .passions .images__bloc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .section__bas .passions .images__bloc {
    margin-top: 80px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 500px) {
  .section__bas .passions .images__bloc {
    margin-top: 80px;
    grid-template-columns: 1fr;
  }
}
.section__bas .passions .images__bloc .image_media img {
  border: 2px solid var(--color-white);
  padding: 20px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 500px) {
  .section__bas .passions .images__bloc .image_media img {
    padding: 10px;
    aspect-ratio: 1/1;
  }
}
.section__bas .passions .images__bloc .image_content p {
  margin: 10px 0 0 0;
  color: var(--color-white);
  font-size: 18px;
  text-align: center;
}
.section__bas .section__media {
  height: 100%;
}
.section__bas .section__media .qualite__media {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1480px) {
  .section__bas .section__media .qualite__media {
    aspect-ratio: 21/9;
  }
}
@media screen and (max-width: 500px) {
  .section__bas .section__media .qualite__media {
    aspect-ratio: 1/1;
  }
}
.section__bas .section__media .qualite__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--color-white);
  padding: 20px;
}
@media screen and (max-width: 500px) {
  .section__bas .section__media .qualite__media img {
    padding: 10px;
  }
}

/* ========================================================================== 
   Petites bandes visibles lors du scroll
   ========================================================================== */
/* Tous les contenus smooth-scrollés */
#smooth-content,
.js-pinned,
.qualite__media img,
.qualite__content {
  will-change: transform;
}

/* ==========================================================================
   Mes projets / component
   ========================================================================== */
.projets {
  background-color: var(--a-color-gris-fonce);
  position: relative;
}
.projets .titre_fond {
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .projets .titre_fond {
    margin-top: 120px;
  }
}
.projets .titre_fond h1 {
  position: absolute;
  top: 50px;
  color: var(--color-black);
  white-space: nowrap;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .projets .titre_fond h1 {
    top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .projets .titre_fond h1 {
    top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .projets .titre_fond h1 {
    top: 10px;
  }
}

.projets__3d h2 {
  color: var(--color-white);
  margin: 100px 0 20px 0;
}
@media screen and (max-width: 768px) {
  .projets__3d h2 {
    margin: 60px 0 20px 0;
  }
}
@media screen and (max-width: 500px) {
  .projets__3d h2 {
    margin: 40px 0 20px 0;
  }
}
.projets__3d hr {
  margin: 0;
}
.projets__3d .cards__projets {
  position: relative;
}
.projets__3d .cards__projets .hero__grille {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--color-white) 1px, transparent 1px), linear-gradient(to bottom, var(--color-white) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
  z-index: 0;
}
.projets__3d .cards__projets .card_projet {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 180px;
  padding: 80px 40px 0 40px;
}
@media screen and (max-width: 1600px) {
  .projets__3d .cards__projets .card_projet {
    gap: 140px;
  }
}
@media screen and (max-width: 1600px) {
  .projets__3d .cards__projets .card_projet {
    gap: 100px;
  }
}
@media screen and (max-width: 1480px) {
  .projets__3d .cards__projets .card_projet {
    gap: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .projets__3d .cards__projets .card_projet {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 500px) {
  .projets__3d .cards__projets .card_projet {
    padding: 60px 0 0 0;
  }
}
.projets__3d .cards__projets .card_projet .card_media img {
  border: 2px solid var(--color-white);
  padding: 20px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 500px) {
  .projets__3d .cards__projets .card_projet .card_media img {
    padding: 10px;
  }
}
.projets__3d .cards__projets .card_projet h4 {
  color: var(--a-color-primary);
  margin: 0 0 20px 0;
}
.projets__3d .cards__projets .card_projet h3 {
  margin: 0 0 20px 0;
  color: var(--color-white);
  line-height: 1.2;
}
.projets__3d .cards__projets .card_projet p {
  color: var(--color-white);
  margin: 0 0 40px 0;
  font-size: var(--font-size-p);
}
.projets__3d .cards__projets .card_projet .bouton {
  display: inline-block;
  padding: 5px 20px;
  color: var(--color-white);
  font-size: var(--font-size-p);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white);
  transition: 0.3s all ease-in-out;
}
.projets__3d .cards__projets .card_projet .bouton:hover {
  color: var(--a-color-secondary);
  border-color: var(--a-color-secondary);
}
@media screen and (max-width: 1200px) {
  .projets__3d .cards__projets .card_projet .bouton:hover {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    text-decoration: none;
  }
}

.cards__projets > .card_projet:last-child {
  padding-bottom: 100px;
}

.footer {
  background-color: var(--color-black);
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 120px;
  }
}
.footer .titre_fond {
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .titre_fond {
    margin-top: 120px;
  }
}
.footer .titre_fond h1 {
  position: absolute;
  top: 50px;
  color: var(--color-black);
  white-space: nowrap;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .footer .titre_fond h1 {
    position: absolute;
    top: 40px;
  }
}
@media screen and (max-width: 825px) {
  .footer .titre_fond h1 {
    position: absolute;
    top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer .titre_fond h1 {
    position: absolute;
    top: 10px;
  }
}

.contact__info .info__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-top: 100px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .contact__info .info__items {
    padding-top: 20px;
    gap: 20px;
  }
}
.contact__info .info__items .info_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact__info .info__items .info_item h3 {
  color: var(--a-color-primary);
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .contact__info .info__items .info_item h3 {
    margin: 0 0 20px 0;
  }
}
.contact__info .info__items .info_item.curriculum a, .contact__info .info__items .info_item.courriel_tel a {
  color: var(--color-white);
  font-size: var(--font-size-p);
  border: 2px solid var(--color-white);
  padding: 20px;
  margin-bottom: 20px;
  transition: 0.3s all ease-in-out;
  font-weight: 700;
  display: inline-block;
}
.contact__info .info__items .info_item.curriculum a:hover, .contact__info .info__items .info_item.courriel_tel a:hover {
  border: 2px solid var(--a-color-secondary);
  color: var(--a-color-secondary);
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .contact__info .info__items .info_item.curriculum a:hover, .contact__info .info__items .info_item.courriel_tel a:hover {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    text-decoration: none;
  }
}
.contact__info .info__items .info_item .boutons .reseaux {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.contact__info .credits {
  margin-top: 60px;
  text-align: center;
}
.contact__info .credits p {
  color: var(--color-white);
  font-size: var(--font-size-p);
  margin: 0;
}

/* ==========================================================================
   video / component
   ========================================================================== */
.video_presentation {
  background-color: var(--color-black);
}
.video_presentation .titre_fond {
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .video_presentation .titre_fond {
    margin-top: 120px;
  }
}
.video_presentation .titre_fond h1 {
  position: absolute;
  top: 50px;
  color: var(--color-black);
  white-space: nowrap;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .video_presentation .titre_fond h1 {
    top: 40px;
  }
}
@media screen and (max-width: 825px) {
  .video_presentation .titre_fond h1 {
    top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .video_presentation .titre_fond h1 {
    top: 10px;
  }
}

.video {
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  height: 0;
  padding-bottom: 42%;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s ease;
}
.video img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.video svg.icon {
  width: 80px;
  height: 80px;
}
.video .bouton_play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s ease;
  background-color: var(--color-white);
  border: 3px solid var(--a-color-primary);
  border-radius: 50%;
  will-change: transform;
}
.video .bouton_play .icon {
  opacity: 0;
  color: var(--a-color-primary);
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  width: 32px;
  height: 35px;
  text-shadow: 0 0 4px rgb(0, 0, 0);
  z-index: 2;
  transition: transform 0.3s ease, color 0.3s ease;
}
.is-video-ready .video .bouton_play .icon {
  opacity: 1;
}
.video:hover .bouton_play {
  transform: translate(-50%, -50%) scale(0.9);
  border-color: var(--a-color-secondary);
}
.video:hover .icon {
  color: var(--a-color-secondary);
  transform: scale(0.9);
}
@media screen and (max-width: 1024px) {
  .video .bouton_play {
    width: 70px;
    height: 70px;
  }
  .video .bouton_play .icon {
    width: 28px;
    height: 30px;
  }
}
@media screen and (max-width: 825px) {
  .video {
    padding-bottom: 48%;
  }
}
@media screen and (max-width: 768px) {
  .video .bouton_play {
    width: 60px;
    height: 60px;
  }
  .video .bouton_play .icon {
    width: 25px;
    height: 28px;
  }
}
@media screen and (max-width: 500px) {
  .video {
    padding-bottom: 58%;
  }
  .video .bouton_play {
    width: 50px;
    height: 50px;
  }
  .video .bouton_play .icon {
    width: 22px;
    height: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .video:hover .bouton_play {
    transform: translate(-50%, -50%);
    border-color: var(--a-color-primary);
  }
  .video:hover .icon {
    color: var(--a-color-primary);
    transform: none;
  }
}

.video__media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* ==========================================================================
   Page 404 / component
   ========================================================================== 

.page__404 {
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 0;

    h2 {
        color: #5686ff;
        margin: 0;
    }

    h4 {
        color: #fff;
        padding: 40px 0 100px 0;
        margin: 0;
    }

    .bouton {
        display: inline-block;
        padding: 5px 20px;
        color: #fff;
        font-size: typo(16px, 25px);
        font-weight: 800;
        text-transform: uppercase;
        text-decoration: none;
        border: 2px solid #fff;
        transition: 0.3s all ease-in-out;

        &:hover {
            color: #fb92d2;
            border-color: #fb92d2;
        }

        @media screen and (max-width: $breakpoint-ml) {
            &:hover {
                border: 2px solid #fff;
                color: #fff;
                text-decoration: none;
            }
        }
    }
}
*/
/* ==========================================================================
    ACCESSIBILITY / UTILITIES
   ========================================================================== */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.u-hidden {
  display: none !important;
}

/* ==========================================================================
   spacing / utilities
   ========================================================================== */
.u-mb-4 {
  margin-bottom: 4rem !important;
}

.u-mbn-4 {
  margin-bottom: -4rem !important;
}
/*# sourceMappingURL=main.css.map */
