/* Hamburger */

#nav-container {
  position: absolute;
  right: calc(calc(100% / 12) + var(--gutter-width));
  top: 5.1vw;
  z-index: 999;
  user-select: none;
  mix-blend-mode: difference;
}

#hamburger {
  position: absolute;
  right: 0;
  top: 2px;
  width: 10px;
  height: 10px;
  cursor: pointer;
  background-color: var(--difference-color);
  mix-blend-mode: difference;
  opacity: 1;
}

.hamburger-hidden {
  opacity: 0 !important;
}

.menu-open {
  height: 7rem !important;
}

#nav-container a {
  color: var(--difference-color) !important;
}

/* Menu */
#menu {
  display: flex;
  margin: 0;
  list-style: none;
  clear: both;
  height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-direction: column;
  align-items: flex-end;
  width: auto;
  text-transform: uppercase;
}

header {
  position: absolute;
  z-index: 999;
  top: 100dvh;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: var(--gutter-width);
  box-sizing: border-box;
  padding: 5vw var(--gutter-width) 0 var(--gutter-width);
}

header a {
  transition: all 0.25s ease-in-out;
}

.white-header a {
  color: var(--light-color);
}

.fixed {
  position: fixed;
  left: 0;
  top: 0;
}

#landing {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--gutter-width);
}

#landing h1 {
  font-size: 5vw;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 3rem;
}

#landing p {
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
}

#schemas-vision {
  background-color: #2c3563;
  display: flex;
  flex-direction: column;
  column-gap: 0;
  height: auto;
}

#schemas-all {
  background-color: #2c3563;
}

.schema-section {
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--gutter-width);
  align-items: center;
  padding: 0 var(--gutter-width) !important;
  left: 0;
  position: absolute;
}

#vision {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: var(--gutter-width);
  min-height: 50dvh;
  height: auto;
  padding: 0 var(--gutter-width) !important;
}

.grid-text-schema .text-section {
  grid-column: 4 / span 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}

.schema-section h1 {
  grid-column: 4 / span 3;
  color: var(--light-color);
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.schema-container {
  height: 50dvh;
  grid-column: span 3;
}

#expertise-container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  grid-row-gap: 2rem;
}

.expertise {
  width: auto;
}

.expertise > .container-logo-stamp {
  aspect-ratio: 1 / 1;
}

/* SVG */

.arrow-head,
.arrow-dot {
  fill: var(--light-color);
}

.legend-pointer {
  fill: none;
  stroke: var(--light-color);
  stroke-width: 0.5px;
}

.legend-paragraphe {
  fill: var(--light-color);
  font-family: "nobel", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 26px;
}

.legend-paragraphe.align-right {
  text-align: right;
}

.thin-stroke {
  stroke-width: 0.25px;
  stroke-linecap: round;
  fill: none;
  stroke: var(--light-color);
}

.medium-stroke {
  stroke-width: 1px;
  stroke-linecap: round;
  fill: none;
  stroke: var(--light-color);
}

.large-stroke {
  stroke-width: 2px;
  stroke-linecap: round;
  fill: none;
  stroke: var(--light-color);
}

.dotted {
  stroke-dasharray: 0 0 0 5.26 !important;
  stroke-miterlimit: 10 !important;
  stroke-linecap: round;
}

.plain-form {
  fill: var(--light-color);
}

.negative-plain-form {
  fill: #2c3563;
}

.big-letter {
  fill: var(--light-color);
  font-family: "nobel", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
}

.big-letter.bold {
  font-weight: 700;
}

#schema-btobtoc {
  transform: scale(200%);
}

#container-hlines {
  clip-path: url(#clippath);
}

#vortex-interior {
  clip-path: url(#clippath-circle);
}

#substance-masked {
  clip-path: url(#substanceMask);
}
@media screen and (max-width: 1000px) {
  #expertise-container {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (max-width: 750px) {
  #vision,
  #schemas-all {
    min-height: 100dvh;
  }

  .schema-section h1 {
    grid-column: 2 / span 10;
    height: 33vh;
    display: flex;
    justify-content: center;
    grid-row: 2;
    height: 25dvh;
    align-items: start;
  }
  .schema-container {
    grid-column: 1 / span 12;
    align-items: center;
    height: 75dvh;
  }

  .text-section {
    grid-column: 2 / span 10;
  }

  #landing h1 {
    font-size: 8vw;
  }

  #nav-container {
    right: var(--gutter-width);
    top: 5.1vw;
  }
}

@media screen and (max-width: 380px) {
  #expertise-container {
    grid-template-columns: repeat(1, auto);
  }
}
